diff options
| author | hathach <[email protected]> | 2013-11-21 13:54:29 +0700 |
|---|---|---|
| committer | hathach <[email protected]> | 2013-11-21 13:54:29 +0700 |
| commit | c303154b7a2af8e934308d9115e7b6da23c66419 (patch) | |
| tree | ed00100b5b0f6b71789702f8f1eee404b8639aed /tinyusb/class | |
| parent | c461c72ac2ddf6f89ba533e98f34bba72f8c1470 (diff) | |
add class mounted callback for hid mouse/keyboard & refractor mouse/keyboard app
Diffstat (limited to 'tinyusb/class')
| -rw-r--r-- | tinyusb/class/hid_device.c | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/tinyusb/class/hid_device.c b/tinyusb/class/hid_device.c index 4b184c9ad..8872f042b 100644 --- a/tinyusb/class/hid_device.c +++ b/tinyusb/class/hid_device.c @@ -78,7 +78,7 @@ bool tusbd_hid_keyboard_is_busy(uint8_t coreid) tusb_error_t tusbd_hid_keyboard_send(uint8_t coreid, hid_keyboard_report_t const *p_report) { - //------------- verify data -------------// + ASSERT(tusbd_is_configured(coreid), TUSB_ERROR_USBD_DEVICE_NOT_CONFIGURED); hidd_interface_t * p_kbd = &keyboardd_data; // TODO &keyboardd_data[coreid]; @@ -104,7 +104,7 @@ bool tusbd_hid_mouse_is_busy(uint8_t coreid) tusb_error_t tusbd_hid_mouse_send(uint8_t coreid, hid_mouse_report_t const *p_report) { - //------------- verify data -------------// + ASSERT(tusbd_is_configured(coreid), TUSB_ERROR_USBD_DEVICE_NOT_CONFIGURED); hidd_interface_t * p_mouse = &moused_data; // TODO &keyboardd_data[coreid]; @@ -226,10 +226,19 @@ tusb_error_t hidd_open(uint8_t coreid, tusb_descriptor_interface_t const * p_int ASSERT_PTR(p_hid, TUSB_ERROR_FAILED); - p_hid->interface_number = p_interface_desc->bInterfaceNumber; - p_hid->report_length = p_desc_hid->wReportLength; p_hid->ept_handle = dcd_pipe_open(coreid, p_desc_endpoint, p_interface_desc->bInterfaceClass); ASSERT( endpointhandle_is_valid(p_hid->ept_handle), TUSB_ERROR_DCD_FAILED); + + p_hid->interface_number = p_interface_desc->bInterfaceNumber; + p_hid->report_length = p_desc_hid->wReportLength; + + if (p_interface_desc->bInterfaceProtocol == HID_PROTOCOL_KEYBOARD) + { + tusbd_hid_keyboard_mounted_cb(coreid); + }else + { + tusbd_hid_mouse_mounted_cb(coreid); + } } break; |
