Skip to content

Commit 50d4c25

Browse files
TomoYamanakaadbridge
authored andcommitted
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.
1 parent caeaa49 commit 50d4c25

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

targets/targets.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2567,6 +2567,14 @@
25672567
"extra_labels": ["RZA1H", "VKRZA1H"],
25682568
"release_versions": []
25692569
},
2570+
"GR_LYCHEE": {
2571+
"inherits": ["RZ_A1XX"],
2572+
"supported_form_factors": ["ARDUINO"],
2573+
"extra_labels_add": ["RZA1UL", "MBRZA1LU"],
2574+
"device_has_remove": ["ETHERNET"],
2575+
"features_remove": ["LWIP"],
2576+
"release_versions": ["2", "5"]
2577+
},
25702578
"MAXWSNENV": {
25712579
"inherits": ["Target"],
25722580
"core": "Cortex-M3",

tools/build_travis.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@
175175
{
176176
"RENESAS":
177177
(
178-
{ "target": "RZ_A1H", "toolchains": "GCC_ARM" },
178+
{ "target": "RZ_A1H", "toolchains": "GCC_ARM" },
179+
{ "target": "GR_LYCHEE", "toolchains": "GCC_ARM" },
179180
)
180181
}
181182
]
@@ -351,6 +352,12 @@
351352
"tests": {"" : ["MBED_2", "MBED_10", "MBED_11", "MBED_16"],
352353
}
353354
},
355+
{
356+
"target": "GR_LYCHEE",
357+
"toolchains": "GCC_ARM",
358+
"tests": {"" : ["MBED_2", "MBED_10", "MBED_11", "MBED_16"],
359+
}
360+
},
354361
)
355362
}
356363
]

tools/tests.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@
584584
"id": "MBED_29", "description": "CAN network test",
585585
"source_dir": join(TEST_DIR, "mbed", "can"),
586586
"dependencies": [MBED_LIBRARIES],
587-
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "B96B_F446VE", "NUCLEO_F091RC",
587+
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "GR_LYCHEE", "B96B_F446VE", "NUCLEO_F091RC",
588588
"NUCLEO_F072RB", "NUCLEO_F042K6", "NUCLEO_F334R8", "NUCLEO_F303RE",
589589
"NUCLEO_F303K8", "NUCLEO_F302R8", "NUCLEO_F446RE","NUCLEO_F446ZE", "DISCO_F469NI", "NUCLEO_F207ZG",
590590
"DISCO_F429ZI", "NUCLEO_F103RB", "NUCLEO_F746ZG", "DISCO_F746NG",
@@ -595,7 +595,7 @@
595595
"id": "MBED_30", "description": "CAN network test using interrupts",
596596
"source_dir": join(TEST_DIR, "mbed", "can_interrupt"),
597597
"dependencies": [MBED_LIBRARIES],
598-
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "B96B_F446VE", "NUCLEO_F091RC", "NUCLEO_F207ZG",
598+
"mcu": ["LPC1768", "LPC4088", "LPC1549", "RZ_A1H", "GR_LYCHEE", "B96B_F446VE", "NUCLEO_F091RC", "NUCLEO_F207ZG",
599599
"NUCLEO_F072RB", "NUCLEO_F042K6", "NUCLEO_F334R8", "NUCLEO_F303RE",
600600
"NUCLEO_F303K8", "NUCLEO_F302R8", "NUCLEO_F446RE", "NUCLEO_F446ZE", "DISCO_F469NI",
601601
"DISCO_F429ZI", "NUCLEO_F103RB", "NUCLEO_F746ZG", "DISCO_F746NG",

0 commit comments

Comments
 (0)