Add defmt log outputs for SPIM memcpy
This commit is contained in:
parent
e96dd3654a
commit
66fdec7abe
@ -272,6 +272,7 @@ impl<'d, T: Instance> Spim<'d, T> {
|
||||
match self.blocking_inner_from_ram(rx, tx) {
|
||||
Ok(_) => Ok(()),
|
||||
Err(Error::DMABufferNotInDataMemory) => {
|
||||
trace!("Copying SPIM tx buffer into RAM for DMA");
|
||||
let tx_copied = tx.clone();
|
||||
self.blocking_inner_from_ram(rx, tx_copied)
|
||||
}
|
||||
@ -302,6 +303,7 @@ impl<'d, T: Instance> Spim<'d, T> {
|
||||
match self.async_inner_from_ram(rx, tx).await {
|
||||
Ok(_) => Ok(()),
|
||||
Err(Error::DMABufferNotInDataMemory) => {
|
||||
trace!("Copying SPIM tx buffer into RAM for DMA");
|
||||
let tx_copied = tx.clone();
|
||||
self.async_inner_from_ram(rx, tx_copied).await
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user