diff options
author | Daniel Campora <daniel@wipy.io> | 2015-09-25 15:20:07 +0200 |
---|---|---|
committer | Daniel Campora <daniel@wipy.io> | 2015-09-27 11:27:24 +0200 |
commit | ef369249cb406758ec1caa9a212478ef69fd7ff0 (patch) | |
tree | 3b8e4b4358417693179b488dd79cb3b232538a6b /cc3200/mods/pybuart.h | |
parent | a7261ae059f171e9677a86c59c7f7ed9e24b7ace (diff) | |
download | micropython-ef369249cb406758ec1caa9a212478ef69fd7ff0.tar.gz micropython-ef369249cb406758ec1caa9a212478ef69fd7ff0.zip |
cc3200: Implement support for os.dupterm().
Diffstat (limited to 'cc3200/mods/pybuart.h')
-rw-r--r-- | cc3200/mods/pybuart.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/cc3200/mods/pybuart.h b/cc3200/mods/pybuart.h index 74871cbab0..19bc93607d 100644 --- a/cc3200/mods/pybuart.h +++ b/cc3200/mods/pybuart.h @@ -42,6 +42,5 @@ uint32_t uart_rx_any(pyb_uart_obj_t *uart_obj); int uart_rx_char(pyb_uart_obj_t *uart_obj); bool uart_tx_char(pyb_uart_obj_t *self, int c); bool 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); #endif // PYBUART_H_ |