stm32-metapac: Do not generate cfgs metadata
This commit is contained in:
parent
0ffa78aca1
commit
b65c3c7160
@ -2,7 +2,6 @@
|
|||||||
name = "stm32-metapac"
|
name = "stm32-metapac"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
links = "stm32-metapac-v0.1"
|
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
@ -132,7 +132,6 @@ fn main() {
|
|||||||
};
|
};
|
||||||
|
|
||||||
let mut peripheral_versions: HashMap<String, String> = HashMap::new();
|
let mut peripheral_versions: HashMap<String, String> = HashMap::new();
|
||||||
let mut cfgs: HashSet<String> = HashSet::new();
|
|
||||||
let mut pin_table: Vec<Vec<String>> = Vec::new();
|
let mut pin_table: Vec<Vec<String>> = Vec::new();
|
||||||
let mut interrupt_table: Vec<Vec<String>> = Vec::new();
|
let mut interrupt_table: Vec<Vec<String>> = Vec::new();
|
||||||
let mut peripherals_table: Vec<Vec<String>> = Vec::new();
|
let mut peripherals_table: Vec<Vec<String>> = Vec::new();
|
||||||
@ -148,8 +147,6 @@ fn main() {
|
|||||||
let gpio_base = chip.peripherals.get(&"GPIOA".to_string()).unwrap().address;
|
let gpio_base = chip.peripherals.get(&"GPIOA".to_string()).unwrap().address;
|
||||||
let gpio_stride = 0x400;
|
let gpio_stride = 0x400;
|
||||||
|
|
||||||
cfgs.insert(chip.family.to_ascii_lowercase().replace("+", "plus"));
|
|
||||||
|
|
||||||
for (name, p) in &chip.peripherals {
|
for (name, p) in &chip.peripherals {
|
||||||
let mut ir_peri = ir::Peripheral {
|
let mut ir_peri = ir::Peripheral {
|
||||||
name: name.clone(),
|
name: name.clone(),
|
||||||
@ -176,8 +173,6 @@ fn main() {
|
|||||||
peripheral_pins_table.push(row);
|
peripheral_pins_table.push(row);
|
||||||
}
|
}
|
||||||
|
|
||||||
cfgs.insert(bi.module.clone());
|
|
||||||
cfgs.insert(format!("{}_{}", bi.module, bi.version));
|
|
||||||
let mut peripheral_row = Vec::new();
|
let mut peripheral_row = Vec::new();
|
||||||
peripheral_row.push(bi.module.clone());
|
peripheral_row.push(bi.module.clone());
|
||||||
peripheral_row.push(name.clone());
|
peripheral_row.push(name.clone());
|
||||||
@ -319,9 +314,4 @@ fn main() {
|
|||||||
.unwrap();
|
.unwrap();
|
||||||
println!("cargo:rustc-link-search={}", out.display());
|
println!("cargo:rustc-link-search={}", out.display());
|
||||||
println!("cargo:rerun-if-changed=build.rs");
|
println!("cargo:rerun-if-changed=build.rs");
|
||||||
|
|
||||||
println!(
|
|
||||||
"cargo:cfgs={}",
|
|
||||||
cfgs.into_iter().collect::<Vec<_>>().join(",")
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user