We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0b5e7f commit 9ba38e7Copy full SHA for 9ba38e7
hardware/arduino/avr/cores/arduino/HID.cpp
@@ -201,6 +201,10 @@ const u8 _hidReportDescriptor[] = {
201
0x09, 0x01, // USAGE (Consumer Control)
202
0xa1, 0x01, // COLLECTION (Application)
203
0x85, HID_REPORTID_CONSUMERCONTROL, // REPORT_ID (6)
204
+ 0x15, 0x00, // LOGICAL_MINIMUM (0)
205
+ 0x25, 0x01, // LOGICAL_MAXIMUM (1)
206
+ 0x75, 0x01, // REPORT_SIZE (1)
207
+ 0x95, 0x08, // REPORT_COUNT (8)
208
0x09, 0xe2, // USAGE (Mute) 0x01
209
0x09, 0xe9, // USAGE (Volume Up) 0x02
210
0x09, 0xea, // USAGE (Volume Down) 0x03
@@ -209,10 +213,6 @@ const u8 _hidReportDescriptor[] = {
213
0x09, 0xb6, // USAGE (Scan Previous Track) 0x06
214
0x09, 0xb5, // USAGE (Scan Next Track) 0x07
211
215
0x09, 0xb8, // USAGE (Eject) 0x08
212
- 0x15, 0x00, // LOGICAL_MINIMUM (0)
- 0x25, 0x01, // LOGICAL_MAXIMUM (1)
- 0x75, 0x01, // REPORT_SIZE (1)
- 0x95, 0x0f, // REPORT_COUNT (8)
216
0x81, 0x02, // INPUT (Data,Var,Abs)
217
0xc0,
218
0 commit comments