diff --git a/README.md b/README.md index 1582d48..2271115 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ mbed add mbed-os Now you should be able to run the network tests with `mbed test`: ``` bash # Runs the ESP8266 network tests, requires a wifi access point -mbed test -t -m -n tests-net* --compile -DMBED_CFG_ESP8266_SSID='' -DMBED_CFG_ESP8266_PASS='' +mbed test -t -m -n tests-net* --compile -DMBED_CFG_ESP8266_SSID= -DMBED_CFG_ESP8266_PASS= mbed test -t -m -n tests-net* --run --verbose ``` @@ -32,6 +32,6 @@ There are a couple other options that can be used during testing: For example, here is how to enabled the debug output from the ESP8266: ``` bash # Run the ESP8266 network tests with debug output, requires a wifi access point -mbed test -t -m -n tests-net* --compile -DMBED_CFG_ESP8266_SSID='' -DMBED_CFG_ESP8266_PASS='' -DMBED_CFG_ESP8266_DEBUG=true +mbed test -t -m -n tests-net* --compile -DMBED_CFG_ESP8266_SSID= -DMBED_CFG_ESP8266_PASS= -DMBED_CFG_ESP8266_DEBUG=true mbed test -t -m -n tests-net* --run --verbose ```