File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -520,11 +520,14 @@ impl<U: Unit> Mcpwm<U> {
520520 ///
521521 /// The timers of the operators can then in turn scale this frequency down further.
522522 ///
523- /// The lower this is set, the lower frequencies will be reachable. However, this is
523+ /// The lower this is set, the lower frequencies will be reachable. However, this is
524524 /// at the cost of worse resolution at higher frequencies. Same thing goes for the
525525 /// other way. The higher value set here, the more resolution and so on.
526526 #[ cfg( not( esp_idf_version = "4.3" ) ) ]
527- pub fn operator_source_frequency ( mut self , frequency : impl Into < Hertz > ) -> Result < Self , EspError > {
527+ pub fn operator_source_frequency (
528+ mut self ,
529+ frequency : impl Into < Hertz > ,
530+ ) -> Result < Self , EspError > {
528531 let frequency: Hertz = frequency. into ( ) ;
529532 let frequency: u32 = frequency. into ( ) ;
530533
You can’t perform that action at this time.
0 commit comments