This is an automated email from the ASF dual-hosted git repository.

jerzy pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mynewt-core.git


The following commit(s) were added to refs/heads/master by this push:
     new c5ca50357 hw/mcu/nrf91: Fix number of vectors
c5ca50357 is described below

commit c5ca5035751f788fba9aa0a91e5fe1f7aa6feb4d
Author: Michal Gorecki <[email protected]>
AuthorDate: Wed Jun 12 13:27:52 2024 +0200

    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 7ea55d254..26656353f 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 <stdint.h>
 #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" {

Reply via email to