From 2da720a291eb5b419fa2d569e8a5c056719dccdd Mon Sep 17 00:00:00 2001 From: Christopher Haster Date: Fri, 19 May 2017 11:39:02 -0500 Subject: [PATCH] readme: Removed quotes from ssid/pass defines In windows, apparently quotes are just copied into the definition of #defines passed on the command line. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 ```