23 lines
280 B
C
23 lines
280 B
C
/*
|
|
* app.h
|
|
*
|
|
* Created on: Aug 29, 2019
|
|
* Author: abody
|
|
*/
|
|
|
|
#ifndef APP_H_
|
|
#define APP_H_
|
|
|
|
#include <inttypes.h>
|
|
#include "main.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void MainLoop();
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C" {
|
|
#endif // __cplusplus
|
|
#endif /* APP_H_ */
|