init basic examples and setup

This commit is contained in:
2026-05-25 18:16:02 +02:00
commit 8028dfd5fc
28 changed files with 2150 additions and 0 deletions

23
.cargo/config.toml Normal file
View File

@@ -0,0 +1,23 @@
[build]
target = "thumbv7m-none-eabi"
[target.thumbv7m-none-eabi]
linker = "flip-link"
rustflags = [
"-C",
"link-arg=-Tlink.x",
"-C",
"link-arg=-Tdefmt.x",
]
[target.thumbv6m-none-eabi]
linker = "flip-link"
rustflags = [
"-C",
"link-arg=-Tlink.x",
"-C",
"link-arg=-Tdefmt.x",
]
[env]
DEFMT_LOG = "info"