nucleo_f446re_playground/components/app/inc/app.h
2025-06-11 00:05:54 +02:00

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_ */