The guide demonstrates the functionality offered by each layer in Embassy, using code examples.
		
			
				
	
	
		
			14 lines
		
	
	
		
			327 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			327 B
		
	
	
	
		
			TOML
		
	
	
	
	
	
| [package]
 | |
| name = "blinky-irq"
 | |
| version = "0.1.0"
 | |
| edition = "2021"
 | |
| 
 | |
| [dependencies]
 | |
| cortex-m = "0.7"
 | |
| cortex-m-rt = { version = "0.7" }
 | |
| embassy-stm32 = { version = "0.1.0", features = ["stm32l475vg", "memory-x", "unstable-pac"] }
 | |
| 
 | |
| defmt = "0.3.0"
 | |
| defmt-rtt = "0.3.0"
 | |
| panic-probe = { version = "0.3.0", features = ["print-defmt"] }
 |