18 lines
553 B
TOML
18 lines
553 B
TOML
|
[build]
|
||
|
target = "riscv32imc-esp-espidf"
|
||
|
|
||
|
[target.riscv32imc-esp-espidf]
|
||
|
linker = "ldproxy"
|
||
|
# runner = "espflash --monitor" # Select this runner for espflash v1.x.x
|
||
|
runner = "espflash flash --baud 921600 --monitor" # Select this runner for espflash v2.x.x
|
||
|
rustflags = [ "--cfg", "espidf_time64"] # Extending time_t for ESP IDF 5: https://github.com/esp-rs/rust/issues/110
|
||
|
|
||
|
[unstable]
|
||
|
build-std = ["std", "panic_abort"]
|
||
|
|
||
|
[env]
|
||
|
MCU="esp32c3"
|
||
|
# Note: this variable is not used by the pio builder (`cargo build --features pio`)
|
||
|
ESP_IDF_VERSION = "v5.1.1"
|
||
|
|