diff options
Diffstat (limited to 'src/stm/ao_interrupt.c')
-rw-r--r-- | src/stm/ao_interrupt.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/stm/ao_interrupt.c b/src/stm/ao_interrupt.c index a98d799a..d8be3667 100644 --- a/src/stm/ao_interrupt.c +++ b/src/stm/ao_interrupt.c @@ -29,12 +29,12 @@ extern char __bss_start__, __bss_end__; /* Interrupt functions */ -static void stm_halt_isr(void) +void stm_halt_isr(void) { ao_panic(AO_PANIC_CRASH); } -static void stm_ignore_isr(void) +void stm_ignore_isr(void) { } |