Add support for nrf54l15dk/nrf54l15/cpuflpr#129
Open
masz-nordic wants to merge 11 commits into
Open
Conversation
RRAM controller is used on the nRF54L series. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
Space was missing before board name. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
Tested manually, all tests are passing. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
Ignore the build directory. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
Tier 3 no-std targets that require building core and alloc from source. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
BOARD_TARGET is more specific about which core runs the sample. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
Some targets need to be built with nightly and `-Z build-std=core,alloc`
It is possible to build for that target with nightly and standard library built from source.
Due to memory constraints, only samples built in release configuration can be enabled. Signed-off-by: Marcin Szymczyk <marcin.szymczyk@nordicsemi.no>
masz-nordic
force-pushed
the
flpr_support
branch
from
August 22, 2025 14:41
0f4024b to
c5877ce
Compare
d3zd3z
approved these changes
Sep 4, 2025
d3zd3z
left a comment
Collaborator
There was a problem hiding this comment.
Looks good, and thank you for this contribution. This should help us get more targets that don't use build configurations that exactly match one tier 1 or 2 of Rust.
I think there is still a rustfmt issue with one of the longer names, but I'm not seeing it locally.
| } | ||
|
|
||
| info!("Hello world from Rust on {}", zephyr::kconfig::CONFIG_BOARD); | ||
| info!("Hello world from Rust on {}", zephyr::kconfig::CONFIG_BOARD_TARGET); |
Collaborator
There was a problem hiding this comment.
You'll need to either format these manual, or just use cargo fmt to reflow them. With the longer name, it breaks this across multiple lines.
The longer identifier for the board messages causes rustfmt to flow this onto multiple lines. Apply this change so that the check will pass during CI. Signed-off-by: David Brown <david.brown@linaro.org>
eHammarstrom
approved these changes
Dec 19, 2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Depends on:
#128
#108