From f989e21badde4034586e05c1d299cc3146a61fcb Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Fri, 10 Apr 2026 13:13:05 +0200 Subject: [PATCH] makes uart.h now also provide init --- port/moonlight/inc/uart.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/port/moonlight/inc/uart.h b/port/moonlight/inc/uart.h index 2cbd72f..caf3703 100644 --- a/port/moonlight/inc/uart.h +++ b/port/moonlight/inc/uart.h @@ -33,4 +33,8 @@ static inline uint8_t uart_read(volatile uart_t* reg) return res; } +static inline int uart_init(void) +{ + return 0; +} #endif /* _DEVICES_UART_H */