bsps/irq: Remove BSP_INTERRUPT_VECTOR_MAX

This define is no longer used.

Update #3269.
This commit is contained in:
Sebastian Huber
2021-06-19 12:48:27 +02:00
parent 3fee662093
commit 94cf67ca66
55 changed files with 0 additions and 65 deletions

View File

@@ -58,18 +58,10 @@
extern "C" {
#endif /* __cplusplus */
#if !defined(BSP_INTERRUPT_VECTOR_MAX)
#error "BSP_INTERRUPT_VECTOR_MAX shall be defined"
#endif
#if !defined(BSP_INTERRUPT_VECTOR_COUNT)
#error "BSP_INTERRUPT_VECTOR_COUNT shall be defined"
#endif
#if BSP_INTERRUPT_VECTOR_MAX + 1 != BSP_INTERRUPT_VECTOR_COUNT
#error "BSP_INTERRUPT_VECTOR_COUNT is not equal to BSP_INTERRUPT_VECTOR_MAX + 1"
#endif
#if defined(BSP_INTERRUPT_USE_INDEX_TABLE) && !defined(BSP_INTERRUPT_HANDLER_TABLE_SIZE)
#error "if you define BSP_INTERRUPT_USE_INDEX_TABLE, you have to define BSP_INTERRUPT_HANDLER_TABLE_SIZE etc. as well"
#endif