mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-12-30 06:33:07 +00:00
11 lines
175 B
C++
11 lines
175 B
C++
|
#include "lfrfid-app.h"
|
||
|
|
||
|
// app enter function
|
||
|
extern "C" int32_t lfrfid_app(void* p) {
|
||
|
LfRfidApp* app = new LfRfidApp();
|
||
|
app->run();
|
||
|
delete app;
|
||
|
|
||
|
return 0;
|
||
|
}
|