From 951ed9d02ffc826c68ee3af26c3530477e7e6156 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 20 Jul 2014 13:57:43 +0100 Subject: stmhal: Fix REPL printing by cooking output sent to stdout_obj. Recent changes to builtin print meant that print was printing to the mp_sys_stdout_obj, which was sending data raw to the USB CDC device. The data should be cooked so that \n turns into \r\n. --- stmhal/pyexec.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'stmhal/pyexec.c') diff --git a/stmhal/pyexec.c b/stmhal/pyexec.c index 93f4d62a9..cac6f0cf0 100644 --- a/stmhal/pyexec.c +++ b/stmhal/pyexec.c @@ -44,10 +44,11 @@ #include "gccollect.h" #include MICROPY_HAL_H #include "systick.h" -#include "pybstdio.h" #include "readline.h" #include "pyexec.h" #include "usb.h" +#include "uart.h" +#include "pybstdio.h" #include "genhdr/py-version.h" pyexec_mode_kind_t pyexec_mode_kind = PYEXEC_MODE_FRIENDLY_REPL; -- cgit v1.2.3