makes uart.h now also provide init

This commit is contained in:
2026-04-10 13:13:05 +02:00
parent e3a7a9ccaf
commit f989e21bad

View File

@@ -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 */