fix missing #endif in hw_stark

This commit is contained in:
lenvm 2024-12-30 20:01:27 +01:00
parent 6c8333fce9
commit 06557bf64d

View file

@ -74,7 +74,7 @@ GPIOs on extra header
#define HW_CONFIGURED #define HW_CONFIGURED
#else #else
#error Multiple HW defined! Please select a single HW #error Multiple HW defined! Please select a single HW
#endif #endif // HW_CONFIGURED
#ifdef BMW_I3_BATTERY #ifdef BMW_I3_BATTERY
#if defined(CONTACTOR_CONTROL) && defined(WUP_PIN1) #if defined(CONTACTOR_CONTROL) && defined(WUP_PIN1)
@ -83,5 +83,6 @@ GPIOs on extra header
#if defined(CONTACTOR_CONTROL) && defined(WUP_PIN2) #if defined(CONTACTOR_CONTROL) && defined(WUP_PIN2)
#error GPIO PIN 32 cannot be used for both BMWi3 Wakeup and contactor control. Disable CONTACTOR_CONTROL #error GPIO PIN 32 cannot be used for both BMWi3 Wakeup and contactor control. Disable CONTACTOR_CONTROL
#endif #endif
#endif // BMW_I3_BATTERY
#endif #endif // __HW_STARK_H__