diff options
| author | Jeff Epler <jepler@gmail.com> | 2019-08-02 07:44:02 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2019-08-02 07:53:35 -0500 |
| commit | 28b7cbfca624d3e6a59c7ec231ee6da6ebcf0d80 (patch) | |
| tree | eaadeee264952c59ced2b11ff50c54fdfd2e51f5 | |
| parent | 95d2694bc33eddba991abcff1d9b2aba5675c622 (diff) | |
nrf: Mark interrupt vectors as used
| -rw-r--r-- | ports/nrf/device/nrf52/startup_nrf52840.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ports/nrf/device/nrf52/startup_nrf52840.c b/ports/nrf/device/nrf52/startup_nrf52840.c index 30634a1b5..8e1c36012 100644 --- a/ports/nrf/device/nrf52/startup_nrf52840.c +++ b/ports/nrf/device/nrf52/startup_nrf52840.c @@ -116,7 +116,7 @@ void CRYPTOCELL_IRQHandler (void) __attribute__ ((weak, alias("Default_Han void SPIM3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler"))); void PWM3_IRQHandler (void) __attribute__ ((weak, alias("Default_Handler"))); -const func __Vectors[] __attribute__ ((section(".isr_vector"))) = { +const func __Vectors[] __attribute__ ((used, section(".isr_vector"))) = { (func)&_estack, Reset_Handler, NMI_Handler, |
