mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-28 12:50:53 +00:00

* Move all `embassy` examples to `async` and convert to individual projects * Move all peripheral examples to `peripheral` and convert to individual projects * Move all interrupt examples to `interrupt` and convert to individual projects * Move all `ble` examples to `ble` and convert to individual projects * Move all `esp-now` examples to `esp-now` and convert to individual projects * Move all Wi-Fi examples to `wifi` and convert to individual projects * Move all `ieee802154` examples to `ieee802154` and convert to individual projects * Move all OTA examples to `ota` and convert to individual projects * Remove files which are no longer required * Update `xtask` to handle new examples project layout * Update `examples/README.md` * Don't hide TOML parsing error in `is_published` * Update `fmt-packages` subcommand to handle new examples project layout
25 lines
539 B
TOML
25 lines
539 B
TOML
[target.'cfg(target_arch = "riscv32")']
|
|
runner = "espflash flash --monitor --partition-table=partitions.csv"
|
|
rustflags = [
|
|
"-C", "link-arg=-Tlinkall.x",
|
|
"-C", "force-frame-pointers",
|
|
]
|
|
|
|
[target.'cfg(target_arch = "xtensa")']
|
|
runner = "espflash flash --monitor --partition-table=partitions.csv"
|
|
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"
|
|
|
|
[unstable]
|
|
build-std = ["alloc", "core"]
|