diff options
Diffstat (limited to 'lib/chibios/os/hal/ports/STM32/LLD/DMAv2/notes.txt')
-rw-r--r-- | lib/chibios/os/hal/ports/STM32/LLD/DMAv2/notes.txt | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lib/chibios/os/hal/ports/STM32/LLD/DMAv2/notes.txt b/lib/chibios/os/hal/ports/STM32/LLD/DMAv2/notes.txt new file mode 100644 index 000000000..aadcf2cb3 --- /dev/null +++ b/lib/chibios/os/hal/ports/STM32/LLD/DMAv2/notes.txt | |||
@@ -0,0 +1,18 @@ | |||
1 | STM32 DMAv2 driver. | ||
2 | |||
3 | Driver capability: | ||
4 | |||
5 | - The driver supports the STM32 enhanced DMA controller found on F2, F4 and | ||
6 | F7 sub-families. | ||
7 | - Support for automatic the channel selection. | ||
8 | - Support for cache flushing and invalidation. | ||
9 | |||
10 | The file registry must export: | ||
11 | |||
12 | STM32_ADVANCED_DMA - TRUE not used by the DMA drivers but other | ||
13 | drivers use it to enable checks on DMA | ||
14 | channels. Probably will be removed in the | ||
15 | future. | ||
16 | STM32_HAS_DMAx - Support for DMA unit "x" (1..2). | ||
17 | STM32_DMAx_CHn_HANDLER - Vector name for channel "n" (0..7). | ||
18 | STM32_DMAn_CHx_NUMBER - Vector number for channel "n" (0..7). | ||