removed legacy LED blinking

This commit is contained in:
Priec
2025-11-14 21:03:06 +01:00
parent 528e38b428
commit 761b86585a
3 changed files with 3 additions and 6 deletions

View File

@@ -15,7 +15,6 @@ enum class UartEvent {
class UartReader {
private:
BufferedSerial &serial_port;
DigitalOut &led;
char rx_buffer[UART_BUFFER_SIZE];
char message[UART_BUFFER_SIZE];
@@ -25,7 +24,7 @@ private:
bool timer_started = false;
public:
UartReader(BufferedSerial &serial, DigitalOut &led_pin);
UartReader(BufferedSerial &serial);
// Poll for UART events
UartEvent poll();