Add space between bytes printed for debugging

This commit is contained in:
Kristian Lauszus 2014-05-21 23:29:15 +02:00
parent e986282fa5
commit 67cb06e858

View file

@ -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<uint8_t > (buf[i], 0x80);
Notify(PSTR(" "), 0x80);
}
Notify(PSTR("\r\n"), 0x80);
#endif