mirror of https://github.com/ARMmbed/mbed-os.git
Add new Odin configuraiton to remove emac device_has
parent
26aa4eaa6a
commit
8ef849da79
|
|
@ -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"]
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
{
|
||||
"ETHERNET" : "EthernetInterface.json",
|
||||
"ODIN_WIFI" : "OdinInterface.json"
|
||||
"ODIN_WIFI" : "OdinInterface.json",
|
||||
"ODIN_ETHERNET" : "Odin_EthernetInterface.json"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
Loading…
Reference in New Issue