@@ -83,7 +83,7 @@ impl Temperature {
83
83
/// ## Arguments
84
84
/// * `sample`: ADC sample taken on the [`Temperature`] channel.
85
85
/// * `vdda`: Analog reference voltage (vref+) when the temperature
86
- /// sample was taken, in volts.
86
+ /// sample was taken, in volts.
87
87
/// * `resolution`: Configured ADC resolution.
88
88
#[ inline( always) ]
89
89
pub fn temperature_to_degrees_centigrade (
@@ -108,7 +108,7 @@ impl Temperature {
108
108
/// ## Arguments
109
109
/// * `sample`: ADC sample taken on the [`Temperature`] channel.
110
110
/// * `vdda`: Analog reference voltage (vref+) when the temperature
111
- /// sample was taken, in millivolts.
111
+ /// sample was taken, in millivolts.
112
112
/// * `resolution`: Configured ADC resolution.
113
113
#[ inline( always) ]
114
114
pub fn temperature_to_degrees_centigrade_coarse (
@@ -1895,7 +1895,7 @@ macro_rules! adc {
1895
1895
/// * `channel` - channel to configure
1896
1896
/// * `sequence` - where in the sequence to sample the channel. Also called rank in some STM docs/code
1897
1897
/// * `sample_time` - how long to sample for. See datasheet and ref manual to work out how long you need\
1898
- /// to sample for at a given ADC clock frequency
1898
+ /// to sample for at a given ADC clock frequency
1899
1899
pub fn configure_channel<CHANNEL >( & mut self , _channel: & CHANNEL , sequence: config:: Sequence , sample_time: config:: SampleTime )
1900
1900
where
1901
1901
CHANNEL : Channel <stm32:: $adc_type, ID =u8 >
@@ -2406,7 +2406,7 @@ macro_rules! adc {
2406
2406
/// * `channel` - channel to configure
2407
2407
/// * `sequence` - where in the sequence to sample the channel. Also called rank in some STM docs/code
2408
2408
/// * `sample_time` - how long to sample for. See datasheet and ref manual to work out how long you need\
2409
- /// to sample for at a given ADC clock frequency
2409
+ /// to sample for at a given ADC clock frequency
2410
2410
#[ inline( always) ]
2411
2411
pub fn configure_channel<CHANNEL >( & mut self , channel: & CHANNEL , sequence: config:: Sequence , sample_time: config:: SampleTime )
2412
2412
where
0 commit comments