From 58e82695008cd101bf7fd1cbfd2ad31a72e77fe2 Mon Sep 17 00:00:00 2001 From: Marcus Kida Date: Mon, 13 Jul 2026 16:52:19 +0200 Subject: [PATCH] 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 --- MDUV380_firmware/application/include/io/LEDs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/MDUV380_firmware/application/include/io/LEDs.h b/MDUV380_firmware/application/include/io/LEDs.h index beb6414..5021b8c 100644 --- a/MDUV380_firmware/application/include/io/LEDs.h +++ b/MDUV380_firmware/application/include/io/LEDs.h @@ -47,6 +47,7 @@ void torchToggle(void); #endif 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); void LedWriteDirect(LEDs_t theLED, uint8_t output);