lfrfid_debug_app_launcher.cpp 212 B

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