Usb read
Dependencies: FATFileSystem
Fork of F401RE-USBHost by
USBHost/mydebug.h
- Committer:
- vincenzoDMT
- Date:
- 2018-01-08
- Revision:
- 25:e1e02d62995c
- Parent:
- 11:61843badd06e
File content as of revision 25:e1e02d62995c:
#pragma once template<class SERIAL_T> void debug_hex(SERIAL_T& pc, const uint8_t* buf, int size) { for(int i = 0; i < size; i++) { pc.printf("%02x ", buf[i]); if (i%16 == 15) { pc.puts("\n"); } } pc.puts("\n"); }