mirror of https://github.com/ARMmbed/mbed-os.git
targets: add rtos profile by default
Every target is assumed to supported Mbed OS. If its not the case, it supports only baremetal. Thus removing rtos, and adding bare-metal to the app profile.pull/12982/head
parent
07084a5212
commit
d6fbda35d7
|
@ -32,6 +32,9 @@
|
||||||
"std"
|
"std"
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
|
"supported_application_profiles": [
|
||||||
|
"rtos"
|
||||||
|
],
|
||||||
"config": {
|
"config": {
|
||||||
"console-uart": {
|
"console-uart": {
|
||||||
"help": "Target has UART console on pins STDIO_UART_TX, STDIO_UART_RX. Value is only significant if target has SERIAL device.",
|
"help": "Target has UART console on pins STDIO_UART_TX, STDIO_UART_RX. Value is only significant if target has SERIAL device.",
|
||||||
|
@ -313,7 +316,12 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"c_lib": "small",
|
"c_lib": "small",
|
||||||
"supported_application_profiles": ["bare-metal"],
|
"supported_application_profiles_add": [
|
||||||
|
"bare-metal"
|
||||||
|
],
|
||||||
|
"supported_application_profiles_remove": [
|
||||||
|
"rtos"
|
||||||
|
],
|
||||||
"device_name": "LPC1114FN28/102",
|
"device_name": "LPC1114FN28/102",
|
||||||
"detect_code": [
|
"detect_code": [
|
||||||
"1114"
|
"1114"
|
||||||
|
@ -1225,9 +1233,12 @@
|
||||||
],
|
],
|
||||||
"public": false,
|
"public": false,
|
||||||
"c_lib": "small",
|
"c_lib": "small",
|
||||||
"supported_application_profiles": [
|
"supported_application_profiles_add": [
|
||||||
"bare-metal"
|
"bare-metal"
|
||||||
],
|
],
|
||||||
|
"supported_application_profiles_remove": [
|
||||||
|
"rtos"
|
||||||
|
],
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"boot-stack-size": "0x400"
|
"boot-stack-size": "0x400"
|
||||||
}
|
}
|
||||||
|
@ -5915,9 +5926,12 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"c_lib": "small",
|
"c_lib": "small",
|
||||||
"supported_application_profiles": [
|
"supported_application_profiles_add": [
|
||||||
"bare-metal"
|
"bare-metal"
|
||||||
],
|
],
|
||||||
|
"supported_application_profiles_remove": [
|
||||||
|
"rtos"
|
||||||
|
],
|
||||||
"sectors": [
|
"sectors": [
|
||||||
[
|
[
|
||||||
0,
|
0,
|
||||||
|
@ -6023,9 +6037,12 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"c_lib": "small",
|
"c_lib": "small",
|
||||||
"supported_application_profiles": [
|
"supported_application_profiles_add": [
|
||||||
"bare-metal"
|
"bare-metal"
|
||||||
],
|
],
|
||||||
|
"supported_application_profiles_remove": [
|
||||||
|
"rtos"
|
||||||
|
],
|
||||||
"device_name": "NANO130KE3BN",
|
"device_name": "NANO130KE3BN",
|
||||||
"overrides": {
|
"overrides": {
|
||||||
"deep-sleep-latency": 1,
|
"deep-sleep-latency": 1,
|
||||||
|
|
Loading…
Reference in New Issue