Skip to content

Commit 67cb06e

Browse files
committed
Add space between bytes printed for debugging
1 parent e986282 commit 67cb06e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

hiduniversal.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -401,8 +401,10 @@ uint8_t HIDUniversal::Poll() {
401401
#if 1
402402
Notify(PSTR("\r\nBuf: "), 0x80);
403403

404-
for(uint8_t i = 0; i < read; i++)
404+
for(uint8_t i = 0; i < read; i++) {
405405
D_PrintHex<uint8_t > (buf[i], 0x80);
406+
Notify(PSTR(" "), 0x80);
407+
}
406408

407409
Notify(PSTR("\r\n"), 0x80);
408410
#endif

0 commit comments

Comments
 (0)