Skip to content

Commit

Permalink
Fix error "assigning to &T is undefined behavior" and clippy warnings (
Browse files Browse the repository at this point in the history
…#232)

Since Rust 1.73.0, the compiler errors about assigning to a reference
when casting it to a mutable pointer.

See: https://doc.rust-lang.org/beta/rustc/lints/listing/deny-by-default.html#invalid-reference-casting
  • Loading branch information
azerupi authored Jan 16, 2024
1 parent 8de7c8d commit 7041775
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 10 deletions.
8 changes: 4 additions & 4 deletions src/exti.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ impl Exti {

unsafe {
match line {
0 | 1 | 2 | 3 => {
0..=3 => {
syscfg.syscfg.exticr1.modify(|_, w| match line {
0 => w.exti0().bits(port_bm),
1 => w.exti1().bits(port_bm),
Expand All @@ -78,7 +78,7 @@ impl Exti {
_ => w,
});
}
4 | 5 | 6 | 7 => {
4..=7 => {
// no need to assert that PH is not port,
// since line is assert on port above
syscfg.syscfg.exticr2.modify(|_, w| match line {
Expand All @@ -89,7 +89,7 @@ impl Exti {
_ => w,
});
}
8 | 9 | 10 | 11 => {
8..=11 => {
syscfg.syscfg.exticr3.modify(|_, w| match line {
8 => w.exti8().bits(port_bm),
9 => w.exti9().bits(port_bm),
Expand All @@ -98,7 +98,7 @@ impl Exti {
_ => w,
});
}
12 | 13 | 14 | 15 => {
12..=15 => {
syscfg.syscfg.exticr4.modify(|_, w| match line {
12 => w.exti12().bits(port_bm),
13 => w.exti13().bits(port_bm),
Expand Down
4 changes: 2 additions & 2 deletions src/gpio.rs
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,9 @@ macro_rules! gpio {
pub fn set_speed(self, speed: Speed) -> Self {
let offset = 2 * $i;
unsafe {
&(*$GPIOX::ptr()).ospeedr.modify(|r, w| {
let _ = &(*$GPIOX::ptr()).ospeedr.modify(|r, w| {
w.bits((r.bits() & !(0b11 << offset)) | ((speed as u32) << offset))
})
});
};
self
}
Expand Down
2 changes: 1 addition & 1 deletion src/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ pub use crate::serial::{Serial1Ext as _, Serial1LpExt as _};
feature = "io-STM32L071",
))]
pub use crate::serial::{Serial1LpExt as _, Serial2Ext as _};
#[cfg(any(feature = "io-STM32L071",))]
#[cfg(feature = "io-STM32L071")]
pub use crate::serial::{Serial4Ext as _, Serial5Ext as _};
5 changes: 3 additions & 2 deletions src/serial.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
use core::cell::UnsafeCell;
use core::fmt;
use core::marker::PhantomData;
use core::ptr;
Expand Down Expand Up @@ -33,7 +34,7 @@ use crate::dma::Buffer;
))]
use crate::gpio::gpioc::*;
use crate::gpio::{gpioa::*, gpiob::*};
#[cfg(any(feature = "io-STM32L071"))]
#[cfg(feature = "io-STM32L071")]
use crate::gpio::{gpiod::*, gpioe::*};

/// Serial error
Expand Down Expand Up @@ -661,7 +662,7 @@ macro_rules! usart {
if isr.txe().bit_is_set() {
// NOTE(unsafe) atomic write to stateless register
// NOTE(write_volatile) 8-bit write that's not possible through the svd2rust API
unsafe { ptr::write_volatile(&(*$USARTX::ptr()).tdr as *const _ as *mut _, byte) }
unsafe { ptr::write_volatile(UnsafeCell::raw_get(&(*$USARTX::ptr()).tdr as *const _ as _), byte) }

Ok(())
} else {
Expand Down
3 changes: 2 additions & 1 deletion src/spi.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
use core::{
cell::UnsafeCell,
marker::PhantomData,
ops::{Deref, DerefMut},
pin::Pin,
Expand Down Expand Up @@ -449,7 +450,7 @@ macro_rules! spi {
nb::Error::Other(Error::Crc)
} else if sr.txe().bit_is_set() {
// NOTE(write_volatile) see note above
unsafe { ptr::write_volatile(&self.spi.dr as *const _ as *mut u8, byte) }
unsafe { ptr::write_volatile(UnsafeCell::raw_get(&self.spi.dr as *const _ as _), byte) }
return Ok(());
} else {
nb::Error::WouldBlock
Expand Down

0 comments on commit 7041775

Please sign in to comment.