1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417 |
- #include "cmd_config.h"
- #include "accessors.h"
- #include "adac.h"
- #include "argtable3/argtable3.h"
- #include "cJSON.h"
- #include "cmd_i2ctools.h"
- #include "cmd_system.h"
- #include "esp_log.h"
- #include "messaging.h"
- #include "platform_config.h"
- #include "platform_console.h"
- #include "stdio.h"
- #include "string.h"
- #include "tools.h"
- #include <stdio.h>
- const char *desc_squeezelite = "Squeezelite Options";
- const char *desc_dac = "DAC Options";
- const char *desc_cspotc = "Spotify (cSpot) Options";
- const char *desc_preset = "Preset Options";
- const char *desc_spdif = "SPDIF Options";
- const char *desc_audio = "General Audio Options";
- const char *desc_bt_source = "Bluetooth Audio Output Options";
- const char *desc_rotary = "Rotary Control";
- const char *desc_ledvu = "Led Strip Options";
- extern const struct adac_s *dac_set[];
- extern void equalizer_set_loudness(uint8_t);
- extern void register_optional_cmd(void);
- #define CODECS_BASE "flac|pcm|mp3|ogg"
- #if NO_FAAD
- #define CODECS_AAC ""
- #else
- #define CODECS_AAC "|aac"
- #endif
- #if FFMPEG
- #define CODECS_FF "|wma|alac"
- #else
- #define CODECS_FF ""
- #endif
- #if DSD
- #define CODECS_DSD "|dsd"
- #else
- #define CODECS_DSD ""
- #endif
- #define CODECS_MP3 "|mad|mpg"
- #if !defined(MODEL_NAME)
- #define MODEL_NAME SqueezeLite
- #endif
- #ifndef QUOTE
- #define QUOTE(name) #name
- #define STR(macro) QUOTE(macro)
- #endif
- #ifndef MODEL_NAME_STRING
- #define MODEL_NAME_STRING STR(MODEL_NAME)
- #endif
- #define CODECS CODECS_BASE CODECS_AAC CODECS_FF CODECS_DSD CODECS_MP3
- #define NOT_OUTPUT "has input capabilities only"
- #define NOT_GPIO "is not a GPIO"
- typedef enum {
- SEARCHING_FOR_BT,
- SEARCHING_FOR_NAME,
- SEARCHING_FOR_NAME_START,
- SEARCHING_FOR_NAME_END,
- SEARCHING_FOR_BT_CMD_END,
- FINISHING
- } parse_state_t;
- static const char *TAG = "cmd_config";
- extern struct arg_end *getParmsEnd(struct arg_hdr **argtable);
- static struct {
- struct arg_str *model_name;
- struct arg_int *clock;
- struct arg_int *wordselect;
- struct arg_int *data;
- struct arg_int *mute_gpio;
- struct arg_lit *mute_level;
- struct arg_int *dac_sda;
- struct arg_int *dac_scl;
- struct arg_int *dac_i2c;
- struct arg_lit *clear;
- struct arg_end *end;
- } i2s_args;
- static struct {
- struct arg_str *model_config;
- struct arg_end *end;
- } known_model_args;
- static struct {
- struct arg_rem *rem;
- struct arg_int *A;
- struct arg_int *B;
- struct arg_int *SW;
- struct arg_lit *volume_lock;
- struct arg_lit *longpress;
- struct arg_lit *knobonly;
- struct arg_int *timer;
- struct arg_lit *clear;
- struct arg_lit *raw_mode;
- struct arg_end *end;
- } rotary_args;
- static struct {
- struct arg_str *type;
- struct arg_int *length;
- struct arg_int *gpio;
- struct arg_int * scale;
- struct arg_lit *clear;
- struct arg_end *end;
- } ledvu_args;
- static struct {
- struct arg_str *sink_name;
- struct arg_str *pin_code;
-
-
- struct arg_end *end;
- } bt_source_args;
- static struct {
- struct arg_str *deviceName;
-
- struct arg_int *bitrate;
- struct arg_int *zeroConf;
- struct arg_end *end;
- } cspot_args;
- static struct {
- struct arg_int *clock;
- struct arg_int *wordselect;
- struct arg_int *data;
- struct arg_lit *clear;
- struct arg_end *end;
- } spdif_args;
- static struct {
- struct arg_str *jack_behavior;
- struct arg_int *loudness;
- struct arg_end *end;
- } audio_args;
- static struct {
- struct arg_str *output_device;
- struct arg_str *name;
- struct arg_str *server;
- struct arg_str *buffers;
- struct arg_str *codecs;
- struct arg_int *timeout;
- struct arg_str *log_level;
- #if IR
- struct arg_str *log_level_ir;
- #endif
-
-
-
-
-
- struct arg_str *mac_addr;
- struct arg_str *model_name;
- struct arg_lit *header_format;
- struct arg_str *rates;
- #if RESAMPLE
- struct arg_lit *resample;
- struct arg_str *resample_parms;
- #endif
- #if RESAMPLE16
- struct arg_lit *resample;
- struct arg_str *resample_parms;
- #endif
- struct arg_int *rate;
- struct arg_end *end;
- } squeezelite_args;
- int is_gpio(struct arg_int *gpio, FILE *f, int *gpio_out, bool mandatory, bool output) {
- int res = 0;
- const char *name = gpio->hdr.longopts ? gpio->hdr.longopts : gpio->hdr.glossary;
- *gpio_out = -1;
- int t_gpio = gpio->ival[0];
- if (gpio->count == 0) {
- if (mandatory) {
- fprintf(f, "Missing: %s\n", name);
- res++;
- }
- } else if ((output && !GPIO_IS_VALID_OUTPUT_GPIO(t_gpio)) || (!GPIO_IS_VALID_GPIO(t_gpio))) {
- fprintf(f, "Invalid %s gpio: [%d] %s\n", name, t_gpio, GPIO_IS_VALID_GPIO(t_gpio) ? NOT_OUTPUT : NOT_GPIO);
- res++;
- } else {
- *gpio_out = t_gpio;
- }
- return res;
- }
- int is_output_gpio(struct arg_int *gpio, FILE *f, int *gpio_out, bool mandatory) {
- return is_gpio(gpio, f, gpio_out, mandatory, true);
- }
- int check_missing_parm(struct arg_int *int_parm, FILE *f) {
- int res = 0;
- const char *name = int_parm->hdr.longopts ? int_parm->hdr.longopts : int_parm->hdr.glossary;
- if (int_parm->count == 0) {
- fprintf(f, "Missing: %s\n", name);
- res++;
- }
- return res;
- }
- char *strip_bt_name(char *opt_str) {
- if (!opt_str || strlen(opt_str) == 0) {
- ESP_LOGW(TAG, "strip_bt_name: opt_str is NULL");
- return NULL;
- }
- char *result = malloc_init_external(strlen(opt_str) + 1);
- char *str = strdup_psram(opt_str);
- const char *output_marker = " -o";
- if (!result) {
- ESP_LOGE(TAG, "Error allocating memory for result.");
- return opt_str;
- }
- if (!str) {
- ESP_LOGE(TAG, "Error duplicating command line string.");
- return opt_str;
- }
- bool quoted = false;
- parse_state_t state = SEARCHING_FOR_BT;
- char *start = strstr(str, output_marker);
- if (start) {
- ESP_LOGV(TAG, "Found output option : %s\n", start);
- start += strlen(output_marker);
- strncpy(result, str, (size_t)(start - str));
- char *pch = strtok(start, " ");
- while (pch) {
- ESP_LOGV(TAG, "Current output: %s\n[%s]", result, pch);
- switch (state) {
- case SEARCHING_FOR_BT:
- if (strcasestr(pch, "BT")) {
- state = SEARCHING_FOR_NAME;
- quoted = strcasestr(pch, "BT") != NULL;
- ESP_LOGV(TAG, " - fount BT Start %s", quoted ? "quoted" : "");
- } else {
- ESP_LOGV(TAG, " - Searching for BT, Ignoring");
- }
- strcat(result, " ");
- strcat(result, pch);
- break;
- case SEARCHING_FOR_NAME:
- if (strcasestr(pch, "name") || strcasestr(pch, "n")) {
- ESP_LOGV(TAG, " - Found name tag");
- state = SEARCHING_FOR_NAME_START;
- } else {
- strcat(result, " ");
- strcat(result, pch);
- ESP_LOGV(TAG, " - Searching for name - added ");
- ;
- }
- break;
- case SEARCHING_FOR_NAME_START:
- ESP_LOGV(TAG, " - Name start");
- state = SEARCHING_FOR_NAME_END;
- break;
- case SEARCHING_FOR_NAME_END:
- if (strcasestr(pch, "\"")) {
- ESP_LOGV(TAG, " - got quoted string");
- state = FINISHING;
- } else if (pch[0] == '-') {
- strcat(result, " ");
- strcat(result, pch);
- ESP_LOGV(TAG, " - got parameter marker");
- state = quoted ? SEARCHING_FOR_BT_CMD_END : FINISHING;
- } else {
- ESP_LOGV(TAG, " - name continued");
- }
- break;
- case SEARCHING_FOR_BT_CMD_END:
- ESP_LOGV(TAG, " - looking for quoted BT cmd end");
- if (strcasestr(pch, "\"")) {
- ESP_LOGV(TAG, " - got quote termination");
- state = FINISHING;
- }
- strcat(result, " ");
- strcat(result, pch);
- break;
- case FINISHING:
- strcat(result, " ");
- strcat(result, pch);
- break;
- default:
- break;
- }
- pch = strtok(NULL, " ");
- ESP_LOGV(TAG, "\n");
- }
- } else {
- ESP_LOGE(TAG, "output option not found in %s\n", str);
- strcpy(result, str);
- }
- ESP_LOGV(TAG, "Result commmand : %s\n", result);
- free(str);
- return result;
- }
- static int do_bt_source_cmd(int argc, char **argv) {
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&bt_source_args);
- char *buf = NULL;
- size_t buf_size = 0;
-
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, bt_source_args.end, desc_bt_source);
- fclose(f);
- return 1;
- }
- if (bt_source_args.sink_name->count > 0) {
- err = config_set_value(NVS_TYPE_STR, "a2dp_sink_name", bt_source_args.sink_name->sval[0]);
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error setting Bluetooth audio device name %s. %s\n", bt_source_args.sink_name->sval[0], esp_err_to_name(err));
- } else {
- fprintf(f, "Bluetooth audio device name changed to %s\n", bt_source_args.sink_name->sval[0]);
- }
- char *squeezelite_cmd = config_alloc_get_default(NVS_TYPE_STR, "autoexec1", NULL, 0);
- if (squeezelite_cmd && strstr(squeezelite_cmd, " -o ")) {
- char *new_cmd = strip_bt_name(squeezelite_cmd);
- if (strcmp(new_cmd, squeezelite_cmd) != 0) {
- fprintf(f, "Replacing old squeezelite command [%s] with [%s].\n", squeezelite_cmd, new_cmd);
- config_set_value(NVS_TYPE_STR, "autoexec1", new_cmd);
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error updating squeezelite command line options . %s\n", esp_err_to_name(err));
- }
- }
- free(squeezelite_cmd);
- free(new_cmd);
- }
- }
- if (bt_source_args.pin_code->count > 0) {
- const char *v = bt_source_args.pin_code->sval[0];
- bool bInvalid = false;
- for (int i = 0; i < strlen(v) && !bInvalid; i++) {
- if (v[i] < '0' || v[i] > '9') {
- bInvalid = true;
- }
- }
- if (bInvalid || strlen(bt_source_args.pin_code->sval[0]) > 16 || strlen(bt_source_args.pin_code->sval[0]) < 4) {
- nerrors++;
- fprintf(f, "Pin code %s invalid. Should be numbers only with length between 4 and 16 characters. \n", bt_source_args.pin_code->sval[0]);
- } else {
- err = config_set_value(NVS_TYPE_STR, "a2dp_spin", bt_source_args.pin_code->sval[0]);
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error setting Bluetooth source pin to %s. %s\n", bt_source_args.pin_code->sval[0], esp_err_to_name(err));
- } else {
- fprintf(f, "Bluetooth source pin changed to %s\n", bt_source_args.pin_code->sval[0]);
- }
- }
- }
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static int do_audio_cmd(int argc, char **argv) {
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&audio_args);
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, audio_args.end, desc_audio);
- fclose(f);
- return 1;
- }
- err = ESP_OK;
- if (audio_args.loudness->count > 0) {
- char p[4] = {0};
- int loudness_val = audio_args.loudness->ival[0];
- if (loudness_val < 0 || loudness_val > 10) {
- nerrors++;
- fprintf(f, "Invalid loudness value %d. Valid values are between 0 and 10.\n", loudness_val);
- }
-
- else {
- itoa(loudness_val, p, 10);
- err = config_set_value(NVS_TYPE_STR, "loudness", p);
- }
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error setting Loudness value %s. %s\n", p, esp_err_to_name(err));
- } else {
- fprintf(f, "Loudness changed to %s\n", p);
- equalizer_set_loudness(loudness_val);
- }
- }
- if (audio_args.jack_behavior->count > 0) {
- err = ESP_OK;
- if (strcasecmp(audio_args.jack_behavior->sval[0], "Headphones") == 0) {
- err = config_set_value(NVS_TYPE_STR, "jack_mutes_amp", "y");
- } else if (strcasecmp(audio_args.jack_behavior->sval[0], "Subwoofer") == 0) {
- err = config_set_value(NVS_TYPE_STR, "jack_mutes_amp", "n");
- } else {
- nerrors++;
- fprintf(f, "Unknown Audio Jack Behavior %s.\n", audio_args.jack_behavior->sval[0]);
- }
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error setting Audio Jack Behavior %s. %s\n", audio_args.jack_behavior->sval[0], esp_err_to_name(err));
- } else {
- fprintf(f, "Audio Jack Behavior changed to %s\n", audio_args.jack_behavior->sval[0]);
- }
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static int do_spdif_cmd(int argc, char **argv) {
- i2s_platform_config_t i2s_dac_pin = {
- .i2c_addr = -1,
- .sda = -1,
- .scl = -1,
- .mute_gpio = -1,
- .mute_level = -1};
- if (is_spdif_config_locked()) {
- cmd_send_messaging(argv[0], MESSAGING_ERROR, "SPDIF Configuration is locked on this platform\n");
- return 1;
- }
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&spdif_args);
- if (spdif_args.clear->count) {
- cmd_send_messaging(argv[0], MESSAGING_WARNING, "SPDIF config cleared\n");
- config_set_value(NVS_TYPE_STR, "spdif_config", "");
- return 0;
- }
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, spdif_args.end, desc_dac);
- fclose(f);
- return 1;
- }
- nerrors += is_output_gpio(spdif_args.clock, f, &i2s_dac_pin.pin.bck_io_num, true);
- nerrors += is_output_gpio(spdif_args.wordselect, f, &i2s_dac_pin.pin.ws_io_num, true);
- nerrors += is_output_gpio(spdif_args.data, f, &i2s_dac_pin.pin.data_out_num, true);
- if (!nerrors) {
- fprintf(f, "Storing SPDIF parameters.\n");
- nerrors += (config_spdif_set(&i2s_dac_pin) != ESP_OK);
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static int do_rotary_cmd(int argc, char **argv) {
- rotary_struct_t rotary = {.A = -1, .B = -1, .SW = -1, .longpress = 0, .knobonly = 0, .volume_lock = false};
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&rotary_args);
- if (rotary_args.clear->count) {
- cmd_send_messaging(argv[0], MESSAGING_WARNING, "rotary config cleared\n");
- config_set_value(NVS_TYPE_STR, "rotary_config", "");
- return 0;
- }
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, rotary_args.end, desc_rotary);
- fclose(f);
- return 1;
- }
- nerrors += is_gpio(rotary_args.A, f, &rotary.A, true, false);
- nerrors += is_gpio(rotary_args.B, f, &rotary.B, true, false);
- nerrors += is_gpio(rotary_args.SW, f, &rotary.SW, false, false);
- if (rotary_args.knobonly->count > 0 && (rotary_args.volume_lock->count > 0 || rotary_args.longpress->count > 0)) {
- fprintf(f, "error: Cannot use volume lock or longpress option when knob only option selected\n");
- nerrors++;
- }
- if (rotary_args.timer->count > 0 && rotary_args.timer->ival[0] < 0) {
- fprintf(f, "error: knob only timer should be greater than or equal to zero.\n");
- nerrors++;
- } else {
- rotary.timer = rotary_args.timer->count > 0 ? rotary_args.timer->ival[0] : 0;
- }
- rotary.knobonly = rotary_args.knobonly->count > 0;
- rotary.volume_lock = rotary_args.volume_lock->count > 0;
- rotary.longpress = rotary_args.longpress->count > 0;
- if (!nerrors) {
- fprintf(f, "Storing rotary parameters.\n");
- nerrors += (config_rotary_set(&rotary) != ESP_OK);
- }
- if (!nerrors) {
- fprintf(f, "Storing raw mode parameter.\n");
- nerrors += (config_set_value(NVS_TYPE_STR, "lms_ctrls_raw", rotary_args.raw_mode->count > 0 ? "Y" : "N") != ESP_OK);
- if (nerrors > 0) {
- fprintf(f, "error: Unable to store raw mode parameter.\n");
- }
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static int is_valid_gpio_number(int gpio, const char *name, FILE *f, bool mandatory, struct arg_int *target, bool output) {
- bool invalid = (!GPIO_IS_VALID_GPIO(gpio) || (output && !GPIO_IS_VALID_OUTPUT_GPIO(gpio)));
- if (invalid && mandatory && gpio != -1) {
- fprintf(f, "Error: Invalid mandatory gpio %d for %s\n", gpio, name);
- return 1;
- }
- if (target && !invalid) {
- target->count = 1;
- target->ival[0] = gpio;
- }
- return 0;
- }
- #ifdef CONFIG_CSPOT_SINK
- static int do_cspot_config(int argc, char **argv) {
- int nerrors = arg_parse_msg(argc, argv, (struct arg_hdr **)&cspot_args);
- if (nerrors != 0) {
- return 1;
- }
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- cJSON *cspot_config = config_alloc_get_cjson("cspot_config");
- if (!cspot_config) {
- nerrors++;
- fprintf(f, "error: Unable to get default cspot config.\n");
- }
- if (cspot_args.deviceName->count > 0) {
- cjson_update_string(&cspot_config, cspot_args.deviceName->hdr.longopts, cspot_args.deviceName->sval[0]);
- }
- if (cspot_args.bitrate->count > 0) {
- cjson_update_number(&cspot_config, cspot_args.bitrate->hdr.longopts, cspot_args.bitrate->ival[0]);
- }
- if (cspot_args.zeroConf->count > 0) {
- cjson_update_number(&cspot_config, cspot_args.zeroConf->hdr.longopts, cspot_args.zeroConf->ival[0]);
- }
- if (!nerrors) {
- fprintf(f, "Storing cspot parameters.\n");
- nerrors += (config_set_cjson_str_and_free("cspot_config", cspot_config) != ESP_OK);
- }
- if (nerrors == 0) {
- if (cspot_args.deviceName->count > 0) {
- fprintf(f, "Device name changed to %s\n", cspot_args.deviceName->sval[0]);
- }
- if (cspot_args.bitrate->count > 0) {
- fprintf(f, "Bitrate changed to %u\n", cspot_args.bitrate->ival[0]);
- }
- if (cspot_args.zeroConf->count > 0) {
- fprintf(f, "ZeroConf changed to %u\n", cspot_args.zeroConf->ival[0]);
- }
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return nerrors;
- }
- #endif
- static int do_ledvu_cmd(int argc, char **argv) {
- ledvu_struct_t ledvu = {.type = "WS2812", .gpio = -1, .length = 0, .scale = 100};
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&ledvu_args);
- if (ledvu_args.clear->count) {
- cmd_send_messaging(argv[0], MESSAGING_WARNING, "ledvu config cleared\n");
- config_set_value(NVS_TYPE_STR, "led_vu_config", "");
- return 0;
- }
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, ledvu_args.end, desc_ledvu);
- return 1;
- }
- nerrors += is_output_gpio(ledvu_args.gpio, f, &ledvu.gpio, true);
- if (ledvu_args.length->count == 0 || ledvu_args.length->ival[0] < 1 || ledvu_args.length->ival[0] > 255) {
- fprintf(f, "error: strip length must be greater than 0 and no more than 255\n");
- nerrors++;
- } else {
- ledvu.length = ledvu_args.length->count > 0 ? ledvu_args.length->ival[0] : 0;
- }
- ledvu.scale = ledvu_args.scale->count>0?ledvu_args.scale->ival[0]:ledvu.scale;
- if (!nerrors) {
- fprintf(f, "Storing ledvu parameters.\n");
- nerrors += (config_ledvu_set(&ledvu) != ESP_OK);
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static int do_i2s_cmd(int argc, char **argv) {
- i2s_platform_config_t i2s_dac_pin = {
- .i2c_addr = -1,
- .sda = -1,
- .scl = -1,
- .mute_gpio = -1,
- .mute_level = -1};
- if (is_dac_config_locked()) {
- cmd_send_messaging(argv[0], MESSAGING_ERROR, "DAC Configuration is locked on this platform\n");
- return 1;
- }
- ESP_LOGD(TAG, "Processing i2s command %s with %d parameters", argv[0], argc);
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&i2s_args);
- if (i2s_args.clear->count) {
- cmd_send_messaging(argv[0], MESSAGING_WARNING, "DAC config cleared\n");
- config_set_value(NVS_TYPE_STR, "dac_config", "");
- return 0;
- }
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- ESP_LOGE(TAG, "do_i2s_cmd: %d errors parsing arguments", nerrors);
- arg_print_errors(f, i2s_args.end, desc_dac);
- } else {
- strncpy(i2s_dac_pin.model, i2s_args.model_name->sval[0], sizeof(i2s_dac_pin.model));
- i2s_dac_pin.model[sizeof(i2s_dac_pin.model) - 1] = '\0';
- nerrors += is_output_gpio(i2s_args.clock, f, &i2s_dac_pin.pin.bck_io_num, true);
- nerrors += is_output_gpio(i2s_args.wordselect, f, &i2s_dac_pin.pin.ws_io_num, true);
- nerrors += is_output_gpio(i2s_args.data, f, &i2s_dac_pin.pin.data_out_num, true);
- nerrors += is_output_gpio(i2s_args.mute_gpio, f, &i2s_dac_pin.mute_gpio, false);
- if (i2s_dac_pin.mute_gpio >= 0) {
- i2s_dac_pin.mute_level = i2s_args.mute_level->count > 0 ? 1 : 0;
- }
- if (i2s_args.dac_sda->count > 0 && i2s_args.dac_sda->ival[0] >= 0) {
-
- nerrors += is_output_gpio(i2s_args.dac_sda, f, &i2s_dac_pin.sda, false);
- nerrors += is_output_gpio(i2s_args.dac_scl, f, &i2s_dac_pin.scl, false);
- }
- if (i2s_args.dac_sda->count == 0 && i2s_args.dac_i2c->count > 0) {
- fprintf(f, "warning: ignoring i2c address, since dac i2c gpios config is incomplete\n");
- } else if (i2s_args.dac_i2c->count > 0) {
- i2s_dac_pin.i2c_addr = i2s_args.dac_i2c->ival[0];
- }
- if (!nerrors) {
- fprintf(f, "Storing i2s parameters.\n");
- nerrors += (config_i2s_set(&i2s_dac_pin, "dac_config") != ESP_OK);
- }
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- cJSON *example_cb() {
- cJSON *values = cJSON_CreateObject();
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- return values;
- }
- cJSON *known_model_cb() {
- cJSON *values = cJSON_CreateObject();
- if (!values) {
- ESP_LOGE(TAG, "known_model_cb: Failed to create JSON object");
- return NULL;
- }
- char *name = config_alloc_get_default(NVS_TYPE_STR, known_model_args.model_config->hdr.longopts, "", 0);
- if (!name) {
- ESP_LOGE(TAG, "Failed to get board model from nvs key %s ", known_model_args.model_config->hdr.longopts);
- } else {
- cJSON_AddStringToObject(values, known_model_args.model_config->hdr.longopts, name);
- }
- return values;
- }
- #ifdef CONFIG_CSPOT_SINK
- cJSON *cspot_cb() {
- cJSON *values = cJSON_CreateObject();
- if (!values) {
- ESP_LOGE(TAG, "cspot_cb: Failed to create JSON object");
- return NULL;
- }
- cJSON *cspot_config = config_alloc_get_cjson("cspot_config");
- if (!cspot_config) {
- ESP_LOGE(TAG, "cspot_cb: Failed to get cspot config");
- return NULL;
- }
- cJSON *cspot_values = cJSON_GetObjectItem(cspot_config, cspot_args.deviceName->hdr.longopts);
- if (cspot_values) {
- cJSON_AddStringToObject(values, cspot_args.deviceName->hdr.longopts, cJSON_GetStringValue(cspot_values));
- }
- cspot_values = cJSON_GetObjectItem(cspot_config, cspot_args.bitrate->hdr.longopts);
- if (cspot_values) {
- cJSON_AddNumberToObject(values, cspot_args.bitrate->hdr.longopts, cJSON_GetNumberValue(cspot_values));
- }
- cspot_values = cJSON_GetObjectItem(cspot_config, cspot_args.zeroConf->hdr.longopts);
- if (cspot_values) {
- cJSON_AddNumberToObject(values, cspot_args.zeroConf->hdr.longopts, cJSON_GetNumberValue(cspot_values));
- }
- cJSON_Delete(cspot_config);
- return values;
- }
- #endif
- cJSON *i2s_cb() {
- cJSON *values = cJSON_CreateObject();
- const i2s_platform_config_t *i2s_conf = config_dac_get();
- if (i2s_conf->pin.bck_io_num > 0) {
- cJSON_AddNumberToObject(values, i2s_args.clock->hdr.longopts, i2s_conf->pin.bck_io_num);
- }
- if (i2s_conf->pin.ws_io_num >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.wordselect->hdr.longopts, i2s_conf->pin.ws_io_num);
- }
- if (i2s_conf->pin.data_out_num >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.data->hdr.longopts, i2s_conf->pin.data_out_num);
- }
- if (i2s_conf->sda >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.dac_sda->hdr.longopts, i2s_conf->sda);
- }
- if (i2s_conf->scl >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.dac_scl->hdr.longopts, i2s_conf->scl);
- }
- if (i2s_conf->i2c_addr >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.dac_i2c->hdr.longopts, i2s_conf->i2c_addr);
- }
- if (i2s_conf->mute_gpio >= 0) {
- cJSON_AddNumberToObject(values, i2s_args.mute_gpio->hdr.longopts, i2s_conf->mute_gpio);
- }
- if (i2s_conf->mute_level >= 0) {
- cJSON_AddBoolToObject(values, i2s_args.mute_level->hdr.longopts, i2s_conf->mute_level > 0);
- }
- if (strlen(i2s_conf->model) > 0) {
- cJSON_AddStringToObject(values, i2s_args.model_name->hdr.longopts, i2s_conf->model);
- } else {
- cJSON_AddStringToObject(values, i2s_args.model_name->hdr.longopts, "I2S");
- }
- return values;
- }
- cJSON *spdif_cb() {
- cJSON *values = cJSON_CreateObject();
- const i2s_platform_config_t *spdif_conf = config_spdif_get();
- if (spdif_conf->pin.bck_io_num > 0) {
- cJSON_AddNumberToObject(values, "clock", spdif_conf->pin.bck_io_num);
- }
- if (spdif_conf->pin.ws_io_num >= 0) {
- cJSON_AddNumberToObject(values, "wordselect", spdif_conf->pin.ws_io_num);
- }
- if (spdif_conf->pin.data_out_num >= 0) {
- cJSON_AddNumberToObject(values, "data", spdif_conf->pin.data_out_num);
- }
- return values;
- }
- cJSON *rotary_cb() {
- cJSON *values = cJSON_CreateObject();
- char *p = config_alloc_get_default(NVS_TYPE_STR, "lms_ctrls_raw", "n", 0);
- bool raw_mode = p && (*p == '1' || *p == 'Y' || *p == 'y');
- free(p);
- const rotary_struct_t *rotary = config_rotary_get();
- if (GPIO_IS_VALID_GPIO(rotary->A) && rotary->A >= 0 && GPIO_IS_VALID_GPIO(rotary->B) && rotary->B >= 0) {
- cJSON_AddNumberToObject(values, rotary_args.A->hdr.longopts, rotary->A);
- cJSON_AddNumberToObject(values, rotary_args.B->hdr.longopts, rotary->B);
- if (GPIO_IS_VALID_GPIO(rotary->SW) && rotary->SW >= 0) {
- cJSON_AddNumberToObject(values, rotary_args.SW->hdr.longopts, rotary->SW);
- }
- cJSON_AddBoolToObject(values, rotary_args.volume_lock->hdr.longopts, rotary->volume_lock);
- cJSON_AddBoolToObject(values, rotary_args.longpress->hdr.longopts, rotary->longpress);
- cJSON_AddBoolToObject(values, rotary_args.knobonly->hdr.longopts, rotary->knobonly);
- cJSON_AddNumberToObject(values, rotary_args.timer->hdr.longopts, rotary->timer);
- cJSON_AddNumberToObject(values, rotary_args.raw_mode->hdr.longopts, raw_mode);
- }
- return values;
- }
- cJSON *ledvu_cb() {
- cJSON *values = cJSON_CreateObject();
- const ledvu_struct_t *ledvu = config_ledvu_get();
- if (GPIO_IS_VALID_GPIO(ledvu->gpio) && ledvu->gpio >= 0 && ledvu->length > 0) {
- cJSON_AddNumberToObject(values, "gpio", ledvu->gpio);
- cJSON_AddNumberToObject(values, "length", ledvu->length);
- }
- if (strlen(ledvu->type) > 0) {
- cJSON_AddStringToObject(values, "type", ledvu->type);
- } else {
- cJSON_AddStringToObject(values, "type", "WS2812");
- }
- cJSON_AddNumberToObject(values,"scale",ledvu->scale);
- return values;
- }
- cJSON *audio_cb() {
- cJSON *values = cJSON_CreateObject();
- char *p = config_alloc_get_default(NVS_TYPE_STR, "jack_mutes_amp", "n", 0);
- cJSON_AddStringToObject(values, "jack_behavior", (strcmp(p, "1") == 0 || strcasecmp(p, "y") == 0) ? "Headphones" : "Subwoofer");
- FREE_AND_NULL(p);
- p = config_alloc_get_default(NVS_TYPE_STR, "loudness", "0", 0);
- cJSON_AddStringToObject(values, "loudness", p);
- FREE_AND_NULL(p);
- return values;
- }
- cJSON *bt_source_cb() {
- cJSON *values = cJSON_CreateObject();
- char *p = config_alloc_get_default(NVS_TYPE_STR, "a2dp_sink_name", NULL, 0);
- if (p) {
- cJSON_AddStringToObject(values, "sink_name", p);
- }
- FREE_AND_NULL(p);
-
-
-
-
-
- p = config_alloc_get_default(NVS_TYPE_STR, "a2dp_spin", "0000", 0);
- if (p) {
- cJSON_AddStringToObject(values, "pin_code", p);
- }
- FREE_AND_NULL(p);
-
-
-
-
-
- return values;
- }
- void get_str_parm_json(struct arg_str *parm, cJSON *entry) {
- const char *name = parm->hdr.longopts ? parm->hdr.longopts : parm->hdr.glossary;
- if (parm->count > 0) {
- cJSON_AddStringToObject(entry, name, parm->sval[0]);
- }
- }
- void get_file_parm_json(struct arg_file *parm, cJSON *entry) {
- const char *name = parm->hdr.longopts ? parm->hdr.longopts : parm->hdr.glossary;
- if (parm->count > 0) {
- cJSON_AddStringToObject(entry, name, parm->filename[0]);
- }
- }
- void get_lit_parm_json(struct arg_lit *parm, cJSON *entry) {
- const char *name = parm->hdr.longopts ? parm->hdr.longopts : parm->hdr.glossary;
- cJSON_AddBoolToObject(entry, name, (parm->count > 0));
- }
- void get_int_parm_json(struct arg_int *parm, cJSON *entry) {
- const char *name = parm->hdr.longopts ? parm->hdr.longopts : parm->hdr.glossary;
- if (parm->count > 0) {
- cJSON_AddNumberToObject(entry, name, parm->ival[0]);
- }
- }
- static int do_squeezelite_cmd(int argc, char **argv) {
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse_msg(argc, argv, (struct arg_hdr **)&squeezelite_args);
- char *buf = NULL;
- size_t buf_size = 0;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- fprintf(f, "Not yet implemented!");
- nerrors += 1;
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- cJSON *squeezelite_cb() {
- cJSON *values = cJSON_CreateObject();
- char *nvs_config = config_alloc_get(NVS_TYPE_STR, "autoexec1");
- char **argv = NULL;
- char *buf = NULL;
- size_t buf_size = 0;
- int nerrors = 1;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return values;
- }
- if (nvs_config && strlen(nvs_config) > 0) {
- ESP_LOGD(TAG, "Parsing command %s", nvs_config);
- argv = (char **)calloc(22, sizeof(char *));
- if (argv == NULL) {
- FREE_AND_NULL(nvs_config);
- fclose(f);
- return values;
- }
- size_t argc = esp_console_split_argv(nvs_config, argv, 22);
- if (argc != 0) {
- nerrors = arg_parse(argc, argv, (void **)&squeezelite_args);
- ESP_LOGD(TAG, "Parsing completed");
- }
- }
- if (nerrors == 0) {
- get_str_parm_json(squeezelite_args.buffers, values);
- get_str_parm_json(squeezelite_args.codecs, values);
- get_lit_parm_json(squeezelite_args.header_format, values);
- get_str_parm_json(squeezelite_args.log_level, values);
-
-
-
-
-
- get_str_parm_json(squeezelite_args.mac_addr, values);
- get_str_parm_json(squeezelite_args.output_device, values);
- get_str_parm_json(squeezelite_args.model_name, values);
- get_str_parm_json(squeezelite_args.name, values);
- get_int_parm_json(squeezelite_args.rate, values);
- get_str_parm_json(squeezelite_args.rates, values);
- get_str_parm_json(squeezelite_args.server, values);
- get_int_parm_json(squeezelite_args.timeout, values);
- char *p = cJSON_Print(values);
- ESP_LOGD(TAG, "%s", p);
- free(p);
- } else {
- arg_print_errors(f, squeezelite_args.end, desc_squeezelite);
- }
- fflush(f);
- if (strlen(buf) > 0) {
- log_send_messaging(nerrors ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- }
- fclose(f);
- FREE_AND_NULL(buf);
- FREE_AND_NULL(nvs_config);
- FREE_AND_NULL(argv);
- return values;
- }
- static char *get_log_level_options(const char *longname) {
- const char *template = "<%s=info|%s=debug|%s=sdebug>";
- char *options = NULL;
- int len = snprintf(NULL, 0, template, longname, longname, longname);
- if (len > 0) {
- options = malloc_init_external(len + 1);
- snprintf(options, len, template, longname, longname, longname);
- }
- return options;
- }
- static char *get_dac_list() {
- const char *EXTRA_MODEL_NAMES = "ES8388|I2S";
- char *dac_list = NULL;
- size_t total_len = 0;
- for (int i = 0; dac_set[i]; i++) {
- if (dac_set[i]->model && strlen(dac_set[i]->model) > 0) {
- total_len += strlen(dac_set[i]->model) + 1;
- } else {
- break;
- }
- }
- total_len += strlen(EXTRA_MODEL_NAMES);
- dac_list = malloc_init_external(total_len + 1);
- if (dac_list) {
- for (int i = 0; dac_set[i]; i++) {
- if (dac_set[i]->model && strlen(dac_set[i]->model) > 0) {
- strcat(dac_list, dac_set[i]->model);
- strcat(dac_list, "|");
- } else {
- break;
- }
- }
- strcat(dac_list, EXTRA_MODEL_NAMES);
- }
- return dac_list;
- }
- void replace_char_in_string(char *str, char find, char replace) {
- for (int i = 0; str[i]; i++) {
- if (str[i] == find) {
- str[i] = replace;
- }
- }
- }
- static esp_err_t save_known_config(cJSON *known_item, const char *name, FILE *f) {
- esp_err_t err = ESP_OK;
- char *json_string = NULL;
- json_string = cJSON_Print(known_item);
- ESP_LOGD(TAG, "known_item_string: %s", STR_OR_BLANK(json_string));
- FREE_AND_NULL(json_string);
- cJSON *kvp = NULL;
- cJSON *config_array = cJSON_GetObjectItem(known_item, "config");
- if (config_array && cJSON_IsArray(config_array)) {
- json_string = cJSON_Print(config_array);
- ESP_LOGD(TAG, "config_array: %s", STR_OR_BLANK(json_string));
- FREE_AND_NULL(json_string);
- cJSON_ArrayForEach(kvp, config_array) {
- cJSON *kvp_value = kvp->child;
- if (!kvp_value) {
- printf("config entry is not an object!\n");
- err = ESP_FAIL;
- continue;
- }
- char *key = kvp_value->string;
- char *value = kvp_value->valuestring;
- if (!key || !value || strlen(key) == 0) {
- printf("Invalid config entry %s:%s\n", STR_OR_BLANK(key), STR_OR_BLANK(value));
- err = ESP_FAIL;
- continue;
- }
- fprintf(f, "Storing %s=%s\n", key, value);
- err = config_set_value(NVS_TYPE_STR, key, value);
- if (err) {
- fprintf(f, "Failed to store config value: %s\n", esp_err_to_name(err));
- break;
- }
- }
- } else {
- json_string = cJSON_Print(config_array);
- char *known_item_string = cJSON_Print(known_item);
- fprintf(f, "Failed to parse config array. %s\n%s\nKnown item found: %s\n", config_array ? cJSON_IsArray(config_array) ? "" : "NOT AN ARRAY" : "config entry not found", STR_OR_BLANK(json_string), STR_OR_BLANK(known_item_string));
- FREE_AND_NULL(json_string);
- FREE_AND_NULL(known_item_string);
- err = ESP_FAIL;
- }
- if (err == ESP_OK) {
- err = config_set_value(NVS_TYPE_STR, "board_model", name);
- if (err != ESP_OK) {
- fprintf(f, "Failed to save board model %s\n", name);
- }
- }
- return err;
- }
- static int do_register_known_templates_config(int argc, char **argv) {
- esp_err_t err = ESP_OK;
- int nerrors = arg_parse(argc, argv, (void **)&known_model_args);
- char *buf = NULL;
- size_t buf_size = 0;
- cJSON *config_name = NULL;
- FILE *f = system_open_memstream(argv[0], &buf, &buf_size);
- if (f == NULL) {
- return 1;
- }
- if (nerrors > 0) {
- arg_print_errors(f, known_model_args.end, desc_preset);
- } else {
- ESP_LOGD(TAG, "arg: %s", STR_OR_BLANK(known_model_args.model_config->sval[0]));
- char *model_config = strdup_psram(known_model_args.model_config->sval[0]);
- char *t = model_config;
- for (const char *p = known_model_args.model_config->sval[0]; *p; p++) {
- if (*p == '\\' && *(p + 1) == '"') {
- *t++ = '"';
- p++;
- } else {
- *t++ = *p;
- }
- }
- *t = 0;
- cJSON *known_item = cJSON_Parse(model_config);
- if (known_item) {
- ESP_LOGD(TAG, "Parsing success");
- config_name = cJSON_GetObjectItem(known_item, "name");
- if (!config_name || !cJSON_IsString(config_name) || strlen(config_name->valuestring) == 0) {
- fprintf(f, "Failed to find name in config\n");
- err = ESP_FAIL;
- nerrors++;
- }
- if (nerrors == 0) {
- const char *name = cJSON_GetStringValue(config_name);
- nerrors += (err = save_known_config(known_item, name, f) != ESP_OK);
- if (nerrors == 0) {
- const i2s_platform_config_t *i2s_config = config_dac_get();
- if (i2s_config->scl != -1 && i2s_config->sda != -1 && GPIO_IS_VALID_GPIO(i2s_config->scl) && GPIO_IS_VALID_GPIO(i2s_config->sda)) {
- fprintf(f, "Scanning i2c bus for devices\n");
- cmd_i2ctools_scan_bus(f, i2s_config->sda, i2s_config->scl);
- }
- }
- }
- cJSON_Delete(known_item);
- } else {
- ESP_LOGE(TAG, "Parsing error: %s", cJSON_GetErrorPtr());
- fprintf(f, "Failed to parse JSON: %s\n", cJSON_GetErrorPtr());
- err = ESP_FAIL;
- }
- if (err != ESP_OK) {
- nerrors++;
- fprintf(f, "Error registering known config %s.\n", known_model_args.model_config->sval[0]);
- } else {
- fprintf(f, "Registered known config %s.\n", known_model_args.model_config->sval[0]);
- }
- }
- if (!nerrors) {
- fprintf(f, "Done.\n");
- }
- fflush(f);
- cmd_send_messaging(argv[0], nerrors > 0 ? MESSAGING_ERROR : MESSAGING_INFO, "%s", buf);
- fclose(f);
- FREE_AND_NULL(buf);
- return (nerrors == 0 && err == ESP_OK) ? 0 : 1;
- }
- static void register_known_templates_config() {
- known_model_args.model_config = arg_str1(NULL, "model_config", "SqueezeAMP|T-WATCH2020 by LilyGo", "Known Board Name.\nFor known boards, several systems parameters will be updated");
- known_model_args.end = arg_end(1);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_HW("preset"),
- .help = desc_preset,
- .hint = NULL,
- .func = &do_register_known_templates_config,
- .argtable = &known_model_args};
- cmd_to_json_with_cb(&cmd, &known_model_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- #ifdef CONFIG_CSPOT_SINK
- static void register_cspot_config() {
- cspot_args.deviceName = arg_str1(NULL, "deviceName", "", "Device Name");
- cspot_args.bitrate = arg_int1(NULL, "bitrate", "96|160|320", "Streaming Bitrate (kbps)");
- cspot_args.zeroConf = arg_int1(NULL, "zeroConf", "0|1", "Force use of ZeroConf");
-
- cspot_args.end = arg_end(1);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_SYST("cspot"),
- .help = desc_cspotc,
- .hint = NULL,
- .func = &do_cspot_config,
- .argtable = &cspot_args};
- cmd_to_json_with_cb(&cmd, &cspot_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- #endif
- static void register_i2s_config(void) {
- i2s_args.model_name = arg_str0(NULL, "model_name", STR_OR_BLANK(get_dac_list()), "DAC Model Name");
- i2s_args.clear = arg_lit0(NULL, "clear", "Clear configuration");
- i2s_args.clock = arg_int0(NULL, "clock", "<n>", "Clock GPIO. e.g. 33");
- i2s_args.wordselect = arg_int0(NULL, "wordselect", "<n>", "Word Select GPIO. e.g. 25");
- i2s_args.data = arg_int0(NULL, "data", "<n>", "Data GPIO. e.g. 32");
- i2s_args.mute_gpio = arg_int0(NULL, "mute_gpio", "<n>", "Mute GPIO. e.g. 14");
- i2s_args.mute_level = arg_lit0(NULL, "mute_level", "Mute GPIO level. Checked=HIGH, Unchecked=LOW");
- i2s_args.dac_sda = arg_int0(NULL, "dac_sda", "<n>", "SDA GPIO. e.g. 27");
- i2s_args.dac_scl = arg_int0(NULL, "dac_scl", "<n>", "SCL GPIO. e.g. 26");
- i2s_args.dac_i2c = arg_int0(NULL, "dac_i2c", "<n>", "I2C device address. e.g. 106");
- i2s_args.end = arg_end(6);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_HW("dac"),
- .help = desc_dac,
- .hint = NULL,
- .func = &do_i2s_cmd,
- .argtable = &i2s_args};
- cmd_to_json_with_cb(&cmd, &i2s_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- static void register_bt_source_config(void) {
- bt_source_args.sink_name = arg_str1("n", "sink_name", "name", "Bluetooth audio device name. This applies when output mode is Bluetooth");
- bt_source_args.pin_code = arg_str1("p", "pin_code", "pin", "Bluetooth security/pin code. Usually 0000. This applies when output mode is Bluetooth");
-
-
- bt_source_args.end = arg_end(1);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_AUDIO("bt_source"),
- .help = desc_bt_source,
- .hint = NULL,
- .func = &do_bt_source_cmd,
- .argtable = &bt_source_args};
- cmd_to_json_with_cb(&cmd, &bt_source_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- void register_rotary_config(void) {
- rotary_args.rem = arg_rem("remark", "One rotary encoder is supported, quadrature shift with press. Such encoders usually have 2 pins for encoders (A and B), and common C that must be set to ground and an optional SW pin for press. A, B and SW must be pulled up, so automatic pull-up is provided by ESP32, but you can add your own resistors. A bit of filtering on A and B (~470nF) helps for debouncing which is not made by software.\r\nEncoder is normally hard-coded to respectively knob left, right and push on LMS and to volume down/up/play toggle on BT and AirPlay.");
- rotary_args.A = arg_int1(NULL, "A", "gpio", "A/DT gpio");
- rotary_args.B = arg_int1(NULL, "B", "gpio", "B/CLK gpio");
- rotary_args.SW = arg_int0(NULL, "SW", "gpio", "Switch gpio");
- rotary_args.knobonly = arg_lit0(NULL, "knobonly", "Single knob full navigation. Left, Right and Press is navigation, with Press always going to lower submenu item. Longpress is 'Play', Double press is 'Back', a quick left-right movement on the encoder is 'Pause'");
- rotary_args.timer = arg_int0(NULL, "timer", "ms", "The speed of double click (or left-right) when knob only option is enabled. Be aware that the longer you set double click speed, the less responsive the interface will be. ");
- rotary_args.volume_lock = arg_lit0(NULL, "volume_lock", "Force Volume down/up/play toggle all the time (even in LMS). ");
- rotary_args.longpress = arg_lit0(NULL, "longpress", "Enable alternate mode mode on long-press. In that mode, left is previous, right is next and press is toggle. Every long press on SW alternates between modes (the main mode actual behavior depends on 'volume').");
- rotary_args.clear = arg_lit0(NULL, "clear", "Clear configuration");
- rotary_args.raw_mode = arg_lit0(NULL, "raw_mode", "Send button events as raw values to LMS. No remapping is possible when this is enabled");
- rotary_args.end = arg_end(3);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_HW("rotary"),
- .help = desc_rotary,
- .hint = NULL,
- .func = &do_rotary_cmd,
- .argtable = &rotary_args};
- cmd_to_json_with_cb(&cmd, &rotary_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- void register_ledvu_config(void) {
- ledvu_args.type = arg_str1(NULL, "type", "<none>|WS2812", "Led type (supports one rgb strip to display built in effects and allow remote control through 'dmx' messaging)");
- ledvu_args.length = arg_int1(NULL, "length", "<1..255>", "Strip length (1-255 supported)");
- ledvu_args.gpio = arg_int1(NULL, "gpio", "gpio", "Data pin");
- ledvu_args.scale = arg_int0(NULL,"scale","<n>","Gain scale (precent)");
- ledvu_args.clear = arg_lit0(NULL, "clear", "Clear configuration");
- ledvu_args.end = arg_end(4);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_HW("ledvu"),
- .help = desc_ledvu,
- .hint = NULL,
- .func = &do_ledvu_cmd,
- .argtable = &ledvu_args};
- cmd_to_json_with_cb(&cmd, &ledvu_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- void register_audio_config(void) {
- audio_args.jack_behavior = arg_str0("j", "jack_behavior", "Headphones|Subwoofer", "On supported DAC, determines the audio jack behavior. Selecting headphones will cause the external amp to be muted on insert, while selecting Subwoofer will keep the amp active all the time.");
- audio_args.loudness = arg_int0("l", "loudness", "0-10", "Sets a loudness level, from 0 to 10. 0 will disable the loudness completely. Note that LMS has priority over setting this value, so use it only when away from your server.");
- audio_args.end = arg_end(6);
- audio_args.end = arg_end(6);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_AUDIO("general"),
- .help = desc_audio,
- .hint = NULL,
- .func = &do_audio_cmd,
- .argtable = &audio_args};
- cmd_to_json_with_cb(&cmd, &audio_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- static void register_spdif_config(void) {
- spdif_args.clear = arg_lit0(NULL, "clear", "Clear configuration");
- spdif_args.clock = arg_int1(NULL, "clock", "<n>", "Clock GPIO. e.g. 33");
- spdif_args.wordselect = arg_int1(NULL, "wordselect", "<n>", "Word Select GPIO. e.g. 25");
- spdif_args.data = arg_int1(NULL, "data", "<n>", "Data GPIO. e.g. 32");
- spdif_args.end = arg_end(6);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_HW("spdif"),
- .help = desc_spdif,
- .hint = NULL,
- .func = &do_spdif_cmd,
- .argtable = &spdif_args};
- cmd_to_json_with_cb(&cmd, &spdif_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- static void register_squeezelite_config(void) {
- squeezelite_args.server = arg_str0("s", "server", "<server>[:<port>]", "Connect to specified server, otherwise uses autodiscovery to find server");
- squeezelite_args.buffers = arg_str0("b", "buffers", "<stream>:<output>", "Internal Stream and Output buffer sizes in Kbytes");
- squeezelite_args.codecs = arg_strn("c", "codecs", "+" CODECS "+", 0, 20, "Restrict codecs to those specified, otherwise load all available codecs; known codecs: " CODECS);
- squeezelite_args.timeout = arg_int0("C", "timeout", "<n>", "Close output device when idle after timeout seconds, default is to keep it open while player is 'on");
- squeezelite_args.log_level = arg_str0("d", "loglevel", "log=level", "Set logging level, logs: all|slimproto|stream|decode|output|ir, level: info|debug|sdebug");
- #if IR
- squeezelite_args.log_level_ir = arg_str0(NULL, "loglevel_ir", get_log_level_options("ir"), "IR Logging Level");
- #endif
- squeezelite_args.output_device = arg_str0("o", "output_device", "<string>", "Output device (BT, I2S or SPDIF)");
- squeezelite_args.mac_addr = arg_str0("m", "mac_addr", "<string>", "Mac address, format: ab:cd:ef:12:34:56.");
- squeezelite_args.model_name = arg_str0("M", "modelname", "<string>", "Set the squeezelite player model name sent to the server (default: " MODEL_NAME_STRING ")");
- squeezelite_args.name = arg_str0("n", "name", "<string>", "Player name, if different from the current host name. Name can alternatively be assigned from the system/device name configuration.");
- squeezelite_args.header_format = arg_lit0("W", "header_format", "Read wave and aiff format from header, ignore server parameters");
- squeezelite_args.rates = arg_str0("r", "rates", "<rates>[:<delay>]", "Sample rates supported, allows output to be off when squeezelite is started; rates = <maxrate>|<minrate>-<maxrate>|<rate1>,<rate2>,<rate3>; delay = optional delay switching rates in ms\n");
- #if RESAMPLE
- squeezelite_args.resample = arg_lit0("R", "resample", "Activate Resample");
- squeezelite_args.resample_parms = arg_str0("u", "resample_parms", "<recipe>:<flags>:<attenuation>:<precision>:<passband_end>:<stopband_start>:<phase_response>", "Resample, params");
- #endif
- #if RESAMPLE16
- squeezelite_args.resample = arg_lit0("R", "resample", "Activate Resample");
- squeezelite_args.resample_parms = arg_str0("u", "resample_parms", "(b|l|m)[:i]", "Resample, params. b = basic linear interpolation, l = 13 taps, m = 21 taps, i = interpolate filter coefficients");
- #endif
- squeezelite_args.rate = arg_int0("Z", "max_rate", "<n>", "Report rate to server in helo as the maximum sample rate we can support");
- squeezelite_args.end = arg_end(6);
- const esp_console_cmd_t cmd = {
- .command = CFG_TYPE_AUDIO("squeezelite"),
- .help = desc_squeezelite,
- .hint = NULL,
- .func = &do_squeezelite_cmd,
- .argtable = &squeezelite_args};
- cmd_to_json_with_cb(&cmd, &squeezelite_cb);
- ESP_ERROR_CHECK(esp_console_cmd_register(&cmd));
- }
- void register_config_cmd(void) {
- if (!is_dac_config_locked()) {
- register_known_templates_config();
- }
- #ifdef CONFIG_CSPOT_SINK
- register_cspot_config();
- #endif
- register_bt_source_config();
- if (!is_dac_config_locked()) {
- register_i2s_config();
- }
- if (!is_spdif_config_locked()) {
- register_spdif_config();
- }
- register_optional_cmd();
- }
|