Add new Odin configuraiton to remove emac device_has

pull/4795/head
Sarah Marsh 2017-08-24 17:30:30 -05:00
parent 26aa4eaa6a
commit 8ef849da79
3 changed files with 36 additions and 3 deletions

View File

@ -0,0 +1,32 @@
{
"config": {
"header-file": {
"help" : "String for including your driver header file",
"value" : "\"EthernetInterface.h\""
},
"object-construction" : {
"value" : "new EthernetInterface()"
},
"connect-statement" : {
"help" : "Must use 'net' variable name",
"value" : "((EthernetInterface *)net)->connect()"
},
"echo-server-addr" : {
"help" : "IP address of echo server",
"value" : "\"195.34.89.241\""
},
"echo-server-port" : {
"help" : "Port of echo server",
"value" : "7"
},
"tcp-echo-prefix" : {
"help" : "Some servers send a prefix before echoed message",
"value" : "\"u-blox AG TCP/UDP test service\\n\""
}
},
"target_overrides": {
"UBLOX_EVK_ODIN_W2": {
"target.device_has_remove": ["EMAC"]
}
}
}

View File

@ -1,4 +1,5 @@
{
"ETHERNET" : "EthernetInterface.json",
"ODIN_WIFI" : "OdinInterface.json"
"ODIN_WIFI" : "OdinInterface.json",
"ODIN_ETHERNET" : "Odin_EthernetInterface.json"
}

View File

@ -1,7 +1,7 @@
{
"UBLOX_EVK_ODIN_W2": {
"default_test_configuration": "ETHERNET",
"test_configurations": ["ODIN_WIFI", "ETHERNET"]
"default_test_configuration": "ODIN_ETHERNET",
"test_configurations": ["ODIN_WIFI", "ODIN_ETHERNET"]
},
"K64F": {
"default_test_configuration": "ETHERNET",