BEEP-8 SDK 1.0.0
Loading...
Searching...
No Matches
irq.h
Go to the documentation of this file.
1
17#pragma once
18#ifdef __cplusplus
19extern "C" {
20#endif
21
22#define B8_IRQ_NUM_OF_INTERRUPTS (32)
23
24#if B8_IRQ_NUM_OF_INTERRUPTS > 32
25#error Too many interrupts.
26#endif
27
28#define B8_IRQ_TMR0 (1)
29#define B8_IRQ_TMR1 (2)
30#define B8_IRQ_TMR2 (3)
31#define B8_IRQ_TMR3 (4)
32#define B8_IRQ_VBLK (5)
33#define B8_IRQ_APUS (6)
34#define B8_IRQ_UNDF (7)
35#define B8_IRQ_DABT (8)
36
37#ifdef __cplusplus
38}
39#endif