From c5ca5035751f788fba9aa0a91e5fe1f7aa6feb4d Mon Sep 17 00:00:00 2001 From: Michal Gorecki Date: Wed, 12 Jun 2024 13:27:52 +0200 Subject: [PATCH] hw/mcu/nrf91: Fix number of vectors --- hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h b/hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h index 7ea55d2544..26656353f6 100644 --- a/hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h +++ b/hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h @@ -10,7 +10,7 @@ #include #include "nrf.h" -#define NVIC_NUM_VECTORS (NVIC_USER_IRQ_OFFSET + 240) /* CORE + MCU Peripherals */ +#define NVIC_NUM_VECTORS (NVIC_USER_IRQ_OFFSET + 64) /* CORE + MCU Peripherals */ #ifdef __cplusplus extern "C" {