summaryrefslogtreecommitdiffstatshomepage
path: root/stmhal/pybstdio.h
diff options
context:
space:
mode:
authorblmorris <bryan.morrissey@gmail.com>2014-07-21 12:47:57 -0400
committerblmorris <bryan.morrissey@gmail.com>2014-07-21 12:47:57 -0400
commit4038f513ea0a6be75ecbc4d8ab2bbe2349524bca (patch)
tree2aace8a3551d5c397ec539865bbb2f6cdbc8d900 /stmhal/pybstdio.h
parent0f4ee2e44a1e47258a8b07fb25e28286d131390c (diff)
parent951ed9d02ffc826c68ee3af26c3530477e7e6156 (diff)
downloadmicropython-4038f513ea0a6be75ecbc4d8ab2bbe2349524bca.tar.gz
micropython-4038f513ea0a6be75ecbc4d8ab2bbe2349524bca.zip
Merge https://github.com/micropython/micropython
Diffstat (limited to 'stmhal/pybstdio.h')
-rw-r--r--stmhal/pybstdio.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/stmhal/pybstdio.h b/stmhal/pybstdio.h
index 5beab893da..cdb7acfe59 100644
--- a/stmhal/pybstdio.h
+++ b/stmhal/pybstdio.h
@@ -24,6 +24,9 @@
* THE SOFTWARE.
*/
+extern pyb_uart_obj_t *pyb_stdio_uart;
+
void stdout_tx_str(const char *str);
-void stdout_tx_strn(const char *str, uint len);
+void stdout_tx_strn(const char *str, mp_uint_t len);
+void stdout_tx_strn_cooked(const char *str, mp_uint_t len);
int stdin_rx_chr(void);