forked from Imagelibrary/rtems
23 lines
326 B
C
23 lines
326 B
C
/**
|
|
* @file
|
|
*
|
|
* @ingroup arm_beagle
|
|
*
|
|
* @brief Basic BSP IRQ info.
|
|
*/
|
|
|
|
#ifndef LIBBSP_ARM_BEAGLE_IRQ_H
|
|
#define LIBBSP_ARM_BEAGLE_IRQ_H
|
|
|
|
#ifndef ASM
|
|
|
|
#include <rtems.h>
|
|
#include <rtems/irq.h>
|
|
#include <rtems/irq-extension.h>
|
|
|
|
#define BSP_INTERRUPT_VECTOR_COUNT 128
|
|
|
|
#endif /* ASM */
|
|
|
|
#endif /* LIBBSP_ARM_BEAGLE_IRQ_H */
|