Add embassy-boot support for RP2040, with examples for the Raspberry Pi Pico. Co-authored-by: Mathias Koch <mk@blackbird.online>
		
			
				
	
	
		
			9 lines
		
	
	
		
			166 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			166 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| use std::env;
 | |
| 
 | |
| fn main() {
 | |
|     let target = env::var("TARGET").unwrap();
 | |
|     if target.starts_with("thumbv6m-") {
 | |
|         println!("cargo:rustc-cfg=armv6m");
 | |
|     }
 | |
| }
 |