feat: initial commit

This commit is contained in:
Kat Inskip 2025-10-17 05:55:27 -07:00
commit 7888da2541
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
10 changed files with 1515 additions and 0 deletions

15
.cargo/config.toml Normal file
View file

@ -0,0 +1,15 @@
[target.riscv32imc-unknown-none-elf]
runner = "espflash flash --monitor"
[build]
rustflags = [
"-C", "link-arg=-Tlinkall.x",
# Required to obtain backtraces (e.g. when using the "esp-backtrace" crate.)
# NOTE: May negatively impact performance of produced code
"-C", "force-frame-pointers",
]
target = "riscv32imc-unknown-none-elf"
[unstable]
build-std = ["core"]