Skip to content

Register read/write not writing on stm32l433 #340

@sousandrei

Description

@sousandrei

Something seems to be off.

When writing on registers using the following code, the results tells the the read/write from won't work unless I go hardcore on ptr::read or ptr::write.

Maybe I'm using the wrong register, but I'm using stm32l4::stm32l4x3::SPI2::PTR as a reference 🤔

When writing with prt::write, it actually works on ptr::read but not on the dp read, always zero

Am I missing something?

Context: was trying to use some SPI crate and the result was very random all the time, could not pinpoint the error so started digging down

let dp = stm32::Peripherals::take().unwrap();
let mut spi2 = 0x4000_3800;

writeln!(sys, "dp read {:?}", dp.SPI2.cr1.read().bits()).unwrap();
writeln!(sys, "core read {:?}", unsafe { core::ptr::read(&spi2) }).unwrap();

dp.SPI2.cr1.modify(|_, w| w.spe().enabled());

writeln!(sys, "dp read {:?}", dp.SPI2.cr1.read().bits()).unwrap();
writeln!(sys, "core read {:?}", unsafe { core::ptr::read(&spi2) }).unwrap();

unsafe { core::ptr::write(&mut spi2, 1) }
writeln!(sys, "core write 1").unwrap();

writeln!(sys, "dp read {:?}", dp.SPI2.cr1.read().bits()).unwrap();
writeln!(sys, "core read {:?}", unsafe { core::ptr::read(&spi2) }).unwrap();

Resulting in

23:34:06.743 dp read 0
23:34:06.743 core read 1073756160

23:34:06.743 dp read 0
23:34:06.743 core read 1073756160

23:34:06.743 core write 1

23:34:06.743 dp read 0
23:34:06.743 core read 1

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions