summaryrefslogtreecommitdiffstatshomepage
path: root/stm/printf.c
diff options
context:
space:
mode:
Diffstat (limited to 'stm/printf.c')
-rw-r--r--stm/printf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stm/printf.c b/stm/printf.c
index cec7c3e5c3..39d902d21b 100644
--- a/stm/printf.c
+++ b/stm/printf.c
@@ -214,7 +214,7 @@ void usb_vcp_send(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(str, len);
}
static const pfenv_t pfenv_stdout = {0, stdout_print_strn};