summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/uart.h
diff options
context:
space:
mode:
authorblmorris <bryan.morrissey@gmail.com>2014-07-21 12:50:10 -0400
committerblmorris <bryan.morrissey@gmail.com>2014-07-21 12:50:10 -0400
commit721d6240c951d7f38289fdfb702536dfa155fdd8 (patch)
tree84ba9fba1218648f73f38346b30ad847437d3046 /stmhal/uart.h
parentef204733d6abc31b09e4e7823d4665fafebd87ed (diff)
parent4038f513ea0a6be75ecbc4d8ab2bbe2349524bca (diff)
downloadmicropython-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.h3
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);