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