ADC Scan conversions without DMA in STM32F103RB
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2018-05-06 9:41 AM
Is it possible to do ADC SCAN conversions without using DMA?
#adc-scan-continuous #stm32f103rb #adcSolved! Go to Solution.
- Labels:
-
ADC
-
STM32F1 Series
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2018-05-06 9:50 AM
No. And it is not practical.
For individual samples, there is Injected mode.
For multiple you can trigger the ADC to load a small array quickly, and where you would have waited for EOC you wait for DMA TC.
Where samples are occurring on a timely basis, use a TIM to trigger the start of conversion, and then manage in the IRQ Handler.
Best to move beyond the polled mentality.
Up vote any posts that you find helpful, it shows what's working..
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2018-05-06 9:50 AM
No. And it is not practical.
For individual samples, there is Injected mode.
For multiple you can trigger the ADC to load a small array quickly, and where you would have waited for EOC you wait for DMA TC.
Where samples are occurring on a timely basis, use a TIM to trigger the start of conversion, and then manage in the IRQ Handler.
Best to move beyond the polled mentality.
Up vote any posts that you find helpful, it shows what's working..
