diff options
Diffstat (limited to 'stm/printf.c')
-rw-r--r-- | stm/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/printf.c b/stm/printf.c index 821b790b4b..3ccdd7084b 100644 --- a/stm/printf.c +++ b/stm/printf.c @@ -214,7 +214,7 @@ int pfenv_printf(const pfenv_t *pfenv, const char *fmt, va_list args) { void stdout_print_strn(void *data, const char *str, unsigned int len) { // send stdout to LCD and USB CDC VCP if (usb_vcp_is_enabled()) { - usb_vcp_send_strn(str, len); + usb_vcp_send_strn_cooked(str, len); } else { lcd_print_strn(str, len); } |