mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 13:03:13 +00:00
10 lines
No EOL
181 B
C++
10 lines
No EOL
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;
|
|
} |