@@ -70,7 +70,7 @@ enum ConfigShapeId {
70
70
Config_display_wifi_info ,
71
71
Config_display_device_info ,
72
72
Config_static_ip ,
73
- Config_static_mask ,
73
+ Config_static_subnet ,
74
74
Config_static_gateway ,
75
75
Config_static_dns ,
76
76
Config_debug ,
@@ -138,7 +138,7 @@ static constexpr char CFG_KEY_HAS_LCD2004_27[] PROGMEM = "has_lcd2004_27";
138
138
static constexpr char CFG_KEY_DISPLAY_WIFI_INFO [] PROGMEM = "display_wifi_info" ;
139
139
static constexpr char CFG_KEY_DISPLAY_DEVICE_INFO [] PROGMEM = "display_device_info" ;
140
140
static constexpr char CFG_KEY_STATIC_IP [] PROGMEM = "static_ip" ;
141
- static constexpr char CFG_KEY_STATIC_MASK [] PROGMEM = "static_mask " ;
141
+ static constexpr char CFG_KEY_STATIC_SUBNET [] PROGMEM = "static_subnet " ;
142
142
static constexpr char CFG_KEY_STATIC_GATEWAY [] PROGMEM = "static_gateway" ;
143
143
static constexpr char CFG_KEY_STATIC_DNS [] PROGMEM = "static_dns" ;
144
144
static constexpr char CFG_KEY_DEBUG [] PROGMEM = "debug" ;
@@ -206,7 +206,7 @@ static constexpr ConfigShapeEntry configShape[] PROGMEM = {
206
206
{ Config_Type_Bool , 0 , CFG_KEY_DISPLAY_WIFI_INFO , & cfg ::display_wifi_info },
207
207
{ Config_Type_Bool , 0 , CFG_KEY_DISPLAY_DEVICE_INFO , & cfg ::display_device_info },
208
208
{ Config_Type_String , sizeof (cfg ::static_ip )- 1 , CFG_KEY_STATIC_IP , cfg ::static_ip },
209
- { Config_Type_String , sizeof (cfg ::static_mask )- 1 , CFG_KEY_STATIC_MASK , cfg ::static_mask },
209
+ { Config_Type_String , sizeof (cfg ::static_subnet )- 1 , CFG_KEY_STATIC_SUBNET , cfg ::static_subnet },
210
210
{ Config_Type_String , sizeof (cfg ::static_gateway )- 1 , CFG_KEY_STATIC_GATEWAY , cfg ::static_gateway },
211
211
{ Config_Type_String , sizeof (cfg ::static_dns )- 1 , CFG_KEY_STATIC_DNS , cfg ::static_dns },
212
212
{ Config_Type_UInt , 0 , CFG_KEY_DEBUG , & cfg ::debug },
0 commit comments