diff --git a/.gitignore b/.gitignore index 85873b59..1674601d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ # Normal west builds will place the Rust target directory under the build directory. However, # sometimes IDEs and such will litter these target directories as well. +build*/ target/ # None of this code is an application, so don't capture any of the dependencies in the lock file. diff --git a/dt-rust.yaml b/dt-rust.yaml index 01c747ab..d083c3ac 100644 --- a/dt-rust.yaml +++ b/dt-rust.yaml @@ -35,6 +35,7 @@ names: - "nordic,nrf52-flash-controller" - "nordic,nrf51-flash-controller" + - "nordic,rram-controller" - "raspberrypi,pico-flash-controller" - "zephyr,sim-flash" - "st,stm32-flash-controller" diff --git a/samples/async-philosophers/sample.yaml b/samples/async-philosophers/sample.yaml index 1b960183..d72fcdc7 100644 --- a/samples/async-philosophers/sample.yaml +++ b/samples/async-philosophers/sample.yaml @@ -15,6 +15,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust.work-philosopher: tags: introduction diff --git a/samples/async-philosophers/src/lib.rs b/samples/async-philosophers/src/lib.rs index 0cf4b3b7..a8cf1f14 100644 --- a/samples/async-philosophers/src/lib.rs +++ b/samples/async-philosophers/src/lib.rs @@ -26,7 +26,10 @@ const NUM_PHIL: usize = 6; #[no_mangle] extern "C" fn rust_main() { - printkln!("Async dining philosophers{}", zephyr::kconfig::CONFIG_BOARD); + printkln!( + "Async dining philosophers {}", + zephyr::kconfig::CONFIG_BOARD + ); printkln!("Time tick: {}", zephyr::time::SYS_FREQUENCY); let executor = EXECUTOR.init(Executor::new()); diff --git a/samples/bench/sample.yaml b/samples/bench/sample.yaml index 0d8e5c1e..87832aab 100644 --- a/samples/bench/sample.yaml +++ b/samples/bench/sample.yaml @@ -16,6 +16,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust/bench.plain: tags: benchmark diff --git a/samples/blinky/sample.yaml b/samples/blinky/sample.yaml index 169fa5ed..7e1ea701 100644 --- a/samples/blinky/sample.yaml +++ b/samples/blinky/sample.yaml @@ -9,6 +9,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust.basic.blinky: tags: diff --git a/samples/embassy/sample.yaml b/samples/embassy/sample.yaml index c4a24cf5..b4f76c9f 100644 --- a/samples/embassy/sample.yaml +++ b/samples/embassy/sample.yaml @@ -15,6 +15,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust.embassyhello: tags: introduction diff --git a/samples/hello_world/sample.yaml b/samples/hello_world/sample.yaml index 48d2a383..990ab132 100644 --- a/samples/hello_world/sample.yaml +++ b/samples/hello_world/sample.yaml @@ -15,6 +15,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust.helloworld: tags: introduction diff --git a/samples/philosophers/sample.yaml b/samples/philosophers/sample.yaml index 8738850c..75feb3a2 100644 --- a/samples/philosophers/sample.yaml +++ b/samples/philosophers/sample.yaml @@ -17,6 +17,7 @@ common: - qemu_riscv32 - qemu_riscv64 - nrf52840dk/nrf52840 + - nrf54l15dk/nrf54l15/cpuapp tests: sample.rust.philosopher.semaphore: tags: introduction