diff options
Diffstat (limited to 'uart')
-rw-r--r-- | uart/uart.c | 5 | ||||
-rw-r--r-- | uart/uart.h | 6 |
2 files changed, 11 insertions, 0 deletions
diff --git a/uart/uart.c b/uart/uart.c new file mode 100644 index 0000000..031cf74 --- /dev/null +++ b/uart/uart.c @@ -0,0 +1,5 @@ +#include "uart.h" + +void uart_setup(void) +{ +} diff --git a/uart/uart.h b/uart/uart.h new file mode 100644 index 0000000..984d704 --- /dev/null +++ b/uart/uart.h @@ -0,0 +1,6 @@ +#ifndef UART_UART_H +#define UART_UART_H + +void uart_setup(void); + +#endif /* UART_UART_H */ |