Skip to content

Commit

Permalink
hw/mcu/nrf91: Fix number of vectors
Browse files Browse the repository at this point in the history
  • Loading branch information
m-gorecki committed Jun 12, 2024
1 parent 4552586 commit 6d40264
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hw/mcu/nordic/nrf91xx/include/mcu/cmsis_nvic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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" {
Expand Down

0 comments on commit 6d40264

Please sign in to comment.