mirror of
https://git.mirrors.martin98.com/https://github.com/luc-github/ESP3D.git
synced 2025-08-06 05:36:11 +08:00
Add missing setting for radio boot start state in ini config
This commit is contained in:
parent
b4a6ca3c54
commit
7aeaee8236
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
@ -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",
|
||||
|
Loading…
x
Reference in New Issue
Block a user