diff options
| author | IngHK <[email protected]> | 2024-02-08 12:00:44 +0100 |
|---|---|---|
| committer | IngHK <[email protected]> | 2024-02-08 12:00:44 +0100 |
| commit | 4d4e20b71efe8d9e1b5a141d84e058ff54801c67 (patch) | |
| tree | 1c980dc32813c898429d07a78720f4944bc714a3 /src/common | |
| parent | a0660027311738947a4227df63767fc81328dc86 (diff) | |
missing \r\n after TU_LOG_BUF => moved \r\n to tu_print_buf()
Diffstat (limited to 'src/common')
| -rw-r--r-- | src/common/tusb_debug.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/common/tusb_debug.h b/src/common/tusb_debug.h index 8db1606ae..2e9f1d9cd 100644 --- a/src/common/tusb_debug.h +++ b/src/common/tusb_debug.h @@ -60,6 +60,7 @@ void tu_print_mem(void const *buf, uint32_t count, uint8_t indent); static inline void tu_print_buf(uint8_t const* buf, uint32_t bufsize) { for(uint32_t i=0; i<bufsize; i++) tu_printf("%02X ", buf[i]); + tu_printf("\r\n"); } // Log with Level |
