mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 22:05:37 +01:00
Added esp32c6 support and example
This commit is contained in:
parent
5a8ff70f85
commit
b97bc79126
17 changed files with 1526 additions and 2 deletions
15
examples/esp32c6/.cargo/config.toml
Normal file
15
examples/esp32c6/.cargo/config.toml
Normal 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"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue