diff --git a/rp2040-hal/examples/uart.rs b/rp2040-hal/examples/uart.rs index 73ee783..7e1cf79 100644 --- a/rp2040-hal/examples/uart.rs +++ b/rp2040-hal/examples/uart.rs @@ -91,7 +91,7 @@ fn main() -> ! { let mut uart = hal::uart::UartPeripheral::new(pac.UART0, uart_pins, &mut pac.RESETS) .enable( hal::uart::common_configs::_9600_8_N_1, - clocks.peripheral_clock.into(), + clocks.peripheral_clock.freq(), ) .unwrap();