From 21f95341afde46de89c984d86887819b2a8230fe Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Fri, 10 Apr 2026 13:09:26 +0200 Subject: [PATCH] removes dependency of board.c to libc --- port/moonlight/src/board.c | 7 ------- 1 file changed, 7 deletions(-) diff --git a/port/moonlight/src/board.c b/port/moonlight/src/board.c index cca080d..537b609 100644 --- a/port/moonlight/src/board.c +++ b/port/moonlight/src/board.c @@ -2,8 +2,6 @@ #include "csr.h" #include "platform.h" #include "uart.h" -#include -#include // needed by picolibc/port.c int uart_putc(int ch) { @@ -22,11 +20,6 @@ int uart_getc(void) { return ch; } -int uart_init(void) { - puts("[UART0] : Uart Init Done, this is Test output!"); - return 0; -}; - int board_init(void) { int ret; ret = uart_init();