audio_controls.c 21 KB

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