fix missing report in tuh_hid_set_report()

This commit is contained in:
hathach 2021-05-22 22:43:55 +07:00
parent a2c4a48dd6
commit f13a3c04f7

View File

@ -190,7 +190,7 @@ bool tuh_hid_set_report(uint8_t dev_addr, uint8_t instance, uint8_t report_id, u
.wLength = len .wLength = len
}; };
TU_ASSERT( tuh_control_xfer(dev_addr, &request, NULL, set_report_complete) ); TU_ASSERT( tuh_control_xfer(dev_addr, &request, report, set_report_complete) );
return true; return true;
} }