mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-27 03:49:58 -07:00
10 lines
181 B
C++
10 lines
181 B
C++
#include "ibutton-app.h"
|
|
|
|
// app enter function
|
|
extern "C" int32_t ibutton_app(void* p) {
|
|
iButtonApp* app = new iButtonApp();
|
|
app->run(p);
|
|
delete app;
|
|
|
|
return 255;
|
|
} |