Added esp32c6 support and example

This commit is contained in:
Wouter Geraedts 2024-04-09 15:01:27 +02:00 committed by Henrik Tjäder
parent 5a8ff70f85
commit b97bc79126
17 changed files with 1526 additions and 2 deletions

View file

@ -0,0 +1,15 @@
[target.riscv32imac-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 = "riscv32imac-unknown-none-elf"
[unstable]
build-std = ["core"]