summaryrefslogtreecommitdiffstatshomepage
path: root/cc3200/mods/pybuart.h
diff options
context:
space:
mode:
authorDaniel Campora <daniel@wipy.io>2015-09-25 15:20:07 +0200
committerDaniel Campora <daniel@wipy.io>2015-09-27 11:27:24 +0200
commitef369249cb406758ec1caa9a212478ef69fd7ff0 (patch)
tree3b8e4b4358417693179b488dd79cb3b232538a6b /cc3200/mods/pybuart.h
parenta7261ae059f171e9677a86c59c7f7ed9e24b7ace (diff)
downloadmicropython-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.h1
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_