Make it work

This commit is contained in:
Attila Body 2025-06-10 21:57:59 +02:00
parent 8e9b69b87a
commit 4e1f01c4d4
Signed by: abody
GPG key ID: BD0C6214E68FB5CF
25 changed files with 772 additions and 180 deletions

22
components/app/inc/app.h Normal file
View file

@ -0,0 +1,22 @@
/*
* 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_ */