rp2/pendsv: Fix variable typo in assert so it compiles.
Fixes issue #15276. Signed-off-by: Peter Harper <peter.harper@raspberrypi.com>
This commit is contained in:
committed by
Damien George
parent
f60c71d131
commit
e35f13a22d
@@ -84,7 +84,7 @@ void PendSV_Handler(void) {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// Core 0 should not already have locked pendsv_mutex
|
// Core 0 should not already have locked pendsv_mutex
|
||||||
assert(pensv_mutex.enter_count == 1);
|
assert(pendsv_mutex.enter_count == 1);
|
||||||
|
|
||||||
#if MICROPY_PY_NETWORK_CYW43
|
#if MICROPY_PY_NETWORK_CYW43
|
||||||
CYW43_STAT_INC(PENDSV_RUN_COUNT);
|
CYW43_STAT_INC(PENDSV_RUN_COUNT);
|
||||||
|
|||||||
Reference in New Issue
Block a user