aboutsummaryrefslogtreecommitdiff
path: root/lib/chibios/os/hal/ports/STM32/LLD/ADCv3/notes.txt
diff options
context:
space:
mode:
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.txt22
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 @@
1STM32 ADCv3 driver.
2
3Driver capability:
4
5- Supports the STM32 "fast" ADC found on F3, L4, L4+ and G4 sub-families.
6
7The file registry must export:
8
9STM32_HAS_ADCx - ADCx presence flag (1..4).
10STM32_ADC1_HANDLER - IRQ vector name for ADC1.
11STM32_ADC1_NUMBER - IRQ vector number for ADC1.
12STM32_ADC2_HANDLER - IRQ vector name for ADC2.
13STM32_ADC2_NUMBER - IRQ vector number for ADC2.
14STM32_ADC3_HANDLER - IRQ vector name for ADC3.
15STM32_ADC3_NUMBER - IRQ vector number for ADC3.
16STM32_ADC4_HANDLER - IRQ vector name for ADC4.
17STM32_ADC4_NUMBER - IRQ vector number for ADC4.
18
19If there is no DMAMUX then the file registry must export also:
20
21STM32_ADCx_DMA_MSK - Mask of the compatible DMA channels (1..4).
22STM32_ADCx_DMA_CHN - Mask of the channels mapping (1..4).