<GuineaWheek[m]>
are there any examples on how to do spi reads on stm32h7xx-hal
<GuineaWheek[m]>
and doing spi for both send and receive appears to be structurally impossible
<GuineaWheek[m]>
all the examples only do writes
<GuineaWheek[m]>
well, not just spi reads, spi dma reads
<GuineaWheek[m]>
* only do dma writes
<GuineaWheek[m]>
* doing spi dma for both, * and receive simultaneously appears to, * structurally impossible because the transfers take ownership of the peripheral
<GuineaWheek[m]>
* are there any examples on how to do spi reads with dma on stm32h7xx-hal
<salsasteve[m]>
I found this example. Not sure if this helps. It’s on the esp32 but it should look similar on the stm32. But I don’t have experience with the stm.
<ckrenslehner[m]>
JamesMunns[m]: Already waiting for the next episode 🤓
pcs38 has joined #rust-embedded
ello has quit [Ping timeout: 272 seconds]
ello has joined #rust-embedded
HumanG33k has quit [Read error: Connection reset by peer]
HumanG33k has joined #rust-embedded
<RobinMueller[m]>
<ckrenslehner[m]> "Already waiting for the next..." <- Thanks, that also looks interesting and might be usable for my use-case. My use-case wouldn´t be DMA, but a logger sink implementation, where I want to write all log messages to a ring buffer, and then have a dedicated task write out all buffer content to UART. I suppose I still need a lock because I have multiple producers in the logger, but at the very least I might
<RobinMueller[m]>
only have to lock producer writes? Async support is also interesting because I somehow want to be able to notify the writer task. I would have just used a simple embassy queue for this.
whitequark[cis] has quit [Quit: Idle timeout reached: 172800s]
korken89[m] has quit [Quit: Idle timeout reached: 172800s]
<AlexandrosLiarok>
is there a good way to get a report of data consumers per memory region instead of per-section ?
<adamgreig[m]>
(e.g. put println!("cargo:rustc-link-arg=--print-memory-usage"); in build.rs or put "-C", "link-arg=--print-memory-usage" in rustflags in .cargo/config.toml)
<adamgreig[m]>
oh cool! actually because https://github.com/rust-lang/rust/pull/119286 was merged recently, on latest rust you can just run "cargo build -v" to get the linker output displayed, even better
pcs38 has joined #rust-embedded
<adamgreig[m]>
oh weird, perhaps not? it looks more like after running with RUSTC_LOG set the first time, subsequent calls to cargo build still show the linker output, but -v doesn't affect it
HumanG33k has quit [Quit: WeeChat 3.8]
HumanG33k has joined #rust-embedded
<AlexandrosLiarok>
<adamgreig[m]> "yea, pass `--print-memory-usage`..." <- Thanks a ton!