summaryrefslogtreecommitdiff
path: root/examples/boot/.cargo
diff options
context:
space:
mode:
authorUlf Lilleengen <lulf@redhat.com>2022-01-24 12:54:09 +0100
committerUlf Lilleengen <ulf.lilleengen@gmail.com>2022-02-09 10:50:29 +0100
commited2a87a262e0e8c091627c96ced981dd3a97a6a1 (patch)
treee4202eb8044b534215aa9aa68b79ab83b9e9afc4 /examples/boot/.cargo
parentd91bd0b9a69b8411f2a1d58bfad5d4dce51e7110 (diff)
downloadembassy-ed2a87a262e0e8c091627c96ced981dd3a97a6a1.zip
Add embassy-boot
Embassy-boot is a simple bootloader that works together with an application to provide firmware update capabilities with a minimal risk. The bootloader consists of a platform-independent part, which implements the swap algorithm, and a platform-dependent part (currently only for nRF) that provides addition functionality such as watchdog timers softdevice support.
Diffstat (limited to 'examples/boot/.cargo')
-rw-r--r--examples/boot/.cargo/config.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/examples/boot/.cargo/config.toml b/examples/boot/.cargo/config.toml
new file mode 100644
index 00000000..d044e9b4
--- /dev/null
+++ b/examples/boot/.cargo/config.toml
@@ -0,0 +1,7 @@
+[unstable]
+namespaced-features = true
+build-std = ["core"]
+build-std-features = ["panic_immediate_abort"]
+
+[build]
+target = "thumbv7em-none-eabi"