mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-09-27 12:20:56 +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
50 lines
1.1 KiB
TOML
50 lines
1.1 KiB
TOML
[package]
|
|
name = "debug-assist"
|
|
version = "0.0.0"
|
|
edition = "2024"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
cfg-if = "1.0.0"
|
|
critical-section = "1.1.3"
|
|
esp-backtrace = { path = "../../../esp-backtrace", features = [
|
|
"panic-handler",
|
|
"println",
|
|
] }
|
|
esp-bootloader-esp-idf = { path = "../../../esp-bootloader-esp-idf" }
|
|
esp-hal = { path = "../../../esp-hal", features = ["log-04", "unstable"] }
|
|
esp-println = { path = "../../../esp-println", features = ["log-04"] }
|
|
|
|
[features]
|
|
esp32c2 = [
|
|
"esp-backtrace/esp32c2",
|
|
"esp-bootloader-esp-idf/esp32c2",
|
|
"esp-hal/esp32c2",
|
|
]
|
|
esp32c3 = [
|
|
"esp-backtrace/esp32c3",
|
|
"esp-bootloader-esp-idf/esp32c3",
|
|
"esp-hal/esp32c3",
|
|
]
|
|
esp32c6 = [
|
|
"esp-backtrace/esp32c6",
|
|
"esp-bootloader-esp-idf/esp32c6",
|
|
"esp-hal/esp32c6",
|
|
]
|
|
esp32h2 = [
|
|
"esp-backtrace/esp32h2",
|
|
"esp-bootloader-esp-idf/esp32h2",
|
|
"esp-hal/esp32h2",
|
|
]
|
|
esp32s3 = [
|
|
"esp-backtrace/esp32s3",
|
|
"esp-bootloader-esp-idf/esp32s3",
|
|
"esp-hal/esp32s3",
|
|
]
|
|
|
|
[profile.release]
|
|
debug = true
|
|
debug-assertions = true
|
|
lto = "fat"
|
|
codegen-units = 1
|