A lot of stuff

This commit is contained in:
Your Name
2026-05-27 14:50:26 +03:00
parent efd00cf6f7
commit 26f3e99d8a
22 changed files with 20137 additions and 48 deletions
+26
View File
@@ -0,0 +1,26 @@
# Build
## Install zephyr SDK
> See [INSTALL.md](INSTALL.md) for installing the SDK.
## Build the app without MCUboot
```bash
source ../env.sh
west build -p -b nrf52840_qalmari
```
## Build everything
```bash
source ../env.sh
west build -p -b nrf52840_qalmari --sysbuild
```
## Generate your own key for MCUboot
```bash
openssl genrsa -out key.pem 2048
```
## Flash the binary to the device
> See [FLASH.md](FLASH.md) for installing the app to the device.