You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#define PROGMEM |
|
#include <stdio.h> |
|
#include <stdint.h> |
|
#include "../reportdesc.c" |
|
|
|
|
|
int main(void) |
|
{ |
|
int i; |
|
|
|
for (i=0; i<sizeof(gcn64_usbHidReportDescriptor); i++) |
|
{ |
|
printf("%02x ", gcn64_usbHidReportDescriptor[i]); |
|
} |
|
printf("\n"); |
|
|
|
return 0; |
|
}
|
|
|