Files
lora-card-reader/.cargo/config.toml
2026-03-30 15:32:51 +08:00

20 lines
565 B
TOML

[target.xtensa-esp32s3-none-elf]
runner = "espflash flash --monitor -B 921600 --chip esp32s3 --log-format defmt"
linker = "/home/fromost/.rustup/toolchains/esp/xtensa-esp-elf/esp-15.2.0_20250920/xtensa-esp-elf/bin/xtensa-esp32s3-elf-gcc"
[env]
DEFMT_LOG = "info,lora=debug,eeprom24x=debug"
DEV_EUI = "000000DD44F30FAE"
APP_KEY = "00000000000000000000000040000000"
APP_EUI = "0000000000000040"
[build]
rustflags = [
"-C", "link-arg=-nostartfiles",
"-Z", "stack-protector=all",
]
target = "xtensa-esp32s3-none-elf"
[unstable]
build-std = ["alloc", "core"]