23 lines
428 B
TOML
23 lines
428 B
TOML
|
[target.xtensa-esp32-none-elf]
|
||
|
runner = "espflash flash -M -b 2000000 --partition-table partitions.csv -p /dev/cu.usbserial-1420"
|
||
|
|
||
|
[env]
|
||
|
ESP_LOGLEVEL = "INFO"
|
||
|
|
||
|
[build]
|
||
|
rustflags = [
|
||
|
"-C",
|
||
|
"link-arg=-nostartfiles",
|
||
|
"-Dclippy::clone_on_ref_ptr",
|
||
|
"--cfg",
|
||
|
"feature=\"esp32\"",
|
||
|
]
|
||
|
|
||
|
target = "xtensa-esp32-none-elf"
|
||
|
|
||
|
[unstable]
|
||
|
build-std = ["alloc", "core"]
|
||
|
|
||
|
# [build]
|
||
|
# rustflags = ["--cfg", "feature=\"esp32\""]
|