aboutsummaryrefslogtreecommitdiff
path: root/examples/boot/application/nrf
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2022-06-24 19:56:15 +0200
committerUlf Lilleengen <[email protected]>2022-06-24 19:56:15 +0200
commit776be79f7bb10b09e795e2ea93bb795a653c9b4c (patch)
tree269046d330ee503c84049bb8fc47baf0297ecb80 /examples/boot/application/nrf
parent84628d36cf743193cbf0e7d47ef1cfa9fb590890 (diff)
Move bootloader main to examples
This should remove some confusion around embassy-boot-* being a library vs. a binary. The binary is now an example bootloader instead.
Diffstat (limited to 'examples/boot/application/nrf')
-rw-r--r--examples/boot/application/nrf/.cargo/config.toml9
-rw-r--r--examples/boot/application/nrf/Cargo.toml18
-rw-r--r--examples/boot/application/nrf/README.md34
-rw-r--r--examples/boot/application/nrf/build.rs34
-rw-r--r--examples/boot/application/nrf/memory-bl.x18
-rw-r--r--examples/boot/application/nrf/memory.x15
-rw-r--r--examples/boot/application/nrf/src/bin/a.rs43
-rw-r--r--examples/boot/application/nrf/src/bin/b.rs23
8 files changed, 194 insertions, 0 deletions
diff --git a/examples/boot/application/nrf/.cargo/config.toml b/examples/boot/application/nrf/.cargo/config.toml
new file mode 100644
index 000000000..8ca28df39
--- /dev/null
+++ b/examples/boot/application/nrf/.cargo/config.toml
@@ -0,0 +1,9 @@
1[target.'cfg(all(target_arch = "arm", target_os = "none"))']
2# replace nRF82840_xxAA with your chip as listed in `probe-run --list-chips`
3runner = "probe-run --chip nRF52840_xxAA"
4
5[build]
6target = "thumbv7em-none-eabi"
7
8[env]
9DEFMT_LOG = "trace"
diff --git a/examples/boot/application/nrf/Cargo.toml b/examples/boot/application/nrf/Cargo.toml
new file mode 100644
index 000000000..0ae7163c3
--- /dev/null
+++ b/examples/boot/application/nrf/Cargo.toml
@@ -0,0 +1,18 @@
1[package]
2edition = "2021"
3name = "embassy-boot-nrf-examples"
4version = "0.1.0"
5
6[dependencies]
7embassy = { version = "0.1.0", path = "../../../../embassy", features = ["nightly"] }
8embassy-nrf = { version = "0.1.0", path = "../../../../embassy-nrf", features = ["time-driver-rtc1", "gpiote", "nightly", "nrf52840"] }
9embassy-boot-nrf = { version = "0.1.0", path = "../../../../embassy-boot/nrf" }
10embassy-embedded-hal = { version = "0.1.0", path = "../../../../embassy-embedded-hal" }
11
12defmt = { version = "0.3", optional = true }
13defmt-rtt = { version = "0.3", optional = true }
14panic-reset = { version = "0.1.1" }
15embedded-hal = { version = "0.2.6" }
16
17cortex-m = "0.7.3"
18cortex-m-rt = "0.7.0"
diff --git a/examples/boot/application/nrf/README.md b/examples/boot/application/nrf/README.md
new file mode 100644
index 000000000..703377a20
--- /dev/null
+++ b/examples/boot/application/nrf/README.md
@@ -0,0 +1,34 @@
1# Examples using bootloader
2
3Example for nRF52 demonstrating the bootloader. The example consists of application binaries, 'a'
4which allows you to press a button to start the DFU process, and 'b' which is the updated
5application.
6
7
8## Prerequisites
9
10* `cargo-binutils`
11* `cargo-flash`
12* `embassy-boot-nrf`
13
14## Usage
15
16
17
18```
19# Use bare metal linker script
20cp memory-bl.x ../../bootloader/nrf/memory.x
21
22# Flash bootloader
23cargo flash --manifest-path ../../bootloader/nrf/Cargo.toml --features embassy-nrf/nrf52840 --release --chip nRF52840_xxAA
24# Build 'b'
25cargo build --release --bin b
26# Generate binary for 'b'
27cargo objcopy --release --bin b -- -O binary b.bin
28```
29
30# Flash `a` (which includes b.bin)
31
32```
33cargo flash --release --bin a --chip nRF52840_xxAA
34```
diff --git a/examples/boot/application/nrf/build.rs b/examples/boot/application/nrf/build.rs
new file mode 100644
index 000000000..cd1a264c4
--- /dev/null
+++ b/examples/boot/application/nrf/build.rs
@@ -0,0 +1,34 @@
1//! This build script copies the `memory.x` file from the crate root into
2//! a directory where the linker can always find it at build time.
3//! For many projects this is optional, as the linker always searches the
4//! project root directory -- wherever `Cargo.toml` is. However, if you
5//! are using a workspace or have a more complicated build setup, this
6//! build script becomes required. Additionally, by requesting that
7//! Cargo re-run the build script whenever `memory.x` is changed,
8//! updating `memory.x` ensures a rebuild of the application with the
9//! new memory settings.
10
11use std::env;
12use std::fs::File;
13use std::io::Write;
14use std::path::PathBuf;
15
16fn main() {
17 // Put `memory.x` in our output directory and ensure it's
18 // on the linker search path.
19 let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
20 File::create(out.join("memory.x"))
21 .unwrap()
22 .write_all(include_bytes!("memory.x"))
23 .unwrap();
24 println!("cargo:rustc-link-search={}", out.display());
25
26 // By default, Cargo will re-run a build script whenever
27 // any file in the project changes. By specifying `memory.x`
28 // here, we ensure the build script is only re-run when
29 // `memory.x` is changed.
30 println!("cargo:rerun-if-changed=memory.x");
31
32 println!("cargo:rustc-link-arg-bins=--nmagic");
33 println!("cargo:rustc-link-arg-bins=-Tlink.x");
34}
diff --git a/examples/boot/application/nrf/memory-bl.x b/examples/boot/application/nrf/memory-bl.x
new file mode 100644
index 000000000..8a32b905f
--- /dev/null
+++ b/examples/boot/application/nrf/memory-bl.x
@@ -0,0 +1,18 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 FLASH : ORIGIN = 0x00000000, LENGTH = 24K
5 BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
6 ACTIVE : ORIGIN = 0x00007000, LENGTH = 64K
7 DFU : ORIGIN = 0x00017000, LENGTH = 68K
8 RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 32K
9}
10
11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);
12__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE);
13
14__bootloader_active_start = ORIGIN(ACTIVE);
15__bootloader_active_end = ORIGIN(ACTIVE) + LENGTH(ACTIVE);
16
17__bootloader_dfu_start = ORIGIN(DFU);
18__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU);
diff --git a/examples/boot/application/nrf/memory.x b/examples/boot/application/nrf/memory.x
new file mode 100644
index 000000000..3a54ca460
--- /dev/null
+++ b/examples/boot/application/nrf/memory.x
@@ -0,0 +1,15 @@
1MEMORY
2{
3 /* NOTE 1 K = 1 KiBi = 1024 bytes */
4 BOOTLOADER : ORIGIN = 0x00000000, LENGTH = 24K
5 BOOTLOADER_STATE : ORIGIN = 0x00006000, LENGTH = 4K
6 FLASH : ORIGIN = 0x00007000, LENGTH = 64K
7 DFU : ORIGIN = 0x00017000, LENGTH = 68K
8 RAM (rwx) : ORIGIN = 0x20000008, LENGTH = 32K
9}
10
11__bootloader_state_start = ORIGIN(BOOTLOADER_STATE);
12__bootloader_state_end = ORIGIN(BOOTLOADER_STATE) + LENGTH(BOOTLOADER_STATE);
13
14__bootloader_dfu_start = ORIGIN(DFU);
15__bootloader_dfu_end = ORIGIN(DFU) + LENGTH(DFU);
diff --git a/examples/boot/application/nrf/src/bin/a.rs b/examples/boot/application/nrf/src/bin/a.rs
new file mode 100644
index 000000000..0b9715e49
--- /dev/null
+++ b/examples/boot/application/nrf/src/bin/a.rs
@@ -0,0 +1,43 @@
1#![no_std]
2#![no_main]
3#![macro_use]
4#![feature(generic_associated_types)]
5#![feature(type_alias_impl_trait)]
6
7use embassy_boot_nrf::FirmwareUpdater;
8use embassy_embedded_hal::adapter::BlockingAsync;
9use embassy_nrf::gpio::{Input, Level, Output, OutputDrive, Pull};
10use embassy_nrf::nvmc::Nvmc;
11use embassy_nrf::Peripherals;
12use panic_reset as _;
13
14static APP_B: &[u8] = include_bytes!("../../b.bin");
15
16#[embassy::main]
17async fn main(_s: embassy::executor::Spawner, p: Peripherals) {
18 let mut button = Input::new(p.P0_11, Pull::Up);
19 let mut led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard);
20 //let mut led = Output::new(p.P1_10, Level::Low, OutputDrive::Standard);
21 //let mut button = Input::new(p.P1_02, Pull::Up);
22
23 let nvmc = Nvmc::new(p.NVMC);
24 let mut nvmc = BlockingAsync::new(nvmc);
25
26 let mut updater = FirmwareUpdater::default();
27 loop {
28 led.set_low();
29 button.wait_for_any_edge().await;
30 if button.is_low() {
31 let mut offset = 0;
32 for chunk in APP_B.chunks(4096) {
33 let mut buf: [u8; 4096] = [0; 4096];
34 buf[..chunk.len()].copy_from_slice(chunk);
35 updater.write_firmware(offset, &buf, &mut nvmc, 4096).await.unwrap();
36 offset += chunk.len();
37 }
38 updater.update(&mut nvmc).await.unwrap();
39 led.set_high();
40 cortex_m::peripheral::SCB::sys_reset();
41 }
42 }
43}
diff --git a/examples/boot/application/nrf/src/bin/b.rs b/examples/boot/application/nrf/src/bin/b.rs
new file mode 100644
index 000000000..a06c20f8b
--- /dev/null
+++ b/examples/boot/application/nrf/src/bin/b.rs
@@ -0,0 +1,23 @@
1#![no_std]
2#![no_main]
3#![macro_use]
4#![feature(generic_associated_types)]
5#![feature(type_alias_impl_trait)]
6
7use embassy::time::{Duration, Timer};
8use embassy_nrf::gpio::{Level, Output, OutputDrive};
9use embassy_nrf::Peripherals;
10use panic_reset as _;
11
12#[embassy::main]
13async fn main(_s: embassy::executor::Spawner, p: Peripherals) {
14 let mut led = Output::new(p.P0_13, Level::Low, OutputDrive::Standard);
15 //let mut led = Output::new(p.P1_10, Level::Low, OutputDrive::Standard);
16
17 loop {
18 led.set_high();
19 Timer::after(Duration::from_millis(300)).await;
20 led.set_low();
21 Timer::after(Duration::from_millis(300)).await;
22 }
23}