schedule next interrupt

This commit is contained in:
folkert van heusden 2024-04-21 22:29:47 +02:00
parent 31fcf27c5a
commit 2216589a3f
Signed by untrusted user who does not match committer: folkert
GPG key ID: 6B6455EDFEED3BD1

View file

@ -410,6 +410,9 @@ bool cpu::execute_any_pending_interrupt()
trap(v, i, true);
// when there are more interrupts scheduled, invoke them asap
trap_delay = initial_trap_delay;
#if defined(BUILD_FOR_RP2040)
xSemaphoreGive(qi_lock);
#endif