rusefi/firmware/controllers/system/timer
Scott Smith 280dfa94e7
Don't keep a separate MultiChannelStateSequence for the trigger emulator. (#3513)
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)
2021-11-09 14:35:07 -05:00
..
event_queue.cpp detect "not scheduled" faster (#3200) 2021-08-27 11:46:01 +03:00
event_queue.h add & test remove from linked list (#3199) 2021-08-26 23:03:09 +03:00
pwm_generator_logic.cpp Don't keep a separate MultiChannelStateSequence for the trigger emulator. (#3513) 2021-11-09 14:35:07 -05:00
pwm_generator_logic.h Don't keep a separate MultiChannelStateSequence for the trigger emulator. (#3513) 2021-11-09 14:35:07 -05:00
readme.md
scheduler.cpp yet more pch (#3068) 2021-08-03 22:05:01 -04:00
scheduler.h add cancel to scheduler (#3201) 2021-08-27 11:30:06 +03:00
signal_executor_sleep.cpp Fix simulator (#3360) 2021-10-17 20:07:25 -04:00
signal_executor_sleep.h add cancel to scheduler (#3201) 2021-08-27 11:30:06 +03:00
single_timer_executor.cpp add cancel to scheduler (#3201) 2021-08-27 11:30:06 +03:00
single_timer_executor.h add cancel to scheduler (#3201) 2021-08-27 11:30:06 +03:00

readme.md

Timer

In this folder we have files related to hubrid hardware/software timer, including PWM generation.