summaryrefslogtreecommitdiff
path: root/stm/printf.c
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-01-12 04:53:14 -0800
committerDamien George <damien.p.george@gmail.com>2014-01-12 04:53:14 -0800
commit022630213a7ea494546e8fb24c9ff35d9363b798 (patch)
treea1ce9830fbde3b0d639bcab41fca36e8fa8c69d4 /stm/printf.c
parente5863d9301286418bfefd1fc07db5664759502f0 (diff)
parentd80ee8bbfd52fd44f623aabbef4544f9572aca9e (diff)
Merge pull request #147 from dhylands/staticfs
Added memzip filesystem support for teensy
Diffstat (limited to 'stm/printf.c')
-rw-r--r--stm/printf.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/stm/printf.c b/stm/printf.c
index 8a40a61a5..fa9426925 100644
--- a/stm/printf.c
+++ b/stm/printf.c
@@ -221,10 +221,12 @@ void stdout_print_strn(void *data, const char *str, unsigned int len) {
bool any = false;
// TODO should have a setting for which USART port to send to
+#if 0 // if 0'd out so that we're not calling functions with the wrong arguments
if (usart_is_enabled()) {
usart_tx_strn_cooked(str, len);
any = true;
}
+#endif
if (usb_vcp_is_enabled()) {
usb_vcp_send_strn_cooked(str, len);