mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-11 07:24:20 +00:00
10 lines
No EOL
184 B
C++
10 lines
No EOL
184 B
C++
#include "accessor-app.h"
|
|
|
|
// app enter function
|
|
extern "C" int32_t app_accessor(void* p) {
|
|
AccessorApp* app = new AccessorApp();
|
|
app->run();
|
|
delete app;
|
|
|
|
return 255;
|
|
} |