Add missing setting for radio boot start state in ini config

This commit is contained in:
Luc 2021-06-05 09:25:30 +02:00
parent b4a6ca3c54
commit 7aeaee8236
3 changed files with 8 additions and 3 deletions

View File

@ -5,6 +5,9 @@ hostname = myesp
#Radio mode BT, WIFI-STA, WIFI-AP, ETH-STA, OFF
radio_mode = WIFI-STA
#Active when boot device or not Yes / No
Radio_enabled = Yes
#STA SSID string of 32 chars max
STA_SSID = myssid

View File

@ -22,7 +22,7 @@
#define _VERSION_ESP3D_H
//version and sources location
#define FW_VERSION "3.0.0.a98"
#define FW_VERSION "3.0.0.a99"
#define REPOSITORY "https://github.com/luc-github/ESP3D/tree/3.0"
#endif //_VERSION_ESP3D_H

View File

@ -129,7 +129,8 @@ const char * ServboolKeysVal[] = {"HTTP_active",
"Time_DST",
"CHECK_FOR_UPDATE",
"Active_buzzer",
"Active_Internet_time"
"Active_Internet_time",
"Radio_enabled"
} ;
const uint16_t ServboolKeysPos[] = {ESP_HTTP_ON,
@ -139,7 +140,8 @@ const uint16_t ServboolKeysPos[] = {ESP_HTTP_ON,
ESP_TIME_IS_DST,
ESP_SD_CHECK_UPDATE_AT_BOOT,
ESP_BUZZER,
ESP_INTERNET_TIME
ESP_INTERNET_TIME,
ESP_BOOT_RADIO_STATE
} ;
const char * SysboolKeysVal[] = {"Active_Printer_LCD",