diff options
author | Ulf Lilleengen <ulf.lilleengen@gmail.com> | 2022-06-24 19:56:15 +0200 |
---|---|---|
committer | Ulf Lilleengen <ulf.lilleengen@gmail.com> | 2022-06-24 19:56:15 +0200 |
commit | 776be79f7bb10b09e795e2ea93bb795a653c9b4c (patch) | |
tree | 269046d330ee503c84049bb8fc47baf0297ecb80 /examples/boot/bootloader/stm32/README.md | |
parent | 84628d36cf743193cbf0e7d47ef1cfa9fb590890 (diff) | |
download | embassy-776be79f7bb10b09e795e2ea93bb795a653c9b4c.zip |
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/bootloader/stm32/README.md')
-rw-r--r-- | examples/boot/bootloader/stm32/README.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/boot/bootloader/stm32/README.md b/examples/boot/bootloader/stm32/README.md new file mode 100644 index 00000000..a82b730b --- /dev/null +++ b/examples/boot/bootloader/stm32/README.md @@ -0,0 +1,11 @@ +# Bootloader for STM32 + +The bootloader uses `embassy-boot` to interact with the flash. + +# Usage + +Flash the bootloader + +``` +cargo flash --features embassy-stm32/stm32wl55jc-cm4 --release --chip STM32WLE5JCIx +``` |