We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5df18c3 commit f8cb53cCopy full SHA for f8cb53c
shared-module/max3421e/Max3421E.c
@@ -83,7 +83,7 @@ void common_hal_max3421e_max3421e_deinit(max3421e_max3421e_obj_t *self) {
83
// anyway. Don't run background tasks because this function is used by
84
// tuh_task() which is run as a background task.
85
#if CFG_TUSB_OS == OPT_OS_NONE
86
-void osal_task_delay(uint32_t msec) {
+void tusb_time_delay_ms_api(uint32_t msec) {
87
uint32_t end_time = common_hal_time_monotonic_ms() + msec;
88
while (common_hal_time_monotonic_ms() < end_time) {
89
if (tuh_callback.prev != NULL) {
0 commit comments