Update template mbed_app.json

pull/5161/head
Seppo Takalo 2017-09-22 12:15:27 +03:00
parent 3ac788fa02
commit 0498e8d3c3
1 changed files with 26 additions and 11 deletions

View File

@ -1,21 +1,36 @@
{ {
"config": { "config": {
"wifi-ssid": { "wifi-secure-ssid": {
"help": "WiFi SSID", "help": "WiFi SSID",
"value": "\"SSID\"" "value": "\"SSID-SECURE\""
},
"wifi-unsecure-ssid": {
"help": "WiFi SSID",
"value": "\"SSID-UNSECURE\""
}, },
"wifi-password": { "wifi-password": {
"help": "WiFi Password", "help": "WiFi Password",
"value": "\"PASS\"" "value": "\"PASSWORD\""
}, },
"wifi-networks": { "wifi-ch-secure": {
"help": "WiFi SSIDs which presence will be asserted in the test", "help": "Channel number of secure SSID",
"value": "\"SSID1\",\"SSID2\",\"SSID3\"" "value": 1
}
}, },
"target_overrides": { "wifi-ch-unsecure": {
"UBLOX_EVK_ODIN_W2": { "help": "Channel number of unsecure SSID",
"target.device_has": ["EMAC"] "value": 2
},
"ap-mac-secure": {
"help": "BSSID of secure AP in form of AA:BB:CC:DD:EE:FF",
"value": "\"AA:AA:AA:AA:AA:AA\""
},
"ap-mac-unsecure": {
"help": "BSSID of unsecure AP in form of \"AA:BB:CC:DD:EE:FF\"",
"value": "\"BB:BB:BB:BB:BB:BB\""
},
"max-scan-size": {
"help": "How many networks may appear in Wifi scan result",
"value": 10
} }
} }
} }