Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
usbalbin committed Nov 7, 2024
1 parent ad146a0 commit dd918b4
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion src/hrtim/control.rs
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,9 @@ impl HrTimOngoingCalibration {
common
.dllcr()
.modify(|_r, w| w.calrte().bits(0b00).cal().set_bit().calen().clear_bit());
common.fltinr2().write(|w| w.fltsd().bits(flt_divider as u8));
common
.fltinr2()
.write(|w| w.fltsd().bits(flt_divider as u8));
common.eecr3().write(|w| w.eevsd().bits(eev_divider as u8));

common.adcps1().write(|w| {
Expand Down
4 changes: 3 additions & 1 deletion src/serial/usart.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@ use core::fmt;
use core::marker::PhantomData;

use crate::dma::traits::Stream;
use crate::dma::{mux::DmaMuxResources, traits::TargetAddress, PeripheralToMemory, MemoryToPeripheral};
use crate::dma::{
mux::DmaMuxResources, traits::TargetAddress, MemoryToPeripheral, PeripheralToMemory,
};
use crate::gpio::{gpioa::*, gpiob::*, gpioc::*, gpiod::*, gpioe::*, gpiog::*};
use crate::gpio::{Alternate, AlternateOD, AF12, AF5, AF7, AF8};
use crate::prelude::*;
Expand Down

0 comments on commit dd918b4

Please sign in to comment.