[rtems commit] bsp/atsam: Fix BSP_INTERRUPT_VECTOR_COUNT

Sebastian Huber sebh at rtems.org
Thu Jun 24 10:29:28 UTC 2021


Module:    rtems
Branch:    master
Commit:    6b7a38589a930b8b81d9052280a88a14e9518950
Changeset: http://git.rtems.org/rtems/commit/?id=6b7a38589a930b8b81d9052280a88a14e9518950

Author:    Sebastian Huber <sebastian.huber at embedded-brains.de>
Date:      Sat Jun 19 14:24:26 2021 +0200

bsp/atsam: Fix BSP_INTERRUPT_VECTOR_COUNT

Fix an off by one error.

Update #3269.

---

 bsps/arm/atsam/include/bsp/irq.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bsps/arm/atsam/include/bsp/irq.h b/bsps/arm/atsam/include/bsp/irq.h
index fa3d56a..e788570 100644
--- a/bsps/arm/atsam/include/bsp/irq.h
+++ b/bsps/arm/atsam/include/bsp/irq.h
@@ -23,6 +23,6 @@
   #include <rtems/irq-extension.h>
 #endif
 
-#define BSP_INTERRUPT_VECTOR_COUNT 65
+#define BSP_INTERRUPT_VECTOR_COUNT 64
 
 #endif /* LIBBSP_ARM_ATSAM_ESV_70_IRQ_H */



More information about the vc mailing list