Robin Mueller
e97cd64ba6
Generated a first building version of the PAC. The PAC was generated with a specially patched version of svd2rust 0.19.0: https://github.com/robamu/svd2rust/tree/mueller/develop
17 lines
519 B
Rust
17 lines
519 B
Rust
use std::env;
|
|
use std::fs::File;
|
|
use std::io::Write;
|
|
use std::path::PathBuf;
|
|
fn main() {
|
|
if env::var_os("CARGO_FEATURE_RT").is_some() {
|
|
let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());
|
|
File::create(out.join("device.x"))
|
|
.unwrap()
|
|
.write_all(include_bytes!("device.x"))
|
|
.unwrap();
|
|
println!("cargo:rustc-link-search={}", out.display());
|
|
println!("cargo:rerun-if-changed=device.x");
|
|
}
|
|
println!("cargo:rerun-if-changed=build.rs");
|
|
}
|