App accessor: init (#433)

This commit is contained in:
SG
2021-04-28 22:13:25 +10:00
committed by GitHub
parent dfcf0ea0eb
commit c3350990c2
15 changed files with 779 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#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;
}