audio_controls.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590
  1. /*
  2. * audio control callbacks
  3. *
  4. * (c) Sebastien 2019
  5. * Philippe G. 2019, philippe_44@outlook.com
  6. *
  7. * This software is released under the MIT License.
  8. * https://opensource.org/licenses/MIT
  9. *
  10. */
  11. #include <stdlib.h>
  12. #include <string.h>
  13. #include <unistd.h>
  14. #include "freertos/FreeRTOS.h"
  15. #include "freertos/timers.h"
  16. #include "esp_system.h"
  17. #include "esp_log.h"
  18. #include "cJSON.h"
  19. #include "buttons.h"
  20. #include "config.h"
  21. #include "accessors.h"
  22. #include "audio_controls.h"
  23. typedef esp_err_t (actrls_config_map_handler) (const cJSON * member, actrls_config_t *cur_config,uint32_t offset);
  24. typedef struct {
  25. char * member;
  26. uint32_t offset;
  27. actrls_config_map_handler * handler;
  28. } actrls_config_map_t;
  29. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config);
  30. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config);
  31. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  32. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  33. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  34. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset);
  35. static esp_err_t actrls_init_json(const char *profile_name, bool create);
  36. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press);
  37. static void rotary_timer( TimerHandle_t xTimer );
  38. static const actrls_config_map_t actrls_config_map[] =
  39. {
  40. {"gpio", offsetof(actrls_config_t,gpio), actrls_process_int},
  41. {"debounce", offsetof(actrls_config_t,debounce), actrls_process_int},
  42. {"type", offsetof(actrls_config_t,type), actrls_process_type},
  43. {"pull", offsetof(actrls_config_t,pull), actrls_process_bool},
  44. {"long_press", offsetof(actrls_config_t,long_press),actrls_process_int},
  45. {"shifter_gpio", offsetof(actrls_config_t,shifter_gpio), actrls_process_int},
  46. {"normal", offsetof(actrls_config_t,normal), actrls_process_action},
  47. {"shifted", offsetof(actrls_config_t,shifted), actrls_process_action},
  48. {"longpress", offsetof(actrls_config_t,longpress), actrls_process_action},
  49. {"longshifted", offsetof(actrls_config_t,longshifted), actrls_process_action},
  50. {"", 0, NULL}
  51. };
  52. // BEWARE: the actions below need to stay aligned with the corresponding enum to properly support json parsing
  53. #define EP(x) [x] = #x /* ENUM PRINT */
  54. static const char * actrls_action_s[ ] = { EP(ACTRLS_VOLUP),EP(ACTRLS_VOLDOWN),EP(ACTRLS_TOGGLE),EP(ACTRLS_PLAY),
  55. EP(ACTRLS_PAUSE),EP(ACTRLS_STOP),EP(ACTRLS_REW),EP(ACTRLS_FWD),EP(ACTRLS_PREV),EP(ACTRLS_NEXT),
  56. EP(BCTRLS_UP),EP(BCTRLS_DOWN),EP(BCTRLS_LEFT),EP(BCTRLS_RIGHT),
  57. EP(KNOB_LEFT),EP(KNOB_RIGHT),EP(KNOB_PUSH),
  58. ""} ;
  59. static const char * TAG = "audio controls";
  60. static actrls_config_t *json_config;
  61. cJSON * control_profiles = NULL;
  62. static actrls_t default_controls, current_controls;
  63. static actrls_hook_t *default_hook, *current_hook;
  64. static bool default_raw_controls, current_raw_controls;
  65. static actrls_ir_handler_t *default_ir_handler, *current_ir_handler;
  66. static struct {
  67. bool long_state;
  68. bool volume_lock;
  69. TimerHandle_t timer;
  70. bool click_pending;
  71. int left_count;
  72. } rotary;
  73. static const struct ir_action_map_s{
  74. uint32_t code;
  75. actrls_action_e action;
  76. } ir_action_map[] = {
  77. {0x7689b04f, BCTRLS_DOWN}, {0x7689906f, BCTRLS_LEFT}, {0x7689d02f, BCTRLS_RIGHT}, {0x7689e01f, BCTRLS_UP},
  78. {0x768900ff, ACTRLS_VOLDOWN}, {0x7689807f, ACTRLS_VOLUP},
  79. {0x7689c03f, ACTRLS_PREV}, {0x7689a05f, ACTRLS_NEXT},
  80. {0x768920df, ACTRLS_PAUSE}, {0x768910ef, ACTRLS_PLAY},
  81. {0x00, 0x00},
  82. };
  83. /****************************************************************************************
  84. * This function can be called to map IR codes to default actions
  85. */
  86. bool actrls_ir_action(uint16_t addr, uint16_t cmd) {
  87. uint32_t code = (addr << 16) | cmd;
  88. struct ir_action_map_s const *map = ir_action_map;
  89. while (map->code && map->code != code) map++;
  90. if (map->code && current_controls[map->action]) {
  91. current_controls[map->action](true);
  92. return true;
  93. } else {
  94. return false;
  95. }
  96. }
  97. /****************************************************************************************
  98. *
  99. */
  100. static void ir_handler(uint16_t addr, uint16_t cmd) {
  101. ESP_LOGD(TAG, "recaived IR %04hx:%04hx", addr, cmd);
  102. if (current_ir_handler) current_ir_handler(addr, cmd);
  103. }
  104. /****************************************************************************************
  105. *
  106. */
  107. static void set_ir_gpio(int gpio, char *value) {
  108. if (!strcasecmp(value, "ir") ) {
  109. create_infrared(gpio, ir_handler);
  110. }
  111. }
  112. /****************************************************************************************
  113. *
  114. */
  115. esp_err_t actrls_init(const char *profile_name) {
  116. esp_err_t err = ESP_OK;
  117. char *config = config_alloc_get_default(NVS_TYPE_STR, "rotary_config", NULL, 0);
  118. if (config && *config) {
  119. char *p;
  120. int A = -1, B = -1, SW = -1, longpress = 0;
  121. // parse config
  122. if ((p = strcasestr(config, "A")) != NULL) A = atoi(strchr(p, '=') + 1);
  123. if ((p = strcasestr(config, "B")) != NULL) B = atoi(strchr(p, '=') + 1);
  124. if ((p = strcasestr(config, "SW")) != NULL) SW = atoi(strchr(p, '=') + 1);
  125. if ((p = strcasestr(config, "knobonly")) != NULL) {
  126. p = strchr(p, '=');
  127. int double_press = p ? atoi(p + 1) : 350;
  128. rotary.timer = xTimerCreate("knobTimer", double_press / portTICK_RATE_MS, pdFALSE, NULL, rotary_timer);
  129. longpress = 500;
  130. ESP_LOGI(TAG, "single knob navigation %d", double_press);
  131. } else {
  132. if ((p = strcasestr(config, "volume")) != NULL) rotary.volume_lock = true;
  133. if ((p = strcasestr(config, "longpress")) != NULL) longpress = 1000;
  134. }
  135. // create rotary (no handling of long press)
  136. err = create_rotary(NULL, A, B, SW, longpress, control_rotary_handler) ? ESP_OK : ESP_FAIL;
  137. }
  138. // set infrared GPIO if any
  139. parse_set_GPIO(set_ir_gpio);
  140. if (!err) return actrls_init_json(profile_name, true);
  141. else return err;
  142. }
  143. /****************************************************************************************
  144. *
  145. */
  146. static void control_handler(void *client, button_event_e event, button_press_e press, bool long_press) {
  147. actrls_config_t *key = (actrls_config_t*) client;
  148. actrls_action_detail_t action_detail;
  149. // in raw mode, we just do normal action press *and* release, there is no longpress nor shift
  150. if (current_raw_controls) {
  151. ESP_LOGD(TAG, "calling action %u in raw mode", key->normal[0].action);
  152. if (current_controls[key->normal[0].action]) (*current_controls[key->normal[0].action])(event == BUTTON_PRESSED);
  153. return;
  154. }
  155. switch(press) {
  156. case BUTTON_NORMAL:
  157. if (long_press) action_detail = key->longpress[event == BUTTON_PRESSED ? 0 : 1];
  158. else action_detail = key->normal[event == BUTTON_PRESSED ? 0 : 1];
  159. break;
  160. case BUTTON_SHIFTED:
  161. if (long_press) action_detail = key->longshifted[event == BUTTON_PRESSED ? 0 : 1];
  162. else action_detail = key->shifted[event == BUTTON_PRESSED ? 0 : 1];
  163. break;
  164. default:
  165. action_detail.action = ACTRLS_NONE;
  166. break;
  167. }
  168. ESP_LOGD(TAG, "control gpio:%u press:%u long:%u event:%u action:%u", key->gpio, press, long_press, event, action_detail.action);
  169. // stop here if control hook served the request
  170. if (current_hook && (*current_hook)(key->gpio, action_detail.action, event, press, long_press)) return;
  171. // otherwise process using configuration
  172. if (action_detail.action == ACTRLS_REMAP) {
  173. // remap requested
  174. ESP_LOGD(TAG, "remapping buttons to profile %s",action_detail.name);
  175. cJSON * profile_obj = cJSON_GetObjectItem(control_profiles,action_detail.name);
  176. if (profile_obj) {
  177. actrls_config_t *cur_config = (actrls_config_t *) cJSON_GetStringValue(profile_obj);
  178. if (cur_config) {
  179. ESP_LOGD(TAG,"Remapping all the buttons that are found in the new profile");
  180. while (cur_config->gpio != -1) {
  181. ESP_LOGD(TAG,"Remapping button with gpio %u", cur_config->gpio);
  182. button_remap((void*) cur_config, cur_config->gpio, control_handler, cur_config->long_press, cur_config->shifter_gpio);
  183. cur_config++;
  184. }
  185. } else {
  186. ESP_LOGE(TAG,"Profile %s exists, but is empty. Cannot remap buttons",action_detail.name);
  187. }
  188. } else {
  189. ESP_LOGE(TAG,"Invalid profile name %s. Cannot remap buttons",action_detail.name);
  190. }
  191. } else if (action_detail.action != ACTRLS_NONE) {
  192. ESP_LOGD(TAG, "calling action %u", action_detail.action);
  193. if (current_controls[action_detail.action]) (*current_controls[action_detail.action])(event == BUTTON_PRESSED);
  194. }
  195. }
  196. /****************************************************************************************
  197. *
  198. */
  199. static void control_rotary_handler(void *client, rotary_event_e event, bool long_press) {
  200. actrls_action_e action = ACTRLS_NONE;
  201. bool pressed = true;
  202. // in raw mode, we just pass rotary events
  203. if (current_raw_controls) {
  204. if (event == ROTARY_LEFT) (*current_controls[KNOB_LEFT])(true);
  205. else if (event == ROTARY_RIGHT) (*current_controls[KNOB_RIGHT])(true);
  206. else (*current_controls[KNOB_PUSH])(event == ROTARY_PRESSED);
  207. return;
  208. }
  209. switch(event) {
  210. case ROTARY_LEFT:
  211. if (rotary.timer) {
  212. if (rotary.left_count) {
  213. action = KNOB_LEFT;
  214. // need to add a left button the first time
  215. if (rotary.left_count == 1) (*current_controls[KNOB_LEFT])(true);
  216. }
  217. xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  218. rotary.left_count++;
  219. }
  220. else if (rotary.long_state) action = ACTRLS_PREV;
  221. else if (rotary.volume_lock) action = ACTRLS_VOLDOWN;
  222. else action = KNOB_LEFT;
  223. break;
  224. case ROTARY_RIGHT:
  225. if (rotary.timer) {
  226. if (rotary.left_count == 1) {
  227. action = ACTRLS_PAUSE;
  228. rotary.left_count = 0;
  229. xTimerStop(rotary.timer, 0);
  230. } else action = KNOB_RIGHT;
  231. }
  232. else if (rotary.long_state) action = ACTRLS_NEXT;
  233. else if (rotary.volume_lock) action = ACTRLS_VOLUP;
  234. else action = KNOB_RIGHT;
  235. break;
  236. case ROTARY_PRESSED:
  237. if (rotary.timer) {
  238. if (long_press) action = ACTRLS_PLAY;
  239. else if (rotary.click_pending) {
  240. action = BCTRLS_LEFT;
  241. xTimerStop(rotary.timer, 0);
  242. }
  243. else xTimerStart(rotary.timer, 20 / portTICK_RATE_MS);
  244. rotary.click_pending = !rotary.click_pending;
  245. }
  246. else if (long_press) rotary.long_state = !rotary.long_state;
  247. else if (rotary.volume_lock) action = ACTRLS_TOGGLE;
  248. else action = KNOB_PUSH;
  249. break;
  250. default:
  251. break;
  252. }
  253. if (action != ACTRLS_NONE) (*current_controls[action])(pressed);
  254. }
  255. /****************************************************************************************
  256. *
  257. */
  258. static void rotary_timer( TimerHandle_t xTimer ) {
  259. if (rotary.click_pending) {
  260. (*current_controls[KNOB_PUSH])(true);
  261. rotary.click_pending = false;
  262. } else if (rotary.left_count) {
  263. if (rotary.left_count == 1) (*current_controls[KNOB_LEFT])(true);
  264. rotary.left_count = 0;
  265. }
  266. }
  267. /****************************************************************************************
  268. *
  269. */
  270. static actrls_action_e actrls_parse_action_json(const char * name){
  271. actrls_action_e action = ACTRLS_NONE;
  272. if(!strcasecmp("ACTRLS_NONE",name)) return ACTRLS_NONE;
  273. for(int i=0;i<ACTRLS_MAX && actrls_action_s[i][0]!='\0' ;i++){
  274. if(!strcmp(actrls_action_s[i], name)){
  275. return (actrls_action_e) i;
  276. }
  277. }
  278. // Action name wasn't recognized.
  279. // Check if this is a profile name that has a match in nvs
  280. ESP_LOGD(TAG,"unknown action %s, trying to find matching profile ", name);
  281. cJSON * existing = cJSON_GetObjectItem(control_profiles, name);
  282. if (!existing) {
  283. ESP_LOGD(TAG,"Loading new audio control profile with name: %s", name);
  284. if (actrls_init_json(name, false) == ESP_OK) {
  285. action = ACTRLS_REMAP;
  286. }
  287. } else {
  288. ESP_LOGD(TAG,"Existing profile %s was referenced", name);
  289. action = ACTRLS_REMAP;
  290. }
  291. return action;
  292. }
  293. /****************************************************************************************
  294. *
  295. */
  296. static esp_err_t actrls_process_int (const cJSON * member, actrls_config_t *cur_config,uint32_t offset){
  297. esp_err_t err = ESP_OK;
  298. ESP_LOGD(TAG,"Processing int member");
  299. int *value = (int*)((char*) cur_config + offset);
  300. *value = member->valueint;
  301. return err;
  302. }
  303. /****************************************************************************************
  304. *
  305. */
  306. static esp_err_t actrls_process_type (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  307. esp_err_t err = ESP_OK;
  308. ESP_LOGD(TAG,"Processing type member");
  309. int *value = (int *)((char*) cur_config + offset);
  310. if (member->type == cJSON_String) {
  311. *value =
  312. !strcmp(member->valuestring,
  313. "BUTTON_LOW") ?
  314. BUTTON_LOW : BUTTON_HIGH;
  315. } else {
  316. ESP_LOGE(TAG,
  317. "Button type value expected string value of BUTTON_LOW or BUTTON_HIGH, none found");
  318. err=ESP_FAIL;
  319. }
  320. return err;
  321. }
  322. /****************************************************************************************
  323. *
  324. */
  325. static esp_err_t actrls_process_bool (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  326. esp_err_t err = ESP_OK;
  327. if (!member) {
  328. ESP_LOGE(TAG,"Null json member pointer!");
  329. err = ESP_FAIL;
  330. } else {
  331. ESP_LOGD(TAG,"Processing bool member ");
  332. if (cJSON_IsBool(member)) {
  333. bool*value = (bool*)((char*) cur_config + offset);
  334. *value = cJSON_IsTrue(member);
  335. } else {
  336. ESP_LOGE(TAG,"Member %s is not a boolean", member->string?member->string:"unknown");
  337. err = ESP_FAIL;
  338. }
  339. }
  340. return err;
  341. }
  342. /****************************************************************************************
  343. *
  344. */
  345. static esp_err_t actrls_process_action (const cJSON * member, actrls_config_t *cur_config, uint32_t offset){
  346. esp_err_t err = ESP_OK;
  347. cJSON * button_action= cJSON_GetObjectItemCaseSensitive(member, "pressed");
  348. actrls_action_detail_t*value = (actrls_action_detail_t*)((char *)cur_config + offset);
  349. if (button_action != NULL) {
  350. value[0].action = actrls_parse_action_json( button_action->valuestring);
  351. if(value[0].action == ACTRLS_REMAP){
  352. value[0].name = strdup(button_action->valuestring);
  353. }
  354. }
  355. button_action = cJSON_GetObjectItemCaseSensitive(member, "released");
  356. if (button_action != NULL) {
  357. value[1].action = actrls_parse_action_json( button_action->valuestring);
  358. if (value[1].action == ACTRLS_REMAP){
  359. value[1].name = strdup(button_action->valuestring);
  360. }
  361. }
  362. return err;
  363. }
  364. /****************************************************************************************
  365. *
  366. */
  367. static esp_err_t actrls_process_member(const cJSON * member, actrls_config_t *cur_config) {
  368. esp_err_t err = ESP_OK;
  369. const actrls_config_map_t * h=actrls_config_map;
  370. char * str = cJSON_Print(member);
  371. while (h->handler && strcmp(member->string, h->member)) { h++; }
  372. if (h->handler) {
  373. ESP_LOGD(TAG,"found handler for member %s, json value %s", h->member,str?str:"");
  374. err = h->handler(member, cur_config, h->offset);
  375. } else {
  376. err = ESP_FAIL;
  377. ESP_LOGE(TAG, "Unknown json structure member : %s", str?str:"");
  378. }
  379. if (str) free(str);
  380. return err;
  381. }
  382. /****************************************************************************************
  383. *
  384. */
  385. static esp_err_t actrls_process_button(const cJSON * button, actrls_config_t *cur_config) {
  386. esp_err_t err= ESP_OK;
  387. const cJSON *member;
  388. cJSON_ArrayForEach(member, button)
  389. {
  390. ESP_LOGD(TAG,"Processing member %s. ", member->string);
  391. esp_err_t loc_err = actrls_process_member(member, cur_config);
  392. err = (err == ESP_OK) ? loc_err : err;
  393. }
  394. return err;
  395. }
  396. /****************************************************************************************
  397. *
  398. */
  399. static actrls_config_t * actrls_init_alloc_structure(const cJSON *buttons, const char * name){
  400. int member_count = 0;
  401. const cJSON *button;
  402. actrls_config_t * json_config=NULL;
  403. // Check if the main profiles array was created
  404. if(!control_profiles){
  405. control_profiles = cJSON_CreateObject();
  406. }
  407. ESP_LOGD(TAG,"Counting the number of buttons definition");
  408. cJSON_ArrayForEach(button, buttons) {
  409. member_count++;
  410. }
  411. ESP_LOGD(TAG, "config contains %u button definitions", member_count);
  412. if (member_count != 0) {
  413. json_config = calloc(sizeof(actrls_config_t) * (member_count + 1), 1);
  414. if (json_config){
  415. json_config[member_count].gpio = -1;
  416. } else {
  417. ESP_LOGE(TAG,"Unable to allocate memory to hold configuration for %u buttons ",member_count);
  418. }
  419. } else {
  420. ESP_LOGE(TAG,"No button found in configuration structure");
  421. }
  422. // we're cheating here; we're going to store the control profile
  423. // pointer as a string reference; this will prevent cJSON
  424. // from trying to free the structure if we ever want to free the object
  425. cJSON * new_profile = cJSON_CreateStringReference((const char *)json_config);
  426. cJSON_AddItemToObject(control_profiles, name, new_profile);
  427. return json_config;
  428. }
  429. /****************************************************************************************
  430. *
  431. */
  432. static void actrls_defaults(actrls_config_t *config) {
  433. config->type = BUTTON_LOW;
  434. config->pull = false;
  435. config->debounce = 0;
  436. config->long_press = 0;
  437. config->shifter_gpio = -1;
  438. config->normal[0].action = config->normal[1].action = ACTRLS_NONE;
  439. config->longpress[0].action = config->longpress[1].action = ACTRLS_NONE;
  440. config->shifted[0].action = config->shifted[1].action = ACTRLS_NONE;
  441. config->longshifted[0].action = config->longshifted[1].action = ACTRLS_NONE;
  442. }
  443. /****************************************************************************************
  444. *
  445. */
  446. static esp_err_t actrls_init_json(const char *profile_name, bool create) {
  447. esp_err_t err = ESP_OK;
  448. actrls_config_t *cur_config = NULL;
  449. actrls_config_t *config_root = NULL;
  450. char *config;
  451. const cJSON *button;
  452. if (!profile_name || !*profile_name) return ESP_OK;
  453. config = config_alloc_get_default(NVS_TYPE_STR, profile_name, NULL, 0);
  454. if(!config) return ESP_FAIL;
  455. ESP_LOGD(TAG,"Parsing JSON structure %s", config);
  456. cJSON *buttons = cJSON_Parse(config);
  457. if (buttons == NULL) {
  458. ESP_LOGE(TAG,"JSON Parsing failed for %s", config);
  459. err = ESP_FAIL;
  460. } else {
  461. ESP_LOGD(TAG,"Json parsing completed");
  462. if (cJSON_IsArray(buttons)) {
  463. ESP_LOGD(TAG,"configuration is an array as expected");
  464. cur_config =config_root= actrls_init_alloc_structure(buttons, profile_name);
  465. if(!cur_config) {
  466. ESP_LOGE(TAG,"Config buffer was empty. ");
  467. cJSON_Delete(buttons);
  468. return ESP_FAIL;
  469. }
  470. ESP_LOGD(TAG,"Processing button definitions. ");
  471. cJSON_ArrayForEach(button, buttons){
  472. char * str = cJSON_Print(button);
  473. ESP_LOGD(TAG,"Processing %s. ", str?str:"");
  474. if(str){
  475. free(str);
  476. }
  477. actrls_defaults(cur_config);
  478. esp_err_t loc_err = actrls_process_button(button, cur_config);
  479. err = (err == ESP_OK) ? loc_err : err;
  480. if (loc_err == ESP_OK) {
  481. if (create) button_create((void*) cur_config, cur_config->gpio,cur_config->type,
  482. cur_config->pull,cur_config->debounce, control_handler,
  483. cur_config->long_press, cur_config->shifter_gpio);
  484. } else {
  485. ESP_LOGE(TAG,"Error parsing button structure. Button will not be registered.");
  486. }
  487. cur_config++;
  488. }
  489. } else {
  490. ESP_LOGE(TAG,"Invalid configuration; array is expected and none received in %s ", config);
  491. }
  492. cJSON_Delete(buttons);
  493. }
  494. // Now update the global json_config object. If we are recursively processing menu structures,
  495. // the last init that completes will assigh the first json config object found, which will match
  496. // the default config from nvs.
  497. json_config = config_root;
  498. return err;
  499. }
  500. /****************************************************************************************
  501. *
  502. */
  503. void actrls_set_default(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  504. memcpy(default_controls, controls, sizeof(actrls_t));
  505. memcpy(current_controls, default_controls, sizeof(actrls_t));
  506. default_hook = current_hook = hook;
  507. default_raw_controls = current_raw_controls = raw_controls;
  508. default_ir_handler = current_ir_handler = ir_handler;
  509. }
  510. /****************************************************************************************
  511. *
  512. */
  513. void actrls_set(const actrls_t controls, bool raw_controls, actrls_hook_t *hook, actrls_ir_handler_t *ir_handler) {
  514. memcpy(current_controls, controls, sizeof(actrls_t));
  515. current_hook = hook;
  516. current_raw_controls = raw_controls;
  517. current_ir_handler = ir_handler;
  518. }
  519. /****************************************************************************************
  520. *
  521. */
  522. void actrls_unset(void) {
  523. memcpy(current_controls, default_controls, sizeof(actrls_t));
  524. current_hook = default_hook;
  525. current_raw_controls = default_raw_controls;
  526. current_ir_handler = default_ir_handler;
  527. }