diff options
Diffstat (limited to 'stm/printf.c')
-rw-r--r-- | stm/printf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stm/printf.c b/stm/printf.c index 39d902d21..31ab8c3d2 100644 --- a/stm/printf.c +++ b/stm/printf.c @@ -209,12 +209,12 @@ int pfenv_printf(const pfenv_t *pfenv, const char *fmt, va_list args) { } void lcd_print_strn(const char *str, unsigned int len); -void usb_vcp_send(const char* str, int len); +void usb_vcp_send_strn(const char* str, int len); void stdout_print_strn(void *data, const char *str, unsigned int len) { // send stdout to LCD and USB CDC VCP lcd_print_strn(str, len); - //usb_vcp_send(str, len); + usb_vcp_send_strn(str, len); } static const pfenv_t pfenv_stdout = {0, stdout_print_strn}; |