11 lines
197 B
C++
11 lines
197 B
C++
|
#include "lfrfid-debug-app.h"
|
||
|
|
||
|
// app enter function
|
||
|
extern "C" int32_t lfrfid_debug_app(void* p) {
|
||
|
LfRfidDebugApp* app = new LfRfidDebugApp();
|
||
|
app->run();
|
||
|
delete app;
|
||
|
|
||
|
return 0;
|
||
|
}
|