Kinda works
This commit is contained in:
parent
f3d345e2e3
commit
662a7a9b12
40 changed files with 2851 additions and 26 deletions
25
Application/interrupt_handlers.h
Normal file
25
Application/interrupt_handlers.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* interrupt.h
|
||||
*
|
||||
* Created on: Aug 29, 2019
|
||||
* Author: abody
|
||||
*/
|
||||
|
||||
#ifndef INTERRUPT_HANDLERS_H_
|
||||
#define INTERRUPT_HANDLERS_H_
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
void HandleLcdDmaIrq();
|
||||
|
||||
void HandleConsoleRxDmaIrq();
|
||||
void HandleConsoleTxDmaIrq();
|
||||
void HandleConsoleUsartIrq();
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
#endif /* INTERRUPT_HANDLERS_H_ */
|
Loading…
Add table
Add a link
Reference in a new issue