mirror of https://github.com/ARMmbed/mbed-os.git
Merge pull request #14301 from harmut01/baremetal_renesas
Add bare metal support to Renesas targetspull/14402/head
commit
5f9fbfe9f6
|
@ -4891,8 +4891,7 @@
|
||||||
"core": "Cortex-A9",
|
"core": "Cortex-A9",
|
||||||
"supported_toolchains": [
|
"supported_toolchains": [
|
||||||
"ARM",
|
"ARM",
|
||||||
"GCC_ARM",
|
"GCC_ARM"
|
||||||
"IAR"
|
|
||||||
],
|
],
|
||||||
"extra_labels": [
|
"extra_labels": [
|
||||||
"RENESAS",
|
"RENESAS",
|
||||||
|
@ -4924,6 +4923,17 @@
|
||||||
"program_cycle_s": 2,
|
"program_cycle_s": 2,
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"network-default-interface-type": "ETHERNET"
|
"network-default-interface-type": "ETHERNET"
|
||||||
|
},
|
||||||
|
"supported_application_profiles" : ["full", "bare-metal"],
|
||||||
|
"supported_c_libs": {
|
||||||
|
"arm": [
|
||||||
|
"std",
|
||||||
|
"small"
|
||||||
|
],
|
||||||
|
"gcc_arm": [
|
||||||
|
"std",
|
||||||
|
"small"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"RZ_A1H": {
|
"RZ_A1H": {
|
||||||
|
@ -5013,7 +5023,7 @@
|
||||||
"inherits": ["Target"],
|
"inherits": ["Target"],
|
||||||
"public": false,
|
"public": false,
|
||||||
"core": "Cortex-A9",
|
"core": "Cortex-A9",
|
||||||
"supported_toolchains": ["ARM", "GCC_ARM", "IAR"],
|
"supported_toolchains": ["ARM", "GCC_ARM"],
|
||||||
"extra_labels": ["RENESAS", "RZ_A2XX"],
|
"extra_labels": ["RENESAS", "RZ_A2XX"],
|
||||||
"device_has": [
|
"device_has": [
|
||||||
"SLEEP",
|
"SLEEP",
|
||||||
|
@ -5039,7 +5049,18 @@
|
||||||
"STDIO_MESSAGES",
|
"STDIO_MESSAGES",
|
||||||
"USBDEVICE"
|
"USBDEVICE"
|
||||||
],
|
],
|
||||||
"program_cycle_s": 2
|
"program_cycle_s": 2,
|
||||||
|
"supported_application_profiles" : ["full", "bare-metal"],
|
||||||
|
"supported_c_libs": {
|
||||||
|
"arm": [
|
||||||
|
"std",
|
||||||
|
"small"
|
||||||
|
],
|
||||||
|
"gcc_arm": [
|
||||||
|
"std",
|
||||||
|
"small"
|
||||||
|
]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"GR_MANGO": {
|
"GR_MANGO": {
|
||||||
"inherits": ["RZ_A2XX"],
|
"inherits": ["RZ_A2XX"],
|
||||||
|
|
Loading…
Reference in New Issue