first commit

This commit is contained in:
2025-04-21 21:36:22 +04:00
commit 901b58cd27
19 changed files with 894 additions and 0 deletions

27
Cargo.toml Normal file
View File

@@ -0,0 +1,27 @@
[package]
name = "soft-serial"
version = "0.1.0"
edition = "2021"
[dependencies.arduino-hal]
git = "https://github.com/rahix/avr-hal"
rev = "3e362624547462928a219c40f9ea8e3a64f21e5f"
features = ["sparkfun-promicro"]
[dependencies.static_pins]
git = "https://gitea.doryan04.ru/TheEmbeddedRust/static_pins"
[dependencies.avr-device]
version = "0.5.4"
[profile.dev]
panic = "abort"
codegen-units = 1
debug = true
lto = true
opt-level = "s"
[profile.release]
panic = "abort"
lto = true
opt-level = "s"