vector_data.c 1.4 KB

1234567891011121314151617181920212223
  1. /* generated vector source file - do not edit */
  2. #include "bsp_api.h"
  3. /* Do not build these data structures if no interrupts are currently allocated because IAR will have build errors. */
  4. #if VECTOR_DATA_IRQ_COUNT > 0
  5. BSP_DONT_REMOVE const fsp_vector_t g_vector_table[BSP_ICU_VECTOR_NUM_ENTRIES] BSP_PLACE_IN_SECTION(BSP_SECTION_APPLICATION_VECTORS) =
  6. {
  7. [0] = sci_uart_rxi_isr, /* SCI0 RXI (Receive data full) */
  8. [1] = sci_uart_txi_isr, /* SCI0 TXI (Transmit data empty) */
  9. [2] = sci_uart_tei_isr, /* SCI0 TEI (Transmit end) */
  10. [3] = sci_uart_eri_isr, /* SCI0 ERI (Receive error) */
  11. [4] = r_icu_isr, /* ICU IRQ0 (External pin interrupt 0) */
  12. };
  13. #if BSP_FEATURE_ICU_HAS_IELSR
  14. const bsp_interrupt_event_t g_interrupt_event_link_select[BSP_ICU_VECTOR_NUM_ENTRIES] =
  15. {
  16. [0] = BSP_PRV_VECT_ENUM(EVENT_SCI0_RXI,GROUP0), /* SCI0 RXI (Receive data full) */
  17. [1] = BSP_PRV_VECT_ENUM(EVENT_SCI0_TXI,GROUP1), /* SCI0 TXI (Transmit data empty) */
  18. [2] = BSP_PRV_VECT_ENUM(EVENT_SCI0_TEI,GROUP2), /* SCI0 TEI (Transmit end) */
  19. [3] = BSP_PRV_VECT_ENUM(EVENT_SCI0_ERI,GROUP3), /* SCI0 ERI (Receive error) */
  20. [4] = BSP_PRV_VECT_ENUM(EVENT_ICU_IRQ0,GROUP4), /* ICU IRQ0 (External pin interrupt 0) */
  21. };
  22. #endif
  23. #endif