mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2025-02-20 10:54:14 +01:00
f4 usb_hid: fix typo in EP IN registration call
Code was using the size of the Rx buffer instead of the Tx buffer when registering. Buffers are currently the same size so wasn't causing any issues.
This commit is contained in:
parent
bc3ee6209c
commit
1f37806eab
@ -309,7 +309,7 @@ static void PIOS_USB_HID_IF_Init(uint32_t usb_hid_id)
|
||||
|
||||
/* Register endpoint specific callbacks with the USBHOOK layer */
|
||||
PIOS_USBHOOK_RegisterEpInCallback(usb_hid_dev->cfg->data_tx_ep,
|
||||
sizeof(usb_hid_dev->rx_packet_buffer),
|
||||
sizeof(usb_hid_dev->tx_packet_buffer),
|
||||
PIOS_USB_HID_EP_IN_Callback,
|
||||
(uint32_t) usb_hid_dev);
|
||||
PIOS_USBHOOK_RegisterEpOutCallback(usb_hid_dev->cfg->data_rx_ep,
|
||||
|
Loading…
x
Reference in New Issue
Block a user