Data Log Trigger
Posted: Sat Jan 08, 2011 2:05 pm
Have MSII V3.0
Can I set a trigger to start logging?
Can I set a trigger to start logging?
Read only Forum for MegaSquirt EFI from Bowling and Grippo
http://www.msefi.com/
Code: Select all
#unset AUTOMARK_LOGGING_FEATURES
#if AUTOMARK_LOGGING_FEATURES
[OutputChannels]
; Make up some variable names...
highLoad = { rpm >= 3500 && throttle >= 50 }
enable = { rpm >= 2000 }
[Datalog]
enableWrite = enable ; Log entries are only written when the variable
; "enable" is true, see it's definition above.
markOnTrue = highLoad ; A datalog marker is written when "highLoad"
; transitions from false to true. The marker
; looks like "MARK 001 highLoad" to distinguish
; it from the manual markers.
#endif Code: Select all
#unset AUTOMARK_LOGGING_FEATURESCode: Select all
# set AUTOMARK_LOGGING_FEATURES