nucleo_f446re_playground/components/app/inc/application.h
2025-06-09 18:13:05 +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 MainLoop(void) __attribute__((noreturn));
#ifdef __cplusplus
} // extern "C" {
#endif // __cplusplus
#endif /* APP_H_ */