diff options
| author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2022-04-25 12:32:04 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-04-25 12:32:04 +0000 |
| commit | 97e24b056879547bb21158c2193f67ddb9e0a790 (patch) | |
| tree | ca867531d8a4670b39f24e7afa6bd9c739cf7225 /examples | |
| parent | a1746f4ddac734cd8912007b6155ca340df89f19 (diff) | |
| parent | 945fa0871f03a1db9a9be16e92346d62825decdd (diff) | |
Merge #716
716: Implement giant (chunked) DMA transfers r=Dirbaio a=matoushybl
There is a breaking change in the Channel trait in the method `remaining_transfers()`, this method however hasn't been used anywhere in the codebase and the return type changed from u16 to u32, so all of the previous use cases should work.
Co-authored-by: Matous Hybl <[email protected]>
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/stm32h7/memory.x | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/stm32h7/memory.x b/examples/stm32h7/memory.x index c23c397a4..026b14b9b 100644 --- a/examples/stm32h7/memory.x +++ b/examples/stm32h7/memory.x | |||
| @@ -1,5 +1,5 @@ | |||
| 1 | MEMORY | 1 | MEMORY |
| 2 | { | 2 | { |
| 3 | FLASH : ORIGIN = 0x8000000, LENGTH = 1024K | 3 | FLASH : ORIGIN = 0x8000000, LENGTH = 1024K |
| 4 | RAM : ORIGIN = 0x24000000, LENGTH = 128K | 4 | RAM : ORIGIN = 0x24000000, LENGTH = 384K |
| 5 | } \ No newline at end of file | 5 | } |
