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 46ed5c8 commit 82f42e1Copy full SHA for 82f42e1
low_level_platform/impl/src/lf_rp2040_support.c
@@ -303,7 +303,7 @@ int lf_cond_wait(lf_cond_t* cond) {
303
return 0;
304
}
305
306
-int lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
+int _lf_cond_timedwait(lf_cond_t* cond, instant_t absolute_time_ns) {
307
absolute_time_t a = from_us_since_boot(absolute_time_ns / 1000);
308
bool acquired_permit = sem_acquire_block_until(&(cond->sema), a);
309
return acquired_permit ? 0 : LF_TIMEOUT;
0 commit comments