Update TinyUSB and shorten USB task delay

This commit is contained in:
Scott Shawcroft 2020-05-18 17:27:49 -07:00
parent cf690bd390
commit 164628282d
No known key found for this signature in database
GPG Key ID: 9349BC7E64B1921E
2 changed files with 2 additions and 2 deletions

@ -1 +1 @@
Subproject commit a74a823b0a140667a4e4e80fa2678870faba2bd0
Subproject commit 76bf96bcb0c12ba241ee4ecc175afb257e550d19

View File

@ -59,7 +59,7 @@ void usb_device_task(void* param)
tud_task();
tud_cdc_write_flush();
}
vTaskDelay(10);
vTaskDelay(1);
}
}