docs: readme

This commit is contained in:
cscherr 2025-05-14 17:36:49 +02:00
parent 2794f7ec8a
commit 0b1c72e345
Signed by: cscherrNT
GPG key ID: 8E2B45BC51A27EA7

16
README.md Executable file
View file

@ -0,0 +1,16 @@
# Example Codes for the STM32 NUCLEO-L053R8
This repository contains many example programs that are written to run on the
NUCLEO-L053R8 Board.
## Running
Some programs require additional libraries for logging/formatting that would
make the more basic ones not compile (or rather link) correctly. For those,
enable the `logging` feature.
```bash
cargo run --example=blinky
cargo run --example=rtc-log --features=logging
# etc
```