Add missing LedGreenSuppress() declaration to LEDs.h

The implementation and callers landed with the 0.6.0 green-LED mute fix,
but the header declaration was left uncommitted.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
Marcus Kida 2026-07-13 16:52:19 +02:00
parent 8dcda476aa
commit 58e8269500

View file

@ -47,6 +47,7 @@ void torchToggle(void);
#endif #endif
void LedWrite(LEDs_t theLED, uint8_t output); void LedWrite(LEDs_t theLED, uint8_t output);
void LedGreenSuppress(bool suppress); // hold the green LED off regardless of other writers
uint8_t LedRead(LEDs_t theLED); uint8_t LedRead(LEDs_t theLED);
void LedWriteDirect(LEDs_t theLED, uint8_t output); void LedWriteDirect(LEDs_t theLED, uint8_t output);