mirror of https://github.com/ARMmbed/mbed-os.git
Add bare metal support to Renesas targets
Modify RZ_A1XX and RZ_A2XX target configurations to include bare metal as a supported profile,and add list of supported standard libraries. Changes affect the following targets: RZ_A1H, GR_LYCHEE, GR_MANGO.pull/14301/head
parent
26606218ad
commit
15a263f453
|
|
@ -4841,6 +4841,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": {
|
||||||
|
|
@ -4956,7 +4967,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