mirror of https://github.com/ARMmbed/mbed-os.git
Add GR_LYCHEE as a new target board in terget.json, build_travis.py and tests.py
I added GR-LYCHEE's configuration in targets.json file. Also, I added GR_LYCHEE as a Renesas new target board in build_travis.py and tests.py.pull/5857/head
parent
7be79f93fe
commit
47acc9e551
|
@ -2531,6 +2531,14 @@
|
|||
"extra_labels": ["RZA1H", "VKRZA1H"],
|
||||
"release_versions": []
|
||||
},
|
||||
"GR_LYCHEE": {
|
||||
"inherits": ["RZ_A1XX"],
|
||||
"supported_form_factors": ["ARDUINO"],
|
||||
"extra_labels_add": ["RZA1UL", "MBRZA1LU"],
|
||||
"device_has_remove": ["ETHERNET"],
|
||||
"features_remove": ["LWIP"],
|
||||
"release_versions": ["2", "5"]
|
||||
},
|
||||
"MAXWSNENV": {
|
||||
"inherits": ["Target"],
|
||||
"core": "Cortex-M3",
|
||||
|
|
|
@ -175,7 +175,8 @@ build_list = [
|
|||
{
|
||||
"RENESAS":
|
||||
(
|
||||
{ "target": "RZ_A1H", "toolchains": "GCC_ARM" },
|
||||
{ "target": "RZ_A1H", "toolchains": "GCC_ARM" },
|
||||
{ "target": "GR_LYCHEE", "toolchains": "GCC_ARM" },
|
||||
)
|
||||
}
|
||||
]
|
||||
|
@ -351,6 +352,12 @@ linking_list = [
|
|||
"tests": {"" : ["MBED_2", "MBED_10", "MBED_11", "MBED_16"],
|
||||
}
|
||||
},
|
||||
{
|
||||
"target": "GR_LYCHEE",
|
||||
"toolchains": "GCC_ARM",
|
||||
"tests": {"" : ["MBED_2", "MBED_10", "MBED_11", "MBED_16"],
|
||||
}
|
||||
},
|
||||
)
|
||||
}
|
||||
]
|
||||
|
|
|
@ -584,7 +584,7 @@ TESTS = [
|
|||
"id": "MBED_29", "description": "CAN network test",
|
||||
"source_dir": join(TEST_DIR, "mbed", "can"),
|
||||
"dependencies": [MBED_LIBRARIES],
|
||||
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "B96B_F446VE", "NUCLEO_F091RC",
|
||||
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "GR_LYCHEE", "B96B_F446VE", "NUCLEO_F091RC",
|
||||
"NUCLEO_F072RB", "NUCLEO_F042K6", "NUCLEO_F334R8", "NUCLEO_F303RE",
|
||||
"NUCLEO_F303K8", "NUCLEO_F302R8", "NUCLEO_F446RE","NUCLEO_F446ZE", "DISCO_F469NI", "NUCLEO_F207ZG",
|
||||
"DISCO_F429ZI", "NUCLEO_F103RB", "NUCLEO_F746ZG", "DISCO_F746NG",
|
||||
|
@ -595,7 +595,7 @@ TESTS = [
|
|||
"id": "MBED_30", "description": "CAN network test using interrupts",
|
||||
"source_dir": join(TEST_DIR, "mbed", "can_interrupt"),
|
||||
"dependencies": [MBED_LIBRARIES],
|
||||
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "B96B_F446VE", "NUCLEO_F091RC", "NUCLEO_F207ZG",
|
||||
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "GR_LYCHEE", "B96B_F446VE", "NUCLEO_F091RC", "NUCLEO_F207ZG",
|
||||
"NUCLEO_F072RB", "NUCLEO_F042K6", "NUCLEO_F334R8", "NUCLEO_F303RE",
|
||||
"NUCLEO_F303K8", "NUCLEO_F302R8", "NUCLEO_F446RE", "NUCLEO_F446ZE", "DISCO_F469NI",
|
||||
"DISCO_F429ZI", "NUCLEO_F103RB", "NUCLEO_F746ZG", "DISCO_F746NG",
|
||||
|
|
Loading…
Reference in New Issue