From aa7b66a731cb58484f75d82512f76413759ad832 Mon Sep 17 00:00:00 2001 From: Jonathan 'theJPster' Pallant Date: Thu, 22 Aug 2024 19:42:53 +0100 Subject: [PATCH] RP235x: Formatting --- rp235x-hal/src/rosc.rs | 2 +- rp235x-hal/src/spi.rs | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/rp235x-hal/src/rosc.rs b/rp235x-hal/src/rosc.rs index 753a7f871..8f8db3f0f 100644 --- a/rp235x-hal/src/rosc.rs +++ b/rp235x-hal/src/rosc.rs @@ -74,7 +74,7 @@ impl RingOscillator { } /// Initializes the ROSC with a known frequency. - /// + /// /// See Sections 8.3.4 "Modifying the frequency", and 8.3.8 "Using the /// frequency counter" in the [RP2350 datasheet](https://rptl.io/rp2350-datasheet) /// for guidance on how to do this before initialising the ROSC. Also see diff --git a/rp235x-hal/src/spi.rs b/rp235x-hal/src/spi.rs index 0767b21cc..0414342df 100644 --- a/rp235x-hal/src/spi.rs +++ b/rp235x-hal/src/spi.rs @@ -74,17 +74,17 @@ impl From<&spi::Mode> for FrameFormat { #[derive(Clone, Copy, PartialEq, Eq)] pub enum FrameFormat { /// Motorola SPI format. - /// + /// /// See [Section 12.3.4.9](https://rptl.io/rp2350-datasheet) of the RP2350 /// datasheet. MotorolaSpi(spi::Mode), /// Texas Instruments synchronous serial frame format. - /// + /// /// See [Section 12.3.4.8](https://rptl.io/rp2350-datasheet) of the RP2350 /// datasheet. TexasInstrumentsSynchronousSerial, /// National Semiconductor Microwire frame format. - /// + /// /// See [Section 12.3.4.14](https://rptl.io/rp2350-datasheet) of the RP2350 /// datasheet. NationalSemiconductorMicrowire,