Initial commit

This commit is contained in:
2026-07-03 12:59:18 +02:00
commit fcf95f44e9
30 changed files with 8325 additions and 0 deletions

16
Cargo.toml Normal file
View File

@@ -0,0 +1,16 @@
[package]
name = "rust-stm32"
version = "0.1.0"
edition = "2024"
publish = false
build = "build.rs"
[target.'cfg(target_arch = "arm")'.dependencies]
cortex-m = { version = "=0.7.7", features = ["critical-section-single-core"] }
cortex-m-rt = "=0.7.5"
cortex-m-semihosting = "=0.5.0"
embassy-executor = { version = "=0.9.1", features = ["arch-cortex-m", "executor-thread"] }
embassy-stm32 = { version = "=0.6.0", features = ["memory-x", "stm32f103c8", "time-driver-any"] }
embassy-time = "=0.5.1"
panic-probe = "=1.0.0"
stm32f1xx-hal = { version = "=0.11.0", features = ["medium", "stm32f103"] }