cargo fmt
This commit is contained in:
		@@ -11,18 +11,12 @@
 | 
				
			|||||||
#![feature(type_alias_impl_trait)]
 | 
					#![feature(type_alias_impl_trait)]
 | 
				
			||||||
 | 
					
 | 
				
			||||||
use embassy_executor::Spawner;
 | 
					use embassy_executor::Spawner;
 | 
				
			||||||
 | 
					use embassy_stm32::gpio::OutputType;
 | 
				
			||||||
use embassy_stm32::{
 | 
					use embassy_stm32::pac;
 | 
				
			||||||
    gpio::OutputType,
 | 
					use embassy_stm32::time::khz;
 | 
				
			||||||
    pac,
 | 
					use embassy_stm32::timer::simple_pwm::{PwmPin, SimplePwm};
 | 
				
			||||||
    time::khz,
 | 
					use embassy_stm32::timer::{Channel, CountingMode};
 | 
				
			||||||
    timer::{
 | 
					 | 
				
			||||||
        simple_pwm::{PwmPin, SimplePwm},
 | 
					 | 
				
			||||||
        Channel, CountingMode,
 | 
					 | 
				
			||||||
    },
 | 
					 | 
				
			||||||
};
 | 
					 | 
				
			||||||
use embassy_time::Timer;
 | 
					use embassy_time::Timer;
 | 
				
			||||||
 | 
					 | 
				
			||||||
use {defmt_rtt as _, panic_probe as _};
 | 
					use {defmt_rtt as _, panic_probe as _};
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#[embassy_executor::main]
 | 
					#[embassy_executor::main]
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user