How can I get value using ADC interrupt continuously without DMA using stm32f7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-03-22 8:02 AM
When I press Reset B2 button on the Nucleo ADC takes value, otherwise it waits!
anyone helpp??
- Labels:
-
ADC
-
DMA
-
STM32F7 Series
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-03-22 12:01 PM
change this
ADC_HandleStruct.Init.ExternalTrigConv = ADC_SOFTWARE_START;
Make a timer which output a PWM channel and connect it to the ADC trigger input pin and use it as external trigger for an ADC conversion repeteadly. Every conversion complete, grab the value and fill a buffer (SW DMA).
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
‎2019-03-22 4:10 PM
Hi,
I changed the config as you said and I triggered the input pin manually and/or changed potantiometer (because I dont have ability to use PWM yet).
but It is not working.. any missing of Timer or another?
