summaryrefslogtreecommitdiff
path: root/tinyusb/class/hid_device.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-11-14 14:12:07 +0700
committerhathach <[email protected]>2013-11-14 14:12:07 +0700
commit6e8440afe555cc8c47b8ef1fdce56bb5d37231a8 (patch)
tree6fb3e3bf2e3d0e71fe8ed22e17134c7b74591b1a /tinyusb/class/hid_device.c
parent7d84139bd4e69e0b4cb42fb638a7a6d52afe93de (diff)
complete double buffering for queueing xfer for lpc11u/13u requried by msc device
Diffstat (limited to 'tinyusb/class/hid_device.c')
-rw-r--r--tinyusb/class/hid_device.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tinyusb/class/hid_device.c b/tinyusb/class/hid_device.c
index 53efdb59d..c5e98894e 100644
--- a/tinyusb/class/hid_device.c
+++ b/tinyusb/class/hid_device.c
@@ -165,7 +165,8 @@ tusb_error_t hidd_control_request(uint8_t coreid, tusb_control_request_t const *
case HID_REQUEST_CONTROL_SET_REPORT:
{
- return TUSB_ERROR_DCD_CONTROL_REQUEST_NOT_SUPPORT;
+ return TUSB_ERROR_DCD_CONTROL_REQUEST_NOT_SUPPORT; // TODO test STALL control out endpoint (with mouse+keyboard)
+
// TODO HIDD set report support
hid_request_report_type_t report_type = u16_high_u8(p_request->wValue);
uint8_t report_id = u16_low_u8(p_request->wValue);