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 9b28fc3 commit 63dfd9aCopy full SHA for 63dfd9a
cores/rp2040/sdkoverride/cyw43_arch_threadsafe_background.c
@@ -145,7 +145,7 @@ static void gpio_irq_handler(void) {
145
static void low_priority_irq_handler(void) {
146
assert(cyw43_core_num == get_core_num());
147
if (recursive_mutex_try_enter(&cyw43_mutex, NULL)) {
148
- if (recursive_mutex_enter_count(&cyw43_mutex) != 1) {
+ if (__inLWIP || (recursive_mutex_enter_count(&cyw43_mutex) != 1)) {
149
low_priority_irq_missed = true;
150
CYW43_STAT_INC(PENDSV_DISABLED_COUNT);
151
} else {
0 commit comments