dari pinpin usb langsung

Dependencies:   mbed

Fork of Nucleo_Ex04_USBPAD by woodstock .

Committer:
beaglescout007
Date:
Tue Mar 15 11:39:04 2016 +0000
Revision:
0:b5f79b4f741d
Release

Who changed what in which revision?

UserRevisionLine numberNew contents of line
beaglescout007 0:b5f79b4f741d 1 #pragma once
beaglescout007 0:b5f79b4f741d 2 template<class SERIAL_T>
beaglescout007 0:b5f79b4f741d 3 void debug_hex(SERIAL_T& pc, const uint8_t* buf, int size)
beaglescout007 0:b5f79b4f741d 4 {
beaglescout007 0:b5f79b4f741d 5 for(int i = 0; i < size; i++) {
beaglescout007 0:b5f79b4f741d 6 pc.printf("%02x ", buf[i]);
beaglescout007 0:b5f79b4f741d 7 if (i%16 == 15) {
beaglescout007 0:b5f79b4f741d 8 pc.puts("\n");
beaglescout007 0:b5f79b4f741d 9 }
beaglescout007 0:b5f79b4f741d 10 }
beaglescout007 0:b5f79b4f741d 11 pc.puts("\n");
beaglescout007 0:b5f79b4f741d 12 }
beaglescout007 0:b5f79b4f741d 13
beaglescout007 0:b5f79b4f741d 14