Skip to content

Add bare metal support to Nordic targets #14349

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 2, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 26 additions & 6 deletions targets/targets.json
Original file line number Diff line number Diff line change
Expand Up @@ -5638,15 +5638,25 @@
"is_disk_virtual": true,
"supported_toolchains": [
"GCC_ARM",
"ARM",
"IAR"
"ARM"
],
"public": false,
"detect_code": [
"1101"
],
"program_cycle_s": 6,
"bootloader_supported": true
"bootloader_supported": true,
"supported_application_profiles" : ["full", "bare-metal"],
"supported_c_libs": {
"arm": [
"std",
"small"
],
"gcc_arm": [
"std",
"small"
]
}
Comment on lines +5650 to +5659
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

For all the targets.json PRs, please ensure supported_toolchains matches supported_c_libs for the targets being changed (i.e. no IAR)

},
"NRF52_DK": {
"supported_form_factors": [
Expand Down Expand Up @@ -5796,15 +5806,25 @@
"is_disk_virtual": true,
"supported_toolchains": [
"GCC_ARM",
"ARM",
"IAR"
"ARM"
],
"public": false,
"detect_code": [
"1101"
],
"program_cycle_s": 6,
"bootloader_supported": true
"bootloader_supported": true,
"supported_application_profiles" : ["full", "bare-metal"],
"supported_c_libs": {
"arm": [
"std",
"small"
],
"gcc_arm": [
"std",
"small"
]
}
},
"NRF52840_DK": {
"supported_form_factors": [
Expand Down