* Add RCC * Fix more issues with dash in chip names * Update stm32-data version * Add blinky and spi example
		
			
				
	
	
		
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			51 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use std::env;
 | |
| use std::path::PathBuf;
 | |
| use stm32_metapac_gen::*;
 | |
| 
 | |
| fn main() {
 | |
|     let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap());
 | |
|     let data_dir = PathBuf::from("../stm32-data/data");
 | |
| 
 | |
|     println!("cwd: {:?}", env::current_dir());
 | |
| 
 | |
|     let chip_name = env::vars_os()
 | |
|         .map(|(a, _)| a.to_string_lossy().to_string())
 | |
|         .find(|x| x.starts_with("CARGO_FEATURE_STM32"))
 | |
|         .expect("No stm32xx Cargo feature enabled")
 | |
|         .strip_prefix("CARGO_FEATURE_")
 | |
|         .unwrap()
 | |
|         .to_ascii_uppercase();
 | |
| 
 | |
|     gen(Options {
 | |
|         out_dir: out_dir.clone(),
 | |
|         data_dir: data_dir.clone(),
 | |
|         chips: vec![chip_name.clone()],
 | |
|     });
 | |
| 
 | |
|     let mut s = chip_name.split('_');
 | |
|     let mut chip_name: String = s.next().unwrap().to_string();
 | |
|     if let Some(c) = s.next() {
 | |
|         if !c.starts_with("CM") {
 | |
|             chip_name.push('-');
 | |
|         } else {
 | |
|             chip_name.push('_');
 | |
|         }
 | |
|         chip_name.push_str(c);
 | |
|     }
 | |
| 
 | |
|     println!(
 | |
|         "cargo:rustc-link-search={}/src/chips/{}",
 | |
|         out_dir.display(),
 | |
|         chip_name.to_ascii_lowercase()
 | |
|     );
 | |
| 
 | |
|     #[cfg(feature = "memory-x")]
 | |
|     println!(
 | |
|         "cargo:rustc-link-search={}/src/chips/{}/memory_x/",
 | |
|         out_dir.display(),
 | |
|         chip_name.to_ascii_lowercase()
 | |
|     );
 | |
| 
 | |
|     println!("cargo:rerun-if-changed=build.rs");
 | |
| }
 |