* 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");
|
|
}
|
|
}
|