Merge pull request #14301 from harmut01/baremetal_renesas

Add bare metal support to Renesas targets
pull/14402/head
Martin Kojtal 2021-03-09 17:31:43 +00:00 committed by GitHub
commit 5f9fbfe9f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 25 additions and 4 deletions

View File

@ -4891,8 +4891,7 @@
"core": "Cortex-A9",
"supported_toolchains": [
"ARM",
"GCC_ARM",
"IAR"
"GCC_ARM"
],
"extra_labels": [
"RENESAS",
@ -4924,6 +4923,17 @@
"program_cycle_s": 2,
"overrides": {
"network-default-interface-type": "ETHERNET"
},
"supported_application_profiles" : ["full", "bare-metal"],
"supported_c_libs": {
"arm": [
"std",
"small"
],
"gcc_arm": [
"std",
"small"
]
}
},
"RZ_A1H": {
@ -5013,7 +5023,7 @@
"inherits": ["Target"],
"public": false,
"core": "Cortex-A9",
"supported_toolchains": ["ARM", "GCC_ARM", "IAR"],
"supported_toolchains": ["ARM", "GCC_ARM"],
"extra_labels": ["RENESAS", "RZ_A2XX"],
"device_has": [
"SLEEP",
@ -5039,7 +5049,18 @@
"STDIO_MESSAGES",
"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": {
"inherits": ["RZ_A2XX"],