diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2016-10-20 23:43:29 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2016-10-20 23:43:29 +0100 |
commit | c3c5f1e5fe27574220c3e94a79048e066cacc121 (patch) | |
tree | 445096a0365cc45c959091355852c9b63d8a338a /uart | |
download | fmk-c3c5f1e5fe27574220c3e94a79048e066cacc121.tar.gz fmk-c3c5f1e5fe27574220c3e94a79048e066cacc121.tar.xz fmk-c3c5f1e5fe27574220c3e94a79048e066cacc121.zip |
Init commit
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 */ |