summaryrefslogtreecommitdiff
path: root/src/common/tusb_common.h
diff options
context:
space:
mode:
authorNathan Conrad <[email protected]>2020-03-14 14:22:08 -0400
committerNathan Conrad <[email protected]>2020-03-14 14:26:14 -0400
commit7f6316dbe1c98d2f00ded0913176a85e871353fa (patch)
treef8b024096bfdc7705f052ae0ab9b2b8acfddf736 /src/common/tusb_common.h
parenta0eb8a26517040850a0e4185aef398183b04ddc7 (diff)
Use CRLF on UART.
Diffstat (limited to 'src/common/tusb_common.h')
-rw-r--r--src/common/tusb_common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/tusb_common.h b/src/common/tusb_common.h
index 5e6a8bb10..ef232a593 100644
--- a/src/common/tusb_common.h
+++ b/src/common/tusb_common.h
@@ -222,7 +222,7 @@ void tu_print_mem(void const *buf, uint16_t count, uint8_t indent);
// Log with debug level 1
#define TU_LOG1 tu_printf
#define TU_LOG1_MEM tu_print_mem
-#define TU_LOG1_LOCATION() tu_printf("%s: %d:\n", __PRETTY_FUNCTION__, __LINE__)
+#define TU_LOG1_LOCATION() tu_printf("%s: %d:\r\n", __PRETTY_FUNCTION__, __LINE__)
// Log with debug level 2
#if CFG_TUSB_DEBUG > 1