Dieter Graef / USBHost_DISCO-F746NG

Dependents:   DISCO-F746NG_USB_Host

Fork of KL46Z-USBHost by Norimasa Okamoto

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers mydebug.h Source File

mydebug.h

00001 #pragma once
00002 
00003 void debug_hex(unsigned char* buf, int size)
00004 {
00005     for(int i = 0; i < size; i++) {
00006         printf("%02x ", buf[i]);
00007         if (i%16 == 15) {
00008             printf("\n");
00009         }
00010     }
00011     printf("\n");
00012 }