[PATCH v2 12/12] bsp/atsam: Fix BSP_INTERRUPT_VECTOR_COUNT
Sebastian Huber
sebastian.huber at embedded-brains.de
Sat Jun 19 14:04:48 UTC 2021
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 fa3d56ab1e..e788570469 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 */
--
2.26.2
More information about the devel
mailing list