1
0
mirror of https://github.com/bdring/Grbl_Esp32.git synced 2025-08-17 20:01:42 +02:00

Fixed weird issue with AP/STA in parser.

This commit is contained in:
Stefan de Bruijn
2021-06-04 20:48:23 +02:00
parent c13e85a5b0
commit d52f9c085e
2 changed files with 8 additions and 6 deletions

View File

@@ -66,10 +66,13 @@ coolant:
flood: gpio.25:low
mist: gpio.21
comms:
wifi_sta:
ssid: StefanMieke
wifi_ap:
ip_address: "192.168.0.1"
ssid: ScratchThat
probe:
pin: gpio.32:high:pu
comms:
wifi_ap:
ssid: ScratchThat
ip_address: "192.168.0.1"

View File

@@ -110,7 +110,6 @@ namespace Configuration {
if (last == token_.indent_) {
// Yes, the token continues where we left off:
current_ = token_;
Tokenize();
} else {
current_ = TokenData();
current_.indent_ = last;