Use .freq() to avoid moving clock

This commit is contained in:
9names 2022-01-19 23:36:01 +11:00
parent 3a0e23c406
commit c8b75204ee

View file

@ -91,7 +91,7 @@ fn main() -> ! {
let mut uart = hal::uart::UartPeripheral::new(pac.UART0, uart_pins, &mut pac.RESETS) let mut uart = hal::uart::UartPeripheral::new(pac.UART0, uart_pins, &mut pac.RESETS)
.enable( .enable(
hal::uart::common_configs::_9600_8_N_1, hal::uart::common_configs::_9600_8_N_1,
clocks.peripheral_clock.into(), clocks.peripheral_clock.freq(),
) )
.unwrap(); .unwrap();