应用笔记 · 2019年4月17日

A detailed tutorial on STM32 ADC – multiple channel、DMA、average

This tutorial shows how to use various modes of the STM32 ADCs, including:

  • Basic single-channel measurement
  • Use of interrupts
  • DMA
  • Multi-channel sequences

Before you begin, install VisualGDB 5.0 or later and ensure you are using the latest version of the STM32 BSP.

An ADC (Analog-to-Digital Converter) is a peripheral that allows measuring the voltage (between 0 and Vref) on a certain input of the microcontroller and converting it into a number between 0 and 2N-1 where N is the ADC resolution. The easiest way to experiment with an ADC is to connect it to a potentiometer – a mechanically adjustable resistor:potentiometerIf you connect one of the side terminals of the potentiometer to the GND pin on your board and the other one to the VCC pin, rotating the potentiometer knob will gradually change the voltage level (relative to ground) on the third pin between 0 and VDD, that should produce values from 0 to 4095 for a 12-bit ADC.

In this tutorial we will use the STM32F4Discovery board with the STM32F407VG microcontroller that has several ADC inputs. We will use the PC1 pin connected to channel 11 of ADCs 1-3 according to the STM32F407xx datasheet:

adc1The connected potentiometer will look like this:boardNow we will start writing the software to experiment with different ADC modes.

  1. Start Visual Studio and begin creating a new project with VisualGDB Embedded Project Wizard:wizard
  2. Select “Create a new project” on the first page the wizard:firmware
  3. Select your device on the next page. In this example we are using STM32F407VG:device
  4. Continue with the default “LEDBlink (HAL)” sample:sample
  5. On the last wizard page select the programming interface you want to use. The easiest option is to select OpenOCD, connect your board to the PC and click “Detect” and “Test OpenOCD Settings” to configure everything automatically:openocd
  6. Press Finish to create your project. Ensure that you can build it by pressing Ctrl-Shift-B:build
  7. Before we can start using ADC, we need to configure the system clocks. You can either use the STM32CubeMX to generate a clock initialization function for you as described here, or use the following one:
  8. If you want to change the naming style of the variables, simply rename the definition and use the smart tags to rename the references. As long as you are using Clang IntelliSense, this will work in all Visual Studio versions starting with VS2005:rename
  9. The easiest way to start using the ADC is to enable it in the poll mode. To do that you will need the following:
    • Enable the ADC clock
    • Enable the GPIO clock for the pin you want to use
    • Configure the GPIO pin as an analog input
    • Configure the ADC speed (prescaler/sample time)
    • Enable continuous measurement mode

    This can be done using the following code:

  10. Finally replace the main() function with the following code that will continuously read the data from the ADC:
  11. Set a breakpoint on the line incrementing the g_MeasurementNumber variable and press F5 to start debugging. Once the breakpoint is hit, hover the mouse over “g_ADCValue” to see the measured value:adcval
  12. Select Debug->Windows->Live Variables, add “g_ADCValue” and “g_MeasurementNumber” to live variable list, remove the breakpoint and press F5 to resume debugging. Then try moving the potentiometer knob and observe the plot view:You can also plot the g_MeasurementNumber variable to observe how fast the measurements are taken by the device. The settings shown in this tutorial should result in approximately 64K measurements per second.live
  13. Reading the values in a loop is the simplest way to use the ADC, but it makes it harder to run other code while the ADC is being used. To support that, we will switch to using ADC in the interrupt-based mode. This is done by replacing HAL_ADC_Start() with HAL_ADC_Start_IT() and adding the following handler functions:
  14. We will also modify the main() function to control the LED connected to PD12 based on the value from the ADC. E.g. if the ADC value 96, the LED will be on 96 cycles and then off for 4000 cycles, making it look very faint:
  15. Build and run your program. Ensure that the perceived LED brightness changes when you turn the knob. Then set a breakpoint in the  HAL_ADC_ConvCpltCallback function:callstack
  16. From looking at the functions in the call stack and the HAL_ADC_Start_IT() function we can understand how the interrupt mechanism works:
    • When you call HAL_ADC_Start_IT() it calls __HAL_ADC_ENABLE_IT() to enable the overrun and end-of-conversion interrupts
    • When we call HAL_NVIC_EnableIRQ(), it enables the ADC IRQ in the interrupt controller
    • When the ADC conversion is complete, it sets the EOC bit in the ADC1_SR register.
    • As the end-of-conversion interrupt was enabled, ADC signals the interrupt to the interrupt controller. The corresponding bit in the NVIC->ISPR register is set.
    • As we have enabled the ADC interrupt, the ARM Cortex core invokes the ADC_IQRHandler() function that in turn calls HAL_ADC_IRQHandler() that reads the value from the ADC and calls HAL_ADC_ConvCpltCallback().

    If the callback is not invoked in your code, use the list above to check whether the end-of-conversion event occurs and whether it is propagated to the interrupt controller.

  17. Now we will try to raise the ADC performance. Replace ADC_SAMPLETIME_480CYCLES with ADC_SAMPLETIME_28CYCLES and start debugging. You will notice that the loop in main() is never executed. You can use the debugger to find out that by the time the ADC value is read, the next ADC interrupt is already pending:pending
  18. This happens because the ADC reads new values faster than our code can handle. To speed this up, we will now use the DMA to get the ADC automatically write values into a buffer in RAM and only call the CPU when the entire buffer is written. According to the STM32F4 reference manual, ADC1 is connected to channel 0 of streams 0 and 4 of DMA2:dmastreamIn this example we will use channel 0 of stream 4.
  19. Before we can start using the DMA, we need to configure it. Add the following code to your program:

    Note the Mode parameter. If you set it to DMA_NORMAL, you would need to start another DMA transfer by calling HAL_ADC_Start_DMA() each time a transfer is completed. And if you don’t do it fast enough, you will get an ADC overrun error and lose some ADC samples. In this example we set it to DMA_CIRCULAR so when the DMA controller is done filling the buffer it will restart from the beginning the moment it receives a new value from the ADC.

    Note: if you get a build error stating that DMA2_Stream4_IRQn is undefined, try using DMA2_Channel4_IRQn instead. Some device families may also require the following code in your SystemClock_Config() function:

  20. Define a global array called g_ADCBuffer and modify the HAL_ADC_ConvCpltCallback() function to compute the average value from the array instead of polling the last value from the ADC:
  21. Finally replace the call to HAL_ADC_Start_IT() in main() with the following code:
  22. Now you can start your program and see that it is no longer spending all its time in the interrupt handler, as the handler is now only invoked once for every 8192 ADC values. Set a breakpoint in the HAL_ADC_ConvCpltCallback() function and wait until it is hit:adcbuf
  23. Select Debug->Windows-Visual Watch and add g_ADCBuffer to the Visual Watch window:visualw
  24. This will visualize the contents of the buffer filled by ADC. Note that it may have a jump in it as the will ADC keep on running in the background and updating the buffer even while the program is stopped in the debugger. You can avoid it by manually disabling the ADC clock via the Hardware Registers window:adcclock
  25. You can get an idea of the DMA timings by saving the value of the NDTR register from the DMA stream at different points in your HAL_ADC_ConvCpltCallback() function:

    Note that the NDTR register contains the remaining amount of values, not the transferred amount.

  26. In our example, by the time we start computing the average value of the measurements, the DMA controller has already overwritten 4 first values in the buffer with new values and by the time we end averaging it has filled 1234 values:dmaoff
  27. Although this is not critical for the averaging example, it may become a problem if we are interested in precise data. This can be solved by defining the HAL_ADC_ConvHalfCpltCallback()handler that will be invoked once the DMA controller fills half of the buffer. We will then process the first half of the buffer while the second half is being filled and vice versa:
  28. Check the newly added global variables to ensure that the first half of the buffer is processed while the second half is being modified and vice versa:timings
  29. One last thing we will show in this tutorial is how to configure ADC to automatically interleave data from several channels. Change the ConfigureADC() function to set ScanConvMode = ENABLE and NbrOfConversion=2. Then add the following code after the call to HAL_ADC_ConfigChannel():

    Specifying Rank = 2 means that the newly added channel 16 (converted to a temperature sensor on STM32F407VG) will be converted after the channel 11 with rank 1.

  30. Set a breakpoint in HAL_ADC_ConvHalfCpltCallback() and start debugging. Once the breakpoint is hit, click in the “Setup” field of the g_ADCBuffer visual watch and set the length to 32:graphlen
  31. This will zoom the graph to clearly show that every even point is taken from the potentiometer channel and every odd point is taken from the internal temperature sensor and does not change when we rotate the knob:2ch