Reduce RAM used for trigger shape definition #731

This commit is contained in:
rusefi 2019-04-03 12:39:01 -04:00
parent a9c326b41d
commit f41ff3cc61
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ void SingleWave::init(pin_state_t *pinStates) {
pin_state_t SingleWave::getState(int switchIndex) {
pin_state_t state = pinStates[switchIndex];
efiAssertVoid(OBD_PCM_Processor_Fault, state == 0 || state == 1, "wave state get");
efiAssert(OBD_PCM_Processor_Fault, state == 0 || state == 1, "wave state get", TV_FALL);
return state;
}