summaryrefslogtreecommitdiff
path: root/controller/fw/src/con_usart.h
diff options
context:
space:
mode:
Diffstat (limited to 'controller/fw/src/con_usart.h')
-rw-r--r--controller/fw/src/con_usart.h17
1 files changed, 0 insertions, 17 deletions
diff --git a/controller/fw/src/con_usart.h b/controller/fw/src/con_usart.h
deleted file mode 100644
index db73f0d..0000000
--- a/controller/fw/src/con_usart.h
+++ /dev/null
@@ -1,17 +0,0 @@
-#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__)
-#define con_printf_blocking(...) usart_printf_blocking(&con_usart, __VA_ARGS__)
-
-#ifndef CON_USART_BAUDRATE
-#define CON_USART_BAUDRATE 500000
-#endif
-
-void con_usart_init(void);
-
-#endif /* __CON_USART_H__ */