diff --git a/boards/pico/examples/pico_blinky.rs b/boards/pico/examples/pico_blinky.rs index cf99c97..2970ee5 100644 --- a/boards/pico/examples/pico_blinky.rs +++ b/boards/pico/examples/pico_blinky.rs @@ -58,7 +58,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico/examples/pico_countdown_blinky.rs b/boards/pico/examples/pico_countdown_blinky.rs index cb4a13d..f6a3ea7 100644 --- a/boards/pico/examples/pico_countdown_blinky.rs +++ b/boards/pico/examples/pico_countdown_blinky.rs @@ -47,7 +47,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let _clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico/examples/pico_pwm_blink.rs b/boards/pico/examples/pico_pwm_blink.rs index d3d5f6d..16b48f8 100644 --- a/boards/pico/examples/pico_pwm_blink.rs +++ b/boards/pico/examples/pico_pwm_blink.rs @@ -64,7 +64,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico/examples/pico_usb_serial.rs b/boards/pico/examples/pico_usb_serial.rs index 93bb34f..2732da2 100644 --- a/boards/pico/examples/pico_usb_serial.rs +++ b/boards/pico/examples/pico_usb_serial.rs @@ -56,7 +56,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico/examples/pico_usb_serial_interrupt.rs b/boards/pico/examples/pico_usb_serial_interrupt.rs index 49227fc..e5b8fe6 100644 --- a/boards/pico/examples/pico_usb_serial_interrupt.rs +++ b/boards/pico/examples/pico_usb_serial_interrupt.rs @@ -78,7 +78,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico/examples/pico_usb_twitchy_mouse.rs b/boards/pico/examples/pico_usb_twitchy_mouse.rs index 8d656a7..76fff72 100644 --- a/boards/pico/examples/pico_usb_twitchy_mouse.rs +++ b/boards/pico/examples/pico_usb_twitchy_mouse.rs @@ -76,7 +76,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico::XOSC_CRYSTAL_FREQ, pac.XOSC, diff --git a/boards/pico_lipo_16mb/examples/pico_lipo_16mb_blinky.rs b/boards/pico_lipo_16mb/examples/pico_lipo_16mb_blinky.rs index 383facf..b5e4318 100644 --- a/boards/pico_lipo_16mb/examples/pico_lipo_16mb_blinky.rs +++ b/boards/pico_lipo_16mb/examples/pico_lipo_16mb_blinky.rs @@ -58,7 +58,7 @@ fn main() -> ! { // Configure the clocks // - // Our default is 12 MHz crystal input, 125 MHz system clock + // The default is to generate a 125 MHz system clock let clocks = hal::clocks::init_clocks_and_plls( pico_lipo_16_mb::XOSC_CRYSTAL_FREQ, pac.XOSC,