Skip to content

Commit f7c9e3f

Browse files
committed
merge update
1 parent cdeebd5 commit f7c9e3f

File tree

5 files changed

+456
-280
lines changed

5 files changed

+456
-280
lines changed

esp-hal/CHANGELOG.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- `Pins::steal()` to unsafely obtain GPIO. (#2335)
2121
- `I2c::with_timeout` (#2361)
2222
- `Spi::half_duplex_read` and `Spi::half_duplex_write` (#2373)
23-
- `Cpu::COUNT` and `Cpu::current()` (#?)
2423
- Add RGB/DPI driver (#2415)
2524
- Add `DmaLoopBuf` (#2415)
2625
- `Cpu::COUNT` and `Cpu::current()` (#2411)

esp-hal/src/dma/buffers.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1106,6 +1106,8 @@ unsafe impl DmaTxBuffer for DmaLoopBuf {
11061106
start: self.descriptor,
11071107
block_size: None,
11081108
is_burstable: true,
1109+
// The DMA must not check the owner bit, as it is never set.
1110+
check_owner: Some(false),
11091111
}
11101112
}
11111113

0 commit comments

Comments
 (0)