stack & internal memory optimization

will need to move pthread stack to external memory at some point ...
This commit is contained in:
philippe44
2019-08-20 23:04:41 -07:00
parent f547a52c1e
commit 217dd8e5f0
6 changed files with 14 additions and 10 deletions

View File

@@ -146,7 +146,7 @@ void process_autoexec(){
ESP_LOGD(TAG,"No matching command found for name autoexec. Adding default entries");
uint8_t autoexec_dft=0;
char autoexec1_dft[64];
char autoexec2_dft[]="squeezelite -o \"I2S\" -b 500:2000 -d all=info -M esp32";
char autoexec2_dft[256]="squeezelite -o \"I2S\" -b 500:2000 -d all=info -M esp32";
snprintf(autoexec1_dft, 64, "join %s %s", CONFIG_WIFI_SSID, CONFIG_WIFI_PASSWORD);
store_nvs_value(NVS_TYPE_U8,"autoexec",&autoexec_dft);
store_nvs_value(NVS_TYPE_STR,"autoexec1",autoexec1_dft);