#ifndef UART_H #define UART_H #include #include /// #define STRING_SIZE 32 /// typedef struct /// { /// char data[STRING_SIZE]; /// int8_t size; /// } string; /// volatile string uart_string; void uart_init(); void uart_putc(char c); #endif