summaryrefslogtreecommitdiff
path: root/examples/host
diff options
context:
space:
mode:
authorkkitayam <[email protected]>2021-11-29 00:45:57 +0900
committerkkitayam <[email protected]>2021-11-29 00:45:57 +0900
commit24614de419f5a7c5871bf6bbd78ec4d01bdca31b (patch)
tree673db922a36fae3cc90eed2327cbe2f70b7e1fda /examples/host
parentae9a39ec1fec596a7578a137a392b48cdab5ac39 (diff)
Fix build errors
Diffstat (limited to 'examples/host')
-rw-r--r--examples/host/hid_controller/src/hid_app.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/examples/host/hid_controller/src/hid_app.c b/examples/host/hid_controller/src/hid_app.c
index bbfea8182..582e01959 100644
--- a/examples/host/hid_controller/src/hid_app.c
+++ b/examples/host/hid_controller/src/hid_app.c
@@ -138,6 +138,8 @@ void hid_app_task(void)
// therefore report_desc = NULL, desc_len = 0
void tuh_hid_mount_cb(uint8_t dev_addr, uint8_t instance, uint8_t const* desc_report, uint16_t desc_len)
{
+ (void)desc_report;
+ (void)desc_len;
uint16_t vid, pid;
tuh_vid_pid_get(dev_addr, &vid, &pid);