ibutton.cpp 181 B

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