@@ -85,7 +85,7 @@ impl Temperature {
8585 /// ## Arguments
8686 /// * `sample`: ADC sample taken on the [`Temperature`] channel.
8787 /// * `vdda`: Analog reference voltage (vref+) when the temperature
88- /// sample was taken, in volts.
88+ /// sample was taken, in volts.
8989 /// * `resolution`: Configured ADC resolution.
9090 #[ inline( always) ]
9191 pub fn temperature_to_degrees_centigrade (
@@ -110,7 +110,7 @@ impl Temperature {
110110 /// ## Arguments
111111 /// * `sample`: ADC sample taken on the [`Temperature`] channel.
112112 /// * `vdda`: Analog reference voltage (vref+) when the temperature
113- /// sample was taken, in millivolts.
113+ /// sample was taken, in millivolts.
114114 /// * `resolution`: Configured ADC resolution.
115115 #[ inline( always) ]
116116 pub fn temperature_to_degrees_centigrade_coarse (
@@ -1901,7 +1901,7 @@ macro_rules! adc {
19011901 /// * `channel` - channel to configure
19021902 /// * `sequence` - where in the sequence to sample the channel. Also called rank in some STM docs/code
19031903 /// * `sample_time` - how long to sample for. See datasheet and ref manual to work out how long you need\
1904- /// to sample for at a given ADC clock frequency
1904+ /// to sample for at a given ADC clock frequency
19051905 pub fn configure_channel<CHANNEL >( & mut self , _channel: & CHANNEL , sequence: config:: Sequence , sample_time: config:: SampleTime )
19061906 where
19071907 CHANNEL : Channel <stm32:: $adc_type, ID =u8 >
@@ -2122,6 +2122,7 @@ macro_rules! adc {
21222122 /// Enables the ADC clock, resets the peripheral (optionally), runs calibration and applies the supplied config
21232123 /// # Arguments
21242124 /// * `reset` - should a reset be performed. This is provided because on some devices multiple ADCs share the same common reset
2125+ ///
21252126 /// TODO: fix needing SYST
21262127 #[ inline( always) ]
21272128 fn claim( self , cs: ClockSource , rcc: & Rcc , delay: & mut impl DelayUs <u8 >, reset: bool ) -> Adc <stm32:: $adc_type, Disabled > {
@@ -2407,7 +2408,7 @@ macro_rules! adc {
24072408 /// * `channel` - channel to configure
24082409 /// * `sequence` - where in the sequence to sample the channel. Also called rank in some STM docs/code
24092410 /// * `sample_time` - how long to sample for. See datasheet and ref manual to work out how long you need\
2410- /// to sample for at a given ADC clock frequency
2411+ /// to sample for at a given ADC clock frequency
24112412 #[ inline( always) ]
24122413 pub fn configure_channel<CHANNEL >( & mut self , channel: & CHANNEL , sequence: config:: Sequence , sample_time: config:: SampleTime )
24132414 where
0 commit comments