2022-01-05 19:10:18 +03:00
|
|
|
#include "lfrfid_app.h"
|
2021-06-29 00:42:30 +10:00
|
|
|
|
|
|
|
// app enter function
|
2021-06-30 22:02:46 +10:00
|
|
|
extern "C" int32_t lfrfid_app(void* args) {
|
2021-06-29 00:42:30 +10:00
|
|
|
LfRfidApp* app = new LfRfidApp();
|
2021-06-30 22:02:46 +10:00
|
|
|
app->run(args);
|
2021-06-29 00:42:30 +10:00
|
|
|
delete app;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|