From 67cb06e858582cf642a6df062a891659574b62e9 Mon Sep 17 00:00:00 2001 From: Kristian Lauszus Date: Wed, 21 May 2014 23:29:15 +0200 Subject: [PATCH] Add space between bytes printed for debugging --- hiduniversal.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/hiduniversal.cpp b/hiduniversal.cpp index c2f33533..3bd30339 100644 --- a/hiduniversal.cpp +++ b/hiduniversal.cpp @@ -401,8 +401,10 @@ uint8_t HIDUniversal::Poll() { #if 1 Notify(PSTR("\r\nBuf: "), 0x80); - for(uint8_t i = 0; i < read; i++) + for(uint8_t i = 0; i < read; i++) { D_PrintHex (buf[i], 0x80); + Notify(PSTR(" "), 0x80); + } Notify(PSTR("\r\n"), 0x80); #endif