mirror of
https://github.com/esp-rs/esp-hal.git
synced 2025-10-02 14:44:42 +00:00

* Add the `esp-ieee802154` package to the repo * Add examples for `esp-ieee802154` package
8 lines
259 B
Rust
8 lines
259 B
Rust
fn main() {
|
|
if cfg!(feature = "esp32c6") || cfg!(feature = "esp32h2") {
|
|
println!("cargo::rustc-link-arg=-Trom_coexist.x");
|
|
println!("cargo::rustc-link-arg=-Trom_functions.x");
|
|
println!("cargo::rustc-link-arg=-Trom_phy.x");
|
|
}
|
|
}
|