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", "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"],