2023-03-16 22:39:00 +07:00
|
|
|
/* vector numbers are configurable/dynamic, hence this, it will be used inside the port */
|
2023-07-03 11:22:19 +07:00
|
|
|
#ifndef VECTOR_DATA_H
|
|
|
|
#define VECTOR_DATA_H
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef VECTOR_DATA_IRQ_COUNT
|
|
|
|
#define VECTOR_DATA_IRQ_COUNT 4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* ISR prototypes */
|
|
|
|
void usbfs_interrupt_handler(void);
|
|
|
|
void usbfs_resume_handler(void);
|
|
|
|
void usbfs_d0fifo_handler(void);
|
|
|
|
void usbfs_d1fifo_handler(void);
|
|
|
|
|
|
|
|
/* Vector table allocations */
|
2023-07-03 13:09:43 +07:00
|
|
|
#define USBFS_INT_IRQn 0
|
2023-03-16 22:39:00 +07:00
|
|
|
#define USBFS_RESUME_IRQn 1
|
|
|
|
#define USBFS_FIFO_0_IRQn 2
|
|
|
|
#define USBFS_FIFO_1_IRQn 3
|
2023-07-03 11:22:19 +07:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif
|