No description
Find a file
2025-05-20 12:54:15 +02:00
.cargo fix!: don't require defmt always 2025-05-14 17:26:38 +02:00
examples feat: animated lcd scroller 2025-05-20 12:54:15 +02:00
src refactor!: make the main code an empty lib 2025-04-28 11:53:38 +02:00
.gitignore feat: flash a "does nothing" program written in rust to the board 2025-04-17 14:37:02 +02:00
build.rs fix!: don't require defmt always 2025-05-14 17:26:38 +02:00
Cargo.lock refactor: lcd-clock lazy updates 2025-05-20 11:20:33 +02:00
Cargo.toml refactor: lcd-clock lazy updates 2025-05-20 11:20:33 +02:00
README.md docs: readme 2025-05-14 17:36:49 +02:00

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.

cargo run --example=blinky
cargo run --example=rtc-log --features=logging
# etc