* Replace `ESP_LOGLEVEL` and `ESP_LOGFILTER`by `ESP_LOG` * CHANGELOG.md * Clippy * Fail build if using the now unsupported env variables
39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[alias]
|
|
esp32 = "run --release --features=esp32 --target=xtensa-esp32-none-elf"
|
|
esp32c2 = "run --release --features=esp32c2 --target=riscv32imc-unknown-none-elf"
|
|
esp32c3 = "run --release --features=esp32c3 --target=riscv32imc-unknown-none-elf"
|
|
esp32c6 = "run --release --features=esp32c6 --target=riscv32imac-unknown-none-elf"
|
|
esp32h2 = "run --release --features=esp32h2 --target=riscv32imac-unknown-none-elf"
|
|
esp32s2 = "run --release --features=esp32s2 --target=xtensa-esp32s2-none-elf"
|
|
esp32s3 = "run --release --features=esp32s3 --target=xtensa-esp32s3-none-elf"
|
|
|
|
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "espflash flash --monitor"
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
"-C", "force-frame-pointers",
|
|
]
|
|
|
|
[target.'cfg(target_arch = "xtensa")']
|
|
runner = "espflash flash --monitor"
|
|
rustflags = [
|
|
# GNU LD
|
|
"-C", "link-arg=-Wl,-Tlinkall.x",
|
|
"-C", "link-arg=-nostartfiles",
|
|
|
|
# LLD
|
|
# "-C", "link-arg=-Tlinkall.x",
|
|
# "-C", "linker=rust-lld",
|
|
]
|
|
|
|
[env]
|
|
ESP_LOG = "info"
|
|
SSID = "SSID"
|
|
PASSWORD = "PASSWORD"
|
|
STATIC_IP = "1.1.1.1 "
|
|
GATEWAY_IP = "1.1.1.1"
|
|
HOST_IP = "1.1.1.1"
|
|
|
|
[unstable]
|
|
build-std = ["alloc", "core"]
|