vector_data.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /* generated vector header file - do not edit */
  2. #ifndef VECTOR_DATA_H
  3. #define VECTOR_DATA_H
  4. #include "bsp_api.h"
  5. /** Common macro for FSP header files. There is also a corresponding FSP_FOOTER macro at the end of this file. */
  6. FSP_HEADER
  7. /* Number of interrupts allocated */
  8. #ifndef VECTOR_DATA_IRQ_COUNT
  9. #define VECTOR_DATA_IRQ_COUNT (6)
  10. #endif
  11. /* ISR prototypes */
  12. void r_icu_isr(void);
  13. void sci_uart_eri_isr(void);
  14. void sci_uart_rxi_isr(void);
  15. void sci_uart_txi_isr(void);
  16. void sci_uart_tei_isr(void);
  17. /* Vector table allocations */
  18. #define VECTOR_NUMBER_IRQ6 ((IRQn_Type) 12) /* IRQ6 (External pin interrupt 6) */
  19. #define VECTOR_NUMBER_IRQ7 ((IRQn_Type) 13) /* IRQ7 (External pin interrupt 7) */
  20. #define VECTOR_NUMBER_SCI0_ERI ((IRQn_Type) 288) /* SCI0_ERI (SCI0 Receive error) */
  21. #define VECTOR_NUMBER_SCI0_RXI ((IRQn_Type) 289) /* SCI0_RXI (SCI0 Receive data full) */
  22. #define VECTOR_NUMBER_SCI0_TXI ((IRQn_Type) 290) /* SCI0_TXI (SCI0 Transmit data empty) */
  23. #define VECTOR_NUMBER_SCI0_TEI ((IRQn_Type) 291) /* SCI0_TEI (SCI0 Transmit end) */
  24. typedef enum IRQn {
  25. SoftwareGeneratedInt0 = -32,
  26. SoftwareGeneratedInt1 = -31,
  27. SoftwareGeneratedInt2 = -30,
  28. SoftwareGeneratedInt3 = -29,
  29. SoftwareGeneratedInt4 = -28,
  30. SoftwareGeneratedInt5 = -27,
  31. SoftwareGeneratedInt6 = -26,
  32. SoftwareGeneratedInt7 = -25,
  33. SoftwareGeneratedInt8 = -24,
  34. SoftwareGeneratedInt9 = -23,
  35. SoftwareGeneratedInt10 = -22,
  36. SoftwareGeneratedInt11 = -21,
  37. SoftwareGeneratedInt12 = -20,
  38. SoftwareGeneratedInt13 = -19,
  39. SoftwareGeneratedInt14 = -18,
  40. SoftwareGeneratedInt15 = -17,
  41. DebugCommunicationsChannelInt = -10,
  42. PerformanceMonitorCounterOverflowInt = -9,
  43. CrossTriggerInterfaceInt = -8,
  44. VritualCPUInterfaceMaintenanceInt = -7,
  45. HypervisorTimerInt = -6,
  46. VirtualTimerInt = -5,
  47. NonSecurePhysicalTimerInt = -2,
  48. IRQ6_IRQn = 12, /* IRQ6 (External pin interrupt 6) */
  49. IRQ7_IRQn = 13, /* IRQ7 (External pin interrupt 7) */
  50. SCI0_ERI_IRQn = 288, /* SCI0_ERI (SCI0 Receive error) */
  51. SCI0_RXI_IRQn = 289, /* SCI0_RXI (SCI0 Receive data full) */
  52. SCI0_TXI_IRQn = 290, /* SCI0_TXI (SCI0 Transmit data empty) */
  53. SCI0_TEI_IRQn = 291, /* SCI0_TEI (SCI0 Transmit end) */
  54. SHARED_PERIPHERAL_INTERRUPTS_MAX_ENTRIES = BSP_VECTOR_TABLE_MAX_ENTRIES
  55. } IRQn_Type;
  56. /** Common macro for FSP header files. There is also a corresponding FSP_HEADER macro at the top of this file. */
  57. FSP_FOOTER
  58. #endif /* VECTOR_DATA_H */