All it wants is to use the main trigger state, so don't bother copying it. Instead, change PwmConfig to take a const pointer to a Multi.*Sequence, then make all the users adapt. Worse fallout is that SimplePwm now has its own Multi.*Sequence, but PwmConfig is downgraded to a pointer, so that's only a net +4 bytes. And we can make the overhead of Multi.*Sequence much lower using embedded arrays, which only the caller can do since it knows the maximum size... (for another day...) Also remove SimplePwm's 2nd copy of SingleChannelStateSequence. It served no purpose. Saves 1992 bytes of BSS and 24 bytes of RAM4 (latter probably due to SimplePwm change) |
||
---|---|---|
.. | ||
readme.md | ||
trigger_chrysler.cpp | ||
trigger_chrysler.h | ||
trigger_gm.cpp | ||
trigger_gm.h | ||
trigger_honda.cpp | ||
trigger_honda.h | ||
trigger_mazda.cpp | ||
trigger_mazda.h | ||
trigger_misc.cpp | ||
trigger_misc.h | ||
trigger_mitsubishi.cpp | ||
trigger_mitsubishi.h | ||
trigger_nissan.cpp | ||
trigger_nissan.h | ||
trigger_renix.cpp | ||
trigger_renix.h | ||
trigger_rover.cpp | ||
trigger_rover.h | ||
trigger_structure.cpp | ||
trigger_structure.h | ||
trigger_subaru.cpp | ||
trigger_subaru.h | ||
trigger_suzuki.cpp | ||
trigger_suzuki.h | ||
trigger_toyota.cpp | ||
trigger_toyota.h | ||
trigger_universal.cpp | ||
trigger_universal.h | ||
trigger_vw.cpp | ||
trigger_vw.h | ||
triggers-meta.yaml |
readme.md
Trigger Decoders
This folder is and should not be aware of engine.h or engine_configuration.h
Hints on adding new trigger
Step 1: add into rusefi_config.txt
Step 2: add into rusefi_enums.h, update TT_UNUSED, invoke gen_enum script
Step 3: get it working.
It's useful to un-comments AllTriggersFixture line in unit_tests/main.cpp
It's useful to add setVerboseTrigger(true) into unit tests while troubleshooting fresh trigger code