lfrfid-app-launcher.cpp 182 B

12345678910
  1. #include "lfrfid-app.h"
  2. // app enter function
  3. extern "C" int32_t lfrfid_app(void* args) {
  4. LfRfidApp* app = new LfRfidApp();
  5. app->run(args);
  6. delete app;
  7. return 0;
  8. }