remove task void* param

This commit is contained in:
hathach
2018-12-13 13:53:43 +07:00
parent bc46dc6edf
commit af1ffe4675
5 changed files with 6 additions and 10 deletions

View File

@@ -71,11 +71,11 @@ bool tusb_init(void)
void tusb_task(void)
{
#if TUSB_OPT_HOST_ENABLED
usbh_task(NULL);
usbh_task();
#endif
#if TUSB_OPT_DEVICE_ENABLED
usbd_task(NULL);
usbd_task();
#endif
}