22 lines
305 B
C
22 lines
305 B
C
/*
|
|
* app.h
|
|
*
|
|
* Created on: Aug 29, 2019
|
|
* Author: abody
|
|
*/
|
|
|
|
#ifndef APP_H_
|
|
#define APP_H_
|
|
|
|
#include <inttypes.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void app_main(void const *param) __attribute__((noreturn));
|
|
|
|
#ifdef __cplusplus
|
|
} // extern "C" {
|
|
#endif // __cplusplus
|
|
#endif /* APP_H_ */
|