summaryrefslogtreecommitdiff
path: root/tinyusb/class/hid_device.c
diff options
context:
space:
mode:
authorhathach <[email protected]>2013-06-21 13:11:16 +0700
committerhathach <[email protected]>2013-06-21 13:11:45 +0700
commit3924764dff9d90ccff09e1d657c6f40ed8def8d9 (patch)
treec3b124a2f9a76be89cbb34d36a38678d0fb3e8b2 /tinyusb/class/hid_device.c
parent743e5a7a930b7e22d85ed1ae9714d42e75ef43c6 (diff)
[host lpc43xx] adding support for host custom class
refractor usbh class driver indexing opt out periodic list code in EHCI (need to refractor/group later) [device lpc176x] rename dcd_endpoint_configure to dcd_pipe_open add usbd_pipe_open to manage pipe
Diffstat (limited to 'tinyusb/class/hid_device.c')
-rw-r--r--tinyusb/class/hid_device.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tinyusb/class/hid_device.c b/tinyusb/class/hid_device.c
index 2aba541bb..adb252c11 100644
--- a/tinyusb/class/hid_device.c
+++ b/tinyusb/class/hid_device.c
@@ -136,7 +136,7 @@ tusb_error_t hidd_init(uint8_t coreid, tusb_descriptor_interface_t const * p_int
{
#if TUSB_CFG_DEVICE_HID_KEYBOARD
case HID_PROTOCOL_KEYBOARD:
- ASSERT_STATUS( dcd_endpoint_configure(coreid, p_desc_endpoint) );
+ ASSERT_STATUS( dcd_pipe_open(coreid, p_desc_endpoint) );
break;
#endif