summaryrefslogtreecommitdiff
path: root/main.c
diff options
context:
space:
mode:
authorFlorian Jung <flo@windfisch.org>2014-04-05 19:45:53 +0200
committerFlorian Jung <flo@windfisch.org>2014-04-05 19:45:53 +0200
commit7d57cc8a33015602e5a867978a79fc7fce25402a (patch)
tree6371571c394d1348722d7f4681cd8120c350e1d7 /main.c
parent8e80709d69076574b002c9d1e1a235e19ac0d22e (diff)
do not advertise unused buttons
Diffstat (limited to 'main.c')
-rw-r--r--main.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/main.c b/main.c
index 6c38571..8cb3146 100644
--- a/main.c
+++ b/main.c
@@ -51,19 +51,22 @@
static char buffer[300]; // contains the exploded gamecube bits, i.e. each bit sent/received occupies one byte here.
-PROGMEM const char usbHidReportDescriptor[50] = {
+PROGMEM const char usbHidReportDescriptor[56] = {
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x05, // USAGE (Game Pad)
0xA1, 0x01, // COLLECTION (Application)
0xA1, 0x00, // COLLECTION (Physical)
0x05, 0x09, // USAGE_PAGE (Button)
0x19, 0x01, // USAGE_MINIMUM (Button 1)
- 0x29, 0x10, // USAGE_MAXIMUM (Button 16)
+ 0x29, 0x0C, // USAGE_MAXIMUM (Button 12)
0x15, 0x00, // LOGICAL_MINIMUM (0)
0x25, 0x01, // LOGICAL_MAXIMUM (1)
- 0x95, 0x10, // REPORT_COUNT (16)
+ 0x95, 0x0C, // REPORT_COUNT (12)
0x75, 0x01, // REPORT_SIZE (1)
0x81, 0x02, // INPUT (Data,Var,Abs)
+ 0x95, 0x01, // REPORT_COUNT (1)
+ 0x75, 0x04, // REPORT_SIZE (4)
+ 0x81, 0x03, // INPUT (Const,Var,Abs)
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x30, // USAGE (X)
0x09, 0x31, // USAGE (Y)