use std::{env, error::Error, path::PathBuf};
build_alert::yellow! {"
WARNING: package deprecated!
The 'esp32c2-hal' package has been deprecated in favour of 'esp-hal'.
Please refer to the migration guide for help with updating your projects
to use the new 'esp-hal' package:
https://github.com/esp-rs/esp-hal/releases/tag/v0.16.0
"}
fn main() -> Result<(), Box<dyn Error>> {
check_features();
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
println!("cargo:rustc-link-search={}", out.display());
println!("cargo:rerun-if-changed=ld/memory.x");
#[cfg(feature = "defmt")]
println!("cargo:rustc-link-arg=-Tdefmt.x");
Ok(())
}
fn check_features() {
if cfg!(feature = "xtal-40mhz") && cfg!(feature = "xtal-26mhz") {
panic!("Only one xtal speed feature can be selected");
}
}