Skip to content

Commit 32bfbaf

Browse files
committed
Fix request line in writer
1 parent 8e83270 commit 32bfbaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fmac/dma.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ unsafe impl ReadBuffer for FmacDmaReader {
4747

4848
unsafe impl TargetAddress<MemoryToPeripheral> for FmacDmaWriter {
4949
type MemSize = u32;
50-
const REQUEST_LINE: Option<u8> = Some(DmaMuxResources::FMAC_Read as u8);
50+
const REQUEST_LINE: Option<u8> = Some(DmaMuxResources::FMAC_Write as u8);
5151

5252
fn address(&self) -> u32 {
5353
self.wdata as u32

0 commit comments

Comments
 (0)