Antilag switch pin mode was ignored fix #5036

This commit is contained in:
rusefillc 2023-02-07 10:05:17 -05:00
parent 4b3bc883d5
commit a262df4dc2
2 changed files with 4 additions and 0 deletions

View File

@ -28,6 +28,9 @@ Release template (copy/paste this for new release):
## Unreleased
### Fixed
- Antilag switch pin mode was ignored #5036
## February 2023 Release - "Day 346"
### Breaking Changes

View File

@ -120,6 +120,7 @@ void startPedalPins() {
startInputPinIfValid("brake pedal switch", engineConfiguration->brakePedalPin, engineConfiguration->brakePedalPinMode);
startInputPinIfValid("Launch Button", engineConfiguration->launchActivatePin, engineConfiguration->launchActivatePinMode);
startInputPinIfValid("Antilag Button", engineConfiguration->ALSActivatePin, engineConfiguration->ALSActivatePinMode);
#endif /* EFI_PROD_CODE */
}