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 67f89e4 commit ce7e458Copy full SHA for ce7e458
src/rp2_common/hardware_irq/irq.c
@@ -666,6 +666,8 @@ void irq_add_tail_to_free_list(struct irq_handler_chain_slot *slot) {
666
#endif
667
668
__weak void runtime_init_per_core_irq_priorities(void) {
669
+ // enable interrupts that might be disabled by a previous bootloader stage
670
+ enable_interrupts();
671
#if PICO_DEFAULT_IRQ_PRIORITY != 0
672
#ifndef __riscv
673
// static_assert(!(NUM_IRQS & 3), ""); // this isn't really required - the reg is still 32 bit
0 commit comments