there are several limitations that can come into play:
* max parameters (60)
* total unique string storage space (11 chars * max_params)
* total unique number storage space (1.5 floats * max_params)
* total unique RPN storage space (shares string storage)
it doesn't look like you are exceeding any of these, but...
Ceddy wrote:Colby,
MUT2 logging breaks when you have over around 38 items.
The name in the trigger section gets messed up.
GOOD
- Code: Select all
trigger action: start condition: AC_sw,0.000000,==
trigger action: stop condition: AC_sw,1.000000,==
--- storage info ---
log channels: 2
log parameters: 38
log stringlist: 513 chars
log floatlist: 31 floats
logging interval will be 250000us
BAD
- Code: Select all
trigger action: start condition: x,0.000000,==
trigger action: stop condition: x,1.000000,==
--- storage info ---
log channels: 2
log parameters: 39
log stringlist: 526 chars
log floatlist: 31 floats
logging interval will be 250000us
AC_sw gets changed to: x, +, or other symbols.
