Add update code to updater and use uart for status updates

This commit is contained in:
2021-04-08 21:23:25 +02:00
parent d962110823
commit 08ec458e8f
8 changed files with 173 additions and 9 deletions

View File

@@ -0,0 +1,10 @@
#ifndef _UART_H_
#define _UART_H_
void uart_init(void);
void uart_send_char(char c);
void uart_send_string(const char *str);
#endif /* _UART_H_ */