diff options
author | blmorris <bryan.morrissey@gmail.com> | 2014-07-21 12:50:10 -0400 |
---|---|---|
committer | blmorris <bryan.morrissey@gmail.com> | 2014-07-21 12:50:10 -0400 |
commit | 721d6240c951d7f38289fdfb702536dfa155fdd8 (patch) | |
tree | 84ba9fba1218648f73f38346b30ad847437d3046 /stmhal/uart.h | |
parent | ef204733d6abc31b09e4e7823d4665fafebd87ed (diff) | |
parent | 4038f513ea0a6be75ecbc4d8ab2bbe2349524bca (diff) | |
download | micropython-721d6240c951d7f38289fdfb702536dfa155fdd8.tar.gz micropython-721d6240c951d7f38289fdfb702536dfa155fdd8.zip |
Merge https://github.com/blmorris/micropython into Myriad2
Diffstat (limited to 'stmhal/uart.h')
-rw-r--r-- | stmhal/uart.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/stmhal/uart.h b/stmhal/uart.h index 13ac92cbfa..7499473c16 100644 --- a/stmhal/uart.h +++ b/stmhal/uart.h @@ -43,14 +43,11 @@ typedef enum { } pyb_uart_t; typedef struct _pyb_uart_obj_t pyb_uart_obj_t; - -extern pyb_uart_obj_t *pyb_uart_global_debug; extern const mp_obj_type_t pyb_uart_type; bool uart_init(pyb_uart_obj_t *uart_obj, uint32_t baudrate); bool uart_rx_any(pyb_uart_obj_t *uart_obj); int uart_rx_char(pyb_uart_obj_t *uart_obj); -void uart_tx_str(pyb_uart_obj_t *uart_obj, const char *str); void uart_tx_strn(pyb_uart_obj_t *uart_obj, const char *str, uint len); void uart_tx_strn_cooked(pyb_uart_obj_t *uart_obj, const char *str, uint len); |