Skip to content

Commit 64bc9d9

Browse files
authored
Merge pull request #12775 from MarceloSalazar/platform_cleanup
Remove unsupported targets
2 parents 33563b3 + 73206b5 commit 64bc9d9

File tree

1,481 files changed

+106
-577294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,481 files changed

+106
-577294
lines changed

TESTS/integration/COMMON/target_extended.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@
172172
"lwip.tcp-enabled" : true,
173173
"mbed-trace.enable" : false
174174
},
175-
"MTB_MXCHIP_EMW3166": {
175+
"WIO_EMW3166": {
176176
"target.components_add" : ["SPIF"],
177177
"spif-driver.SPI_MOSI" : "PB_15",
178178
"spif-driver.SPI_MISO" : "PB_14",

TESTS/network/emac/main.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,9 @@
3333
#else
3434

3535
#if (MBED_CONF_TARGET_NETWORK_DEFAULT_INTERFACE_TYPE == WIFI) && \
36-
!defined(TARGET_UBLOX_EVK_ODIN_W2) && \
37-
!defined(TARGET_REALTEK_RTL8195AM) && \
3836
!defined(TARGET_MTB_ADV_WISE_1530) && \
3937
!defined(TARGET_MTB_USI_WM_BN_BM_22) && \
40-
!defined(TARGET_MTB_MXCHIP_EMW3166) && \
41-
!defined(TARGET_MTB_UBLOX_ODIN_W2) && \
42-
!defined(TARGET_UNO_91H)
38+
!defined(TARGET_WIO_EMW3166)
4339
#error [NOT_SUPPORTED] Wifi tests are not valid for the target
4440
#else
4541

TESTS/network/emac/mbed_lib.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55
"NO_SUPPORT_FOR_IPV4_MULTICAST_FILTER": false
66
},
77
"target_overrides": {
8-
"MTB_UBLOX_ODIN_W2": {
9-
"NO_SUPPORT_FOR_MULTICAST_FILTER": true
10-
},
11-
"UBLOX_EVK_ODIN_W2": {
12-
"NO_SUPPORT_FOR_MULTICAST_FILTER": true
13-
},
14-
"MTB_MXCHIP_EMW3166": {
8+
"WIO_EMW3166": {
159
"NO_SUPPORT_FOR_IPV4_MULTICAST_FILTER": true
1610
},
1711
"MTB_ADV_WISE_1530": {

TEST_APPS/device/socket_app/mbed_app.json

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@
1313
"platform.stdio-buffered-serial": true,
1414
"platform.stdio-flush-at-exit": true,
1515
"drivers.uart-serial-rxbuf-size": 768
16-
},
17-
"UBLOX_EVK_ODIN_W2" : {
18-
"target.device_has_remove": ["EMAC"]
1916
}
2017
}
2118
}

TEST_APPS/readme.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,15 @@ If you only want to run some specific tests, you can use the `-n` option. You ca
4242

4343
#### Running the tests with a specific test-config
4444

45-
Some devices may offer multiple network interfaces to operate with. For example, `UBLOX_EVK_ODIN_W2` offers ethernet and Wi-Fi capabilities.
46-
47-
The tests can be run for either one of those using already existing test-config -files.
45+
Some devices may offer multiple network interfaces to operate with. The tests can be run for either one of those using already existing test-config -files.
4846

4947
To run the tests with the Wi-Fi interface:
5048

51-
`mbed test -m UBLOX_EVK_ODIN_W2 -t <toolchain> --icetea --test-config tools/test_configs/HeapBlockDeviceAndWifiInterface.json`
49+
`mbed test -m <target> -t <toolchain> --icetea --test-config tools/test_configs/HeapBlockDeviceAndWifiInterface.json`
5250

5351
To run the tests with the ethernet interface:
5452

55-
`mbed test -m UBLOX_EVK_ODIN_W2 -t <toolchain> --icetea --test-config tools/test_configs/HeapBlockDeviceAndEthernetInterface.json`
53+
`mbed test -m <target> -t <toolchain> --icetea --test-config tools/test_configs/HeapBlockDeviceAndEthernetInterface.json`
5654

5755
#### Providing Wi-Fi access point information
5856

TEST_APPS/testcases/nanostack_mac_tester/ED_scan.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self):
4242
'*': {
4343
"count":3,
4444
"type": "hardware",
45-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
45+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4646
"application": {
4747
"name": "TEST_APPS-device-nanostack_mac_tester"
4848
}

TEST_APPS/testcases/nanostack_mac_tester/address_read_and_write.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
'*': {
4242
"count":1,
4343
"type": "hardware",
44-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
44+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4545
"application": {
4646
"name": "TEST_APPS-device-nanostack_mac_tester"
4747
}

TEST_APPS/testcases/nanostack_mac_tester/create_and_join_PAN.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
'*': {
4242
"count":3,
4343
"type": "hardware",
44-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
44+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4545
"application": {
4646
"name": "TEST_APPS-device-nanostack_mac_tester"
4747
}

TEST_APPS/testcases/nanostack_mac_tester/send_data.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
'*': {
4242
"count":2,
4343
"type": "hardware",
44-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
44+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4545
"application": {
4646
"name": "TEST_APPS-device-nanostack_mac_tester"
4747
}

TEST_APPS/testcases/nanostack_mac_tester/send_data_indirect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
'*': {
4242
"count":3,
4343
"type": "hardware",
44-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
44+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4545
"application": {
4646
"name": "TEST_APPS-device-nanostack_mac_tester"
4747
}

TEST_APPS/testcases/nanostack_mac_tester/send_large_payloads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ def __init__(self):
4141
'*': {
4242
"count":2,
4343
"type": "hardware",
44-
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "UBLOX_EVK_ODIN_W2", "KW41Z"],
44+
"allowed_platforms": ["K64F", "K66F", "NUCLEO_F429ZI", "KW24D", "KW41Z"],
4545
"application": {
4646
"name": "TEST_APPS-device-nanostack_mac_tester"
4747
}

components/storage/blockdevice/COMPONENT_SD/mbed_lib.json

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -113,18 +113,6 @@
113113
"SPI_CLK": "D13",
114114
"SPI_CS": "D10"
115115
},
116-
"UBLOX_EVK_ODIN_W2": {
117-
"SPI_CS": "D9",
118-
"SPI_MOSI": "D11",
119-
"SPI_MISO": "D12",
120-
"SPI_CLK": "D13"
121-
},
122-
"MTB_UBLOX_ODIN_W2": {
123-
"SPI_CS": "PG_4",
124-
"SPI_MOSI": "PE_14",
125-
"SPI_MISO": "PE_13",
126-
"SPI_CLK": "PE_12"
127-
},
128116
"RZ_A1H": {
129117
"SPI_MOSI": "P8_5",
130118
"SPI_MISO": "P8_6",
@@ -161,12 +149,6 @@
161149
"SPI_CLK": "p7",
162150
"SPI_CS": "p8"
163151
},
164-
"REALTEK_RTL8195AM": {
165-
"SPI_MOSI": "D11",
166-
"SPI_MISO": "D12",
167-
"SPI_CLK": "D13",
168-
"SPI_CS": "D10"
169-
},
170152
"CC3220SF_LAUNCHXL": {
171153
"SPI_MOSI": "D11",
172154
"SPI_MISO": "D12",

components/storage/blockdevice/COMPONENT_SPIF/mbed_lib.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -37,19 +37,13 @@
3737
"SPI_CLK": "PTD5",
3838
"SPI_CS": "PTD4"
3939
},
40-
"MTB_UBLOX_ODIN_W2": {
41-
"SPI_MOSI": "PE_14",
42-
"SPI_MISO": "PE_13",
43-
"SPI_CLK": "PE_12",
44-
"SPI_CS": "PE_11"
45-
},
4640
"MTB_ADV_WISE_1530": {
4741
"SPI_MOSI": "PC_3",
4842
"SPI_MISO": "PC_2",
4943
"SPI_CLK": "PB_13",
5044
"SPI_CS": "PC_12"
5145
},
52-
"MTB_MXCHIP_EMW3166": {
46+
"WIO_EMW3166": {
5347
"SPI_MOSI": "PB_15",
5448
"SPI_MISO": "PB_14",
5549
"SPI_CLK": "PB_13",

0 commit comments

Comments
 (0)