Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[fix] Unused arguments in lib_stusb_impl/usbd_impl.c:USBD_HID_DataOut_impl when HAVE_USB_HIDKBD macro is set #446

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 8 additions & 2 deletions lib_stusb_impl/usbd_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -1018,8 +1018,14 @@ uint8_t USBD_HID_DataIn_impl(USBD_HandleTypeDef *pdev, uint8_t epnum)

uint8_t USBD_HID_DataOut_impl(USBD_HandleTypeDef *pdev,
uint8_t epnum,
uint8_t *buffer,
apdu_buffer_t *apdu_buf)
#ifndef HAVE_USB_HIDKBD
uint8_t *buffer,
apdu_buffer_t *apdu_buf
#else
__attribute__((unused)) uint8_t *buffer,
__attribute__((unused)) apdu_buffer_t *apdu_buf
#endif // HAVE_USB_HIDKBD
)
{
// only the data hid endpoint will receive data
switch (epnum) {
Expand Down