diff options
Diffstat (limited to 'lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt')
-rw-r--r-- | lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt b/lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt new file mode 100644 index 000000000..24c77eb5c --- /dev/null +++ b/lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt | |||
@@ -0,0 +1,22 @@ | |||
1 | STM32 ADCv3 driver. | ||
2 | |||
3 | Driver capability: | ||
4 | |||
5 | - Supports the STM32 "fast" ADC found on F3, L4, L4+ and G4 sub-families. | ||
6 | |||
7 | The file registry must export: | ||
8 | |||
9 | STM32_HAS_ADCx - ADCx presence flag (1..4). | ||
10 | STM32_ADC1_HANDLER - IRQ vector name for ADC1. | ||
11 | STM32_ADC1_NUMBER - IRQ vector number for ADC1. | ||
12 | STM32_ADC2_HANDLER - IRQ vector name for ADC2. | ||
13 | STM32_ADC2_NUMBER - IRQ vector number for ADC2. | ||
14 | STM32_ADC3_HANDLER - IRQ vector name for ADC3. | ||
15 | STM32_ADC3_NUMBER - IRQ vector number for ADC3. | ||
16 | STM32_ADC4_HANDLER - IRQ vector name for ADC4. | ||
17 | STM32_ADC4_NUMBER - IRQ vector number for ADC4. | ||
18 | |||
19 | If there is no DMAMUX then the file registry must export also: | ||
20 | |||
21 | STM32_ADCx_DMA_MSK - Mask of the compatible DMA channels (1..4). | ||
22 | STM32_ADCx_DMA_CHN - Mask of the channels mapping (1..4). | ||