diff options
| author | Glenn Ruben Bakke | 2019-10-09 19:34:16 +0200 |
|---|---|---|
| committer | Glenn Ruben Bakke | 2019-10-10 20:21:07 +0200 |
| commit | 1571120dc2c32d1eff451d6d52fde38dbec1d114 (patch) | |
| tree | 737cc72108826c84f3a63a4f0c723e92f537f3e7 | |
| parent | 79ab82ea77b0a924e96c2f6333e00c97706971ab (diff) | |
nrf/device: Correct SPIM3 IRQ handler entry for nrf52840.
| -rw-r--r-- | ports/nrf/device/startup_nrf52840.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ports/nrf/device/startup_nrf52840.c b/ports/nrf/device/startup_nrf52840.c index 0935d7d1d..288b13820 100644 --- a/ports/nrf/device/startup_nrf52840.c +++ b/ports/nrf/device/startup_nrf52840.c @@ -176,7 +176,9 @@ const func __Vectors[] __attribute__ ((section(".isr_vector"),used)) = { UARTE1_IRQHandler, QSPI_IRQHandler, CRYPTOCELL_IRQHandler, - SPIM3_IRQHandler, + 0, 0, PWM3_IRQHandler, + 0, + SPIM3_IRQHandler, }; |
