From a1dc923315514ed6f23da5f2c0950830975299f8 Mon Sep 17 00:00:00 2001 From: jaseg Date: Mon, 16 Mar 2020 19:19:34 +0100 Subject: Fix serial --- controller/fw/src/con_usart.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 controller/fw/src/con_usart.h (limited to 'controller/fw/src/con_usart.h') diff --git a/controller/fw/src/con_usart.h b/controller/fw/src/con_usart.h new file mode 100644 index 0000000..a1ad963 --- /dev/null +++ b/controller/fw/src/con_usart.h @@ -0,0 +1,16 @@ +#ifndef __CON_USART_H__ +#define __CON_USART_H__ + +#include "serial.h" + +extern volatile struct usart_desc con_usart; + +#define con_printf(...) usart_printf(&con_usart, __VA_ARGS__) + +#ifndef CON_USART_BAUDRATE +#define CON_USART_BAUDRATE 115200 +#endif + +void con_usart_init(void); + +#endif /* __CON_USART_H__ */ -- cgit