Skip to content

Commit 9ca5e01

Browse files
authored
Apply clippy suggestions (#347)
1 parent a8db75e commit 9ca5e01

24 files changed

+331
-220
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2828
### Added
2929

3030
- Add missing ADC channels ([#337])
31+
- Add many `#[must_use]` instances ([#347])
3132

3233
### Fixed
3334

@@ -598,6 +599,7 @@ let clocks = rcc
598599
[filter]: https://defmt.ferrous-systems.com/filtering.html
599600

600601
[#346]: https://github.com/stm32-rs/stm32f3xx-hal/pull/346
602+
[#347]: https://github.com/stm32-rs/stm32f3xx-hal/pull/347
601603
[#340]: https://github.com/stm32-rs/stm32f3xx-hal/pull/340
602604
[#338]: https://github.com/stm32-rs/stm32f3xx-hal/pull/338
603605
[#337]: https://github.com/stm32-rs/stm32f3xx-hal/pull/337

build.rs

+6-12
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,8 @@ fn check_device_feature() {
6363
std::process::exit(1);
6464
}
6565

66-
let device_variants: HashSet<String> = DEVICE_VARIANTS.iter().map(|s| s.to_string()).collect();
66+
let device_variants: HashSet<String> =
67+
DEVICE_VARIANTS.iter().map(|s| (*s).to_string()).collect();
6768

6869
// get all selected features via env variables
6970
let selected_features: HashSet<String> = env::vars()
@@ -90,7 +91,7 @@ fn check_device_feature() {
9091
// pretty print all avaliable devices
9192
for line in device_variants {
9293
for device in line {
93-
eprint!("{} ", device);
94+
eprint!("{device} ");
9495
}
9596
eprintln!();
9697
}
@@ -185,24 +186,17 @@ This may be due to incorrect feature configuration in Cargo.toml or stm32f3xx-ha
185186
writeln!(file, "MEMORY {{").unwrap();
186187
writeln!(
187188
file,
188-
" FLASH (rx) : ORIGIN = 0x8000000, LENGTH = {}K",
189-
flash
189+
" FLASH (rx) : ORIGIN = 0x8000000, LENGTH = {flash}K"
190190
)
191191
.unwrap();
192192
if ccmram > 0 {
193193
writeln!(
194194
file,
195-
" CCMRAM (rwx) : ORIGIN = 0x10000000, LENGTH = {}K",
196-
ccmram
195+
" CCMRAM (rwx) : ORIGIN = 0x10000000, LENGTH = {ccmram}K"
197196
)
198197
.unwrap();
199198
}
200-
writeln!(
201-
file,
202-
" RAM (rwx) : ORIGIN = 0x20000000, LENGTH = {}K",
203-
ram
204-
)
205-
.unwrap();
199+
writeln!(file, " RAM (rwx) : ORIGIN = 0x20000000, LENGTH = {ram}K").unwrap();
206200
writeln!(file, "}}").unwrap();
207201
println!("cargo:rustc-link-search={}", out_dir.display());
208202
}

src/adc.rs

+14-12
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//!
55
//! Check out [examples/adc.rs].
66
//!
7-
//! It can be built for the STM32F3Discovery running
7+
//! It can be built for the `STM32F3Discovery` running
88
//! `cargo build --example adc --features=stm32f303xc`
99
//!
1010
//! [examples/adc.rs]: https://github.com/stm32-rs/stm32f3xx-hal/blob/v0.9.1/examples/adc.rs
@@ -97,6 +97,7 @@ pub struct TemperatureSensor<ADC> {
9797
///
9898
/// This peripheral can control different parts, like enabling internal sensors (like temperature sensor)
9999
/// or enable dual channel mode (which is not supported yet.)
100+
#[allow(clippy::module_name_repetitions)]
100101
pub struct CommonAdc<ADC> {
101102
reg: ADC,
102103
}
@@ -348,7 +349,7 @@ where
348349
// TODO(Sh3Rm4n): Check against and integrate to DMA
349350
#[inline]
350351
pub fn data_register_address(&self) -> u32 {
351-
&self.reg.dr as *const _ as u32
352+
core::ptr::addr_of!(self.reg.dr) as u32
352353
}
353354

354355
/// Manually start a conversion sequence.
@@ -629,8 +630,9 @@ where
629630
/// Get the current configured DMA mode.
630631
#[inline]
631632
pub fn dma_mode(&self) -> config::DmaMode {
632-
let cfgr = self.reg.cfgr.read();
633633
use adc1::cfgr::{DMACFG_A, DMAEN_A};
634+
635+
let cfgr = self.reg.cfgr.read();
634636
match (cfgr.dmaen().variant(), cfgr.dmacfg().variant()) {
635637
(DMAEN_A::Disabled, _) => config::DmaMode::Disabled,
636638
(DMAEN_A::Enabled, DMACFG_A::OneShot) => config::DmaMode::OneShot,
@@ -872,7 +874,7 @@ where
872874
/// Set the overrun mode
873875
#[inline]
874876
pub fn set_overrun_mode(&mut self, mode: config::OverrunMode) {
875-
self.reg.cfgr.modify(|_, w| w.ovrmod().variant(mode.into()))
877+
self.reg.cfgr.modify(|_, w| w.ovrmod().variant(mode.into()));
876878
}
877879

878880
/// Sets the sampling resolution.
@@ -1090,7 +1092,7 @@ where
10901092
/// the end of a single conversion of a "slot" is notfied via [`Event::EndOfConversion`].
10911093
#[inline]
10921094
pub fn set_sequence_length(&mut self, sequence: config::Sequence) {
1093-
self.reg.sqr1.modify(|_, w| w.l().bits(sequence.into()))
1095+
self.reg.sqr1.modify(|_, w| w.l().bits(sequence.into()));
10941096
}
10951097

10961098
// TODO(Sh3Rm4n): Implement, when injection mode is implemented.
@@ -1125,16 +1127,16 @@ where
11251127
Event::EndOfSequence => self.reg.ier.modify(|_, w| w.eosie().bit(enable)),
11261128
Event::Overrun => self.reg.ier.modify(|_, w| w.ovrie().bit(enable)),
11271129
Event::InjectedChannelEndOfConversion => {
1128-
self.reg.ier.modify(|_, w| w.jeocie().bit(enable))
1130+
self.reg.ier.modify(|_, w| w.jeocie().bit(enable));
11291131
}
11301132
Event::InjectedChannelEndOfSequence => {
1131-
self.reg.ier.modify(|_, w| w.jeosie().bit(enable))
1133+
self.reg.ier.modify(|_, w| w.jeosie().bit(enable));
11321134
}
11331135
Event::AnalogWatchdog1 => self.reg.ier.modify(|_, w| w.awd1ie().bit(enable)),
11341136
Event::AnalogWatchdog2 => self.reg.ier.modify(|_, w| w.awd2ie().bit(enable)),
11351137
Event::AnalogWatchdog3 => self.reg.ier.modify(|_, w| w.awd3ie().bit(enable)),
11361138
Event::InjectedContextQueueOverfow => {
1137-
self.reg.ier.modify(|_, w| w.jqovfie().bit(enable))
1139+
self.reg.ier.modify(|_, w| w.jqovfie().bit(enable));
11381140
}
11391141
};
11401142
}
@@ -1266,8 +1268,8 @@ where
12661268
#[cfg(feature = "svd-f373")]
12671269
self.set_scan(config::Scan::Disabled);
12681270

1269-
let is_eoc_enabled = self.is_interrupt_configured(Event::EndOfConversion);
1270-
let is_eos_enabled = self.is_interrupt_configured(Event::EndOfSequence);
1271+
let is_end_of_conversion_enabled = self.is_interrupt_configured(Event::EndOfConversion);
1272+
let is_end_of_sequence_enabled = self.is_interrupt_configured(Event::EndOfSequence);
12711273
self.disable_interrupt(Event::EndOfConversion);
12721274
self.disable_interrupt(Event::EndOfSequence);
12731275

@@ -1297,8 +1299,8 @@ where
12971299
}
12981300
self.set_sequence_length(seq_len);
12991301

1300-
self.configure_interrupt(Event::EndOfSequence, is_eos_enabled);
1301-
self.configure_interrupt(Event::EndOfConversion, is_eoc_enabled);
1302+
self.configure_interrupt(Event::EndOfSequence, is_end_of_sequence_enabled);
1303+
self.configure_interrupt(Event::EndOfConversion, is_end_of_conversion_enabled);
13021304

13031305
#[cfg(feature = "svd-f373")]
13041306
self.set_scan(config::Scan::Disabled);

src/adc/config.rs

+7-1
Original file line numberDiff line numberDiff line change
@@ -464,7 +464,7 @@ impl Default for OverrunMode {
464464
/// Each channel can be sampled with a different sample time.
465465
/// There is always an overhead of 13 ADC clock cycles.
466466
///
467-
/// E.g. For SampleTime::T19C5 the total conversion time (in ADC clock cycles) is
467+
/// E.g. For `SampleTime::T19C5` the total conversion time (in ADC clock cycles) is
468468
/// 13 + 19 = 32 ADC Clock Cycles
469469
///
470470
/// # Related functions
@@ -834,12 +834,14 @@ pub struct Config {
834834

835835
impl Config {
836836
/// Change the resolution
837+
#[must_use]
837838
pub fn resolution(mut self, resolution: Resolution) -> Self {
838839
self.resolution = resolution;
839840
self
840841
}
841842

842843
/// Set the align mode
844+
#[must_use]
843845
pub fn align(mut self, align: DataAlignment) -> Self {
844846
self.data_alignment = align;
845847
self
@@ -853,24 +855,28 @@ impl Config {
853855
}
854856

855857
/// Set the overrun mode
858+
#[must_use]
856859
pub fn overrun_mode(mut self, mode: OverrunMode) -> Self {
857860
self.overrun = mode;
858861
self
859862
}
860863

861864
/// Set the conversion mode
865+
#[must_use]
862866
pub fn conversion_mode(mut self, mode: ConversionMode) -> Self {
863867
self.conversion = mode;
864868
self
865869
}
866870

867871
/// Enable external trigger and the trigger source
872+
#[must_use]
868873
pub fn external_trigger(mut self, trigger: Option<ExternalTrigger>) -> Self {
869874
self.external_trigger = trigger;
870875
self
871876
}
872877

873878
/// Enable DMA and the operation mode, in which DMA will transfer data from the ADC peripheral.
879+
#[must_use]
874880
pub fn dma_mode(mut self, dma: DmaMode) -> Self {
875881
self.dma = dma;
876882
self

src/dac.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ impl Dac {
3232
unsafe {
3333
w.dacc1dhr().bits(data)
3434
}
35-
})
35+
});
3636
}
3737
}

src/delay.rs

+7-5
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ use crate::rcc::Clocks;
1616
use crate::time::duration::{Microseconds, Milliseconds};
1717
use crate::time::fixed_point::FixedPoint;
1818

19-
/// System timer (SysTick) as a delay provider
19+
/// System timer (`SysTick`) as a delay provider
2020
pub struct Delay {
2121
clocks: Clocks,
2222
syst: SYST,
@@ -39,7 +39,7 @@ impl fmt::Debug for Delay {
3939
}
4040

4141
impl Delay {
42-
/// Configures the system timer (SysTick) as a delay provider
42+
/// Configures the system timer (`SysTick`) as a delay provider
4343
///
4444
/// # Limitations
4545
///
@@ -49,6 +49,7 @@ impl Delay {
4949
///
5050
/// For accuracy purposes and because this is a blocking, busy-waiting function,
5151
/// if delays in the second to minute range are needed, use timers instead.
52+
#[must_use]
5253
pub fn new(mut syst: SYST, clocks: Clocks) -> Self {
5354
syst.set_clock_source(SystClkSource::Core);
5455

@@ -68,7 +69,8 @@ impl Delay {
6869
&mut self.syst
6970
}
7071

71-
/// Releases the system timer (SysTick) resource
72+
/// Releases the system timer (`SysTick`) resource
73+
#[must_use]
7274
pub fn free(self) -> SYST {
7375
self.syst
7476
}
@@ -131,13 +133,13 @@ impl DelayUs<u32> for Delay {
131133

132134
impl DelayUs<u16> for Delay {
133135
fn delay_us(&mut self, us: u16) {
134-
self.delay_us(u32::from(us))
136+
self.delay_us(u32::from(us));
135137
}
136138
}
137139

138140
impl DelayUs<u8> for Delay {
139141
fn delay_us(&mut self, us: u8) {
140-
self.delay_us(u32::from(us))
142+
self.delay_us(u32::from(us));
141143
}
142144
}
143145

src/dma.rs

+10-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ use core::{
2828
use enumset::EnumSetType;
2929

3030
/// Extension trait to split a DMA peripheral into independent channels
31+
#[allow(clippy::module_name_repetitions)]
3132
pub trait DmaExt {
3233
/// The type to split the DMA into
3334
type Channels;
@@ -134,12 +135,20 @@ impl<B, C: Channel, T: Target> Transfer<B, C, T> {
134135
}
135136

136137
/// Is this transfer complete?
138+
///
139+
/// # Panics
140+
///
141+
/// Panics if no transfer is ongoing.
137142
pub fn is_complete(&self) -> bool {
138143
let inner = crate::unwrap!(self.inner.as_ref());
139144
inner.channel.is_event_triggered(Event::TransferComplete)
140145
}
141146

142147
/// Stop this transfer and return ownership over its parts
148+
///
149+
/// # Panics
150+
///
151+
/// Panics no transfer is ongoing.
143152
pub fn stop(mut self) -> (B, C, T) {
144153
let mut inner = crate::unwrap!(self.inner.take());
145154
inner.stop();
@@ -349,7 +358,7 @@ pub trait Channel: private::Channel {
349358
///
350359
/// Panics if the word size is not one of 8, 16, or 32 bits.
351360
fn set_word_size<W>(&mut self) {
352-
use cr::PSIZE_A::*;
361+
use cr::PSIZE_A::{Bits16, Bits32, Bits8};
353362

354363
let psize = match mem::size_of::<W>() {
355364
1 => Bits8,

src/flash.rs

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use crate::pac::{flash, FLASH};
77
impl crate::private::Sealed for FLASH {}
88

99
/// Extension trait to constrain the [`FLASH`] peripheral
10+
#[allow(clippy::module_name_repetitions)]
1011
pub trait FlashExt: crate::private::Sealed {
1112
/// Constrains the [`FLASH`] peripheral.
1213
///
@@ -38,6 +39,7 @@ pub struct ACR {
3839
}
3940

4041
impl ACR {
42+
#[allow(clippy::unused_self)]
4143
pub(crate) fn acr(&mut self) -> &flash::ACR {
4244
// SAFETY: This proxy grants exclusive access to this register
4345
unsafe { &(*FLASH::ptr()).acr }

0 commit comments

Comments
 (0)