aboutsummaryrefslogtreecommitdiff
path: root/include/stm-uart.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/stm-uart.h')
-rw-r--r--include/stm-uart.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/stm-uart.h b/include/stm-uart.h
index 43df882..62b2efd 100644
--- a/include/stm-uart.h
+++ b/include/stm-uart.h
@@ -5,14 +5,12 @@
#define USART2_BAUD_RATE 115200
-#if 0 /* XXX moved [back] to stm-init.c */
extern void MX_USART2_UART_Init(void);
-#endif
-extern void uart_send_binary(uint32_t num, uint8_t bits);
+extern void uart_send_char(uint8_t ch);
extern void uart_send_string(char *s);
+extern void uart_send_binary(uint32_t num, uint8_t bits);
extern void uart_send_integer(uint32_t data, uint32_t mag);
-
-extern UART_HandleTypeDef huart2;
+extern void uart_send_hex(uint32_t num, uint8_t digits);
#endif /* __STM32_DEV_BRIDGE_UART_H */