#ifndef UART_H #define UART_H #include "config.h" void uart_init(void); void irq_init(void); void uart_SendStr(u8* str); void uart_SendByte(u8 c); #endif