mirror of
https://github.com/felis/USB_Host_Shield_2.0.git
synced 2024-03-22 11:31:26 +01:00
Add space between bytes printed for debugging
This commit is contained in:
parent
e986282fa5
commit
67cb06e858
1 changed files with 3 additions and 1 deletions
|
@ -401,8 +401,10 @@ uint8_t HIDUniversal::Poll() {
|
||||||
#if 1
|
#if 1
|
||||||
Notify(PSTR("\r\nBuf: "), 0x80);
|
Notify(PSTR("\r\nBuf: "), 0x80);
|
||||||
|
|
||||||
for(uint8_t i = 0; i < read; i++)
|
for(uint8_t i = 0; i < read; i++) {
|
||||||
D_PrintHex<uint8_t > (buf[i], 0x80);
|
D_PrintHex<uint8_t > (buf[i], 0x80);
|
||||||
|
Notify(PSTR(" "), 0x80);
|
||||||
|
}
|
||||||
|
|
||||||
Notify(PSTR("\r\n"), 0x80);
|
Notify(PSTR("\r\n"), 0x80);
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue