nucleo_f446re_playground/components/app/inc/app.h
2025-06-10 21:57:59 +02:00

22 lines
292 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) __attribute__((noreturn));
#ifdef __cplusplus
} // extern "C" {
#endif // __cplusplus
#endif /* APP_H_ */