15 lines
192 B
C
15 lines
192 B
C
#ifndef __APP_H_INCLUDED__
|
|
#define __APP_H_INCLUDED__
|
|
|
|
#ifdef __cplusplus
|
|
extern"C" {
|
|
#endif
|
|
|
|
void App();
|
|
void HandleSpiDmaIrq();
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* __APP_H_INCLUDED__ */
|