From 0b1c72e34597ad3816cc52127c367c96ea1e7487 Mon Sep 17 00:00:00 2001 From: cscherr Date: Wed, 14 May 2025 17:36:49 +0200 Subject: [PATCH] docs: readme --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 README.md diff --git a/README.md b/README.md new file mode 100755 index 0000000..4ba916f --- /dev/null +++ b/README.md @@ -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 +```