Skip to content

Commit cac4d0d

Browse files
authored
Merge pull request #32 from ARMmbed/g-remove-quotes
readme: Remove quotes from ssid/pass defines
2 parents 95908fb + 2da720a commit cac4d0d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ mbed add mbed-os
1818
Now you should be able to run the network tests with `mbed test`:
1919
``` bash
2020
# Runs the ESP8266 network tests, requires a wifi access point
21-
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --compile -DMBED_CFG_ESP8266_SSID='<SSID HERE>' -DMBED_CFG_ESP8266_PASS='<PASS HERE>'
21+
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --compile -DMBED_CFG_ESP8266_SSID=<SSID HERE> -DMBED_CFG_ESP8266_PASS=<PASS HERE>
2222
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --run --verbose
2323
```
2424

@@ -32,6 +32,6 @@ There are a couple other options that can be used during testing:
3232
For example, here is how to enabled the debug output from the ESP8266:
3333
``` bash
3434
# Run the ESP8266 network tests with debug output, requires a wifi access point
35-
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --compile -DMBED_CFG_ESP8266_SSID='<SSID HERE>' -DMBED_CFG_ESP8266_PASS='<PASS HERE>' -DMBED_CFG_ESP8266_DEBUG=true
35+
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --compile -DMBED_CFG_ESP8266_SSID=<SSID HERE> -DMBED_CFG_ESP8266_PASS=<PASS HERE> -DMBED_CFG_ESP8266_DEBUG=true
3636
mbed test -t <COMPILER HERE> -m <BOARD HERE> -n tests-net* --run --verbose
3737
```

0 commit comments

Comments
 (0)