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:
parent
f60c71d131
commit
e35f13a22d
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue