PICO_DEFAULT_IRQ_PRIORITY is only used within PicoSDK.
 
Symbols
loading...
Files
loading...
SummarySyntaxReferences

Notes

That all IRQ APIs affect the executing core only (i.e. the core calling the function). You should not enable the same (shared) IRQ number on both cores, as this will lead to race conditions or starvation of one of the cores. Additionally, don't forget that disabling interrupts on one core does not disable interrupts on the other core. If an IRQ is enabled and fires with no handler installed, a breakpoint will be hit and the IRQ number will be in register r0.

References

from examples