YAHAL
Yet Another Hardware Abstraction Library
Loading...
Searching...
No Matches
irq_dispatcher.h
1#ifndef _IRQ_DISPATCHER_H_
2#define _IRQ_DISPATCHER_H_
3
4extern "C" {
5 void Default_EUSCI_Handler(void);
6
7 void EUSCIA0_IRQHandler(void);
8 void EUSCIA1_IRQHandler(void);
9 void EUSCIA2_IRQHandler(void);
10 void EUSCIA3_IRQHandler(void);
11 void EUSCIB0_IRQHandler(void);
12 void EUSCIB1_IRQHandler(void);
13 void EUSCIB2_IRQHandler(void);
14 void EUSCIB3_IRQHandler(void);
15}
16
18public:
19
20 // The linker would ignore this object file, so by
21 // calling this dummy method we can make sure that
22 // the code in irq_dispatcher.cpp is linked in!
23 static void link_in();
24};
25
26#endif // _IRQ_DISPATCHER_H_
27