Updated greentea network interface configuration files

pull/6847/head
Mika Leppänen 2018-01-08 10:04:11 +02:00 committed by Kevin Bracey
parent 74dfe3423a
commit 28ff255533
5 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@
},
"connect-statement" : {
"help" : "Must use 'net' variable name",
"value" : "((EthernetInterface *)net)->connect()"
"value" : "net->connect()"
},
"echo-server-addr" : {
"help" : "IP address of echo server",

View File

@ -9,7 +9,7 @@
},
"connect-statement" : {
"help" : "Must use 'net' variable name",
"value" : "((EthernetInterface *)net)->connect()"
"value" : "net->connect()"
},
"echo-server-addr" : {
"help" : "IP address of echo server",

View File

@ -9,7 +9,7 @@
},
"connect-statement" : {
"help" : "Must use 'net' variable name",
"value" : "((OdinWiFiInterface *)net)->connect(WIFI_SSID, WIFI_PASSWORD)"
"value" : "net->wifiInterface()->connect(WIFI_SSID, WIFI_PASSWORD)"
},
"echo-server-addr" : {
"help" : "IP address of echo server",

View File

@ -9,7 +9,7 @@
},
"connect-statement" : {
"help" : "Must use 'net' variable name",
"value" : "((EthernetInterface *)net)->connect()"
"value" : "net->connect()"
},
"echo-server-addr" : {
"help" : "IP address of echo server",

View File

@ -9,7 +9,7 @@
},
"connect-statement" : {
"help" : "Must use 'net' variable name, replace WIFI_SSID, WIFI_PASSWORD, WIFI_SECURITY, WIFI_CHANNEL with your WiFi settings",
"value" : "((RTWInterface *)net)->connect(WIFI_SSID, WIFI_PASSWORD, WIFI_SECURITY, WIFI_CHANNEL)"
"value" : "net->wifiInterface()->connect(WIFI_SSID, WIFI_PASSWORD, WIFI_SECURITY, WIFI_CHANNEL)"
},
"echo-server-addr" : {
"help" : "IP address of echo server",