lovely, yet another minor confusion

This commit is contained in:
rusefi 2020-05-13 01:16:05 -04:00
parent 52ad619b15
commit f233628c2c
2 changed files with 2 additions and 2 deletions

View File

@ -70,7 +70,7 @@ static void setLedPins() {
engineConfiguration->communicationLedPin = GPIOE_2; // d23 = blue
#endif /* EFI_COMMUNICATION_PIN */
engineConfiguration->runningLedPin = GPIOE_4; // d22 = green
engineConfiguration->triggerErrorPin = GPIOE_1; // d27 = orange
engineConfiguration->warningLedPin = GPIOE_1; // d27 = orange or yellow
}
static void setupVbatt() {

View File

@ -718,7 +718,7 @@ void initTriggerDecoderLogger(Logging *sharedLogger) {
void initTriggerDecoder(DECLARE_ENGINE_PARAMETER_SIGNATURE) {
#if EFI_GPIO_HARDWARE
enginePins.triggerDecoderErrorPin.initPin("led: warning", CONFIG(triggerErrorPin),
enginePins.triggerDecoderErrorPin.initPin("led: trigger debug", CONFIG(triggerErrorPin),
&CONFIG(triggerErrorPinMode));
#endif /* EFI_GPIO_HARDWARE */
}