lfrfid_debug_app_launcher.cpp 197 B

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