1 /**
2   ******************************************************************************
3   * @file    stm32f7xx_hal_adc.h
4   * @author  MCD Application Team
5   * @brief   Header file of ADC HAL module.
6   ******************************************************************************
7   * @attention
8   *
9   * Copyright (c) 2017 STMicroelectronics.
10   * All rights reserved.
11   *
12   * This software is licensed under terms that can be found in the LICENSE file
13   * in the root directory of this software component.
14   * If no LICENSE file comes with this software, it is provided AS-IS.
15   *
16   ******************************************************************************
17   */
18 
19 /* Define to prevent recursive inclusion -------------------------------------*/
20 #ifndef STM32F7xx_ADC_EX_H
21 #define STM32F7xx_ADC_EX_H
22 
23 #ifdef __cplusplus
24  extern "C" {
25 #endif
26 
27 /* Includes ------------------------------------------------------------------*/
28 #include "stm32f7xx_hal_def.h"
29 
30 /** @addtogroup STM32F7xx_HAL_Driver
31   * @{
32   */
33 
34 /** @addtogroup ADCEx
35   * @{
36   */
37 
38 /* Exported types ------------------------------------------------------------*/
39 /** @defgroup ADCEx_Exported_Types ADC Exported Types
40   * @{
41   */
42 
43 /**
44   * @brief  ADC Configuration injected Channel structure definition
45   * @note   Parameters of this structure are shared within 2 scopes:
46   *          - Scope channel: InjectedChannel, InjectedRank, InjectedSamplingTime, InjectedOffset
47   *          - Scope injected group (affects all channels of injected group): InjectedNbrOfConversion, InjectedDiscontinuousConvMode,
48   *            AutoInjectedConv, ExternalTrigInjecConvEdge, ExternalTrigInjecConv.
49   * @note   The setting of these parameters with function HAL_ADCEx_InjectedConfigChannel() is conditioned to ADC state.
50   *         ADC state can be either:
51   *          - For all parameters: ADC disabled
52   *          - For all except parameters 'InjectedDiscontinuousConvMode' and 'AutoInjectedConv': ADC enabled without conversion on going on injected group.
53   *          - For parameters 'ExternalTrigInjecConv' and 'ExternalTrigInjecConvEdge': ADC enabled, even with conversion on going on injected group.
54   */
55 typedef struct
56 {
57   uint32_t InjectedChannel;                      /*!< Selection of ADC channel to configure
58                                                       This parameter can be a value of @ref ADC_channels
59                                                       Note: Depending on devices, some channels may not be available on package pins. Refer to device datasheet for channels availability. */
60   uint32_t InjectedRank;                         /*!< Rank in the injected group sequencer
61                                                       This parameter must be a value of @ref ADCEx_injected_rank
62                                                       Note: In case of need to disable a channel or change order of conversion sequencer, rank containing a previous channel setting can be overwritten by the new channel setting (or parameter number of conversions can be adjusted) */
63   uint32_t InjectedSamplingTime;                 /*!< Sampling time value to be set for the selected channel.
64                                                       Unit: ADC clock cycles
65                                                       Conversion time is the addition of sampling time and processing time (12 ADC clock cycles at ADC resolution 12 bits, 11 cycles at 10 bits, 9 cycles at 8 bits, 7 cycles at 6 bits).
66                                                       This parameter can be a value of @ref ADC_sampling_times
67                                                       Caution: This parameter updates the parameter property of the channel, that can be used into regular and/or injected groups.
68                                                                If this same channel has been previously configured in the other group (regular/injected), it will be updated to last setting.
69                                                       Note: In case of usage of internal measurement channels (VrefInt/Vbat/TempSensor),
70                                                             sampling time constraints must be respected (sampling time can be adjusted in function of ADC clock frequency and sampling time setting)
71                                                             Refer to device datasheet for timings values, parameters TS_vrefint, TS_temp (values rough order: 4us min). */
72   uint32_t InjectedOffset;                       /*!< Defines the offset to be subtracted from the raw converted data (for channels set on injected group only).
73                                                       Offset value must be a positive number.
74                                                       Depending of ADC resolution selected (12, 10, 8 or 6 bits),
75                                                       this parameter must be a number between Min_Data = 0x000 and Max_Data = 0xFFF, 0x3FF, 0xFF or 0x3F respectively. */
76   uint32_t InjectedNbrOfConversion;              /*!< Specifies the number of ranks that will be converted within the injected group sequencer.
77                                                       To use the injected group sequencer and convert several ranks, parameter 'ScanConvMode' must be enabled.
78                                                       This parameter must be a number between Min_Data = 1 and Max_Data = 4.
79                                                       Caution: this setting impacts the entire injected group. Therefore, call of HAL_ADCEx_InjectedConfigChannel() to
80                                                                configure a channel on injected group can impact the configuration of other channels previously set. */
81   FunctionalState InjectedDiscontinuousConvMode; /*!< Specifies whether the conversions sequence of injected group is performed in Complete-sequence/Discontinuous-sequence (main sequence subdivided in successive parts).
82                                                       Discontinuous mode is used only if sequencer is enabled (parameter 'ScanConvMode'). If sequencer is disabled, this parameter is discarded.
83                                                       Discontinuous mode can be enabled only if continuous mode is disabled. If continuous mode is enabled, this parameter setting is discarded.
84                                                       This parameter can be set to ENABLE or DISABLE.
85                                                       Note: For injected group, number of discontinuous ranks increment is fixed to one-by-one.
86                                                       Caution: this setting impacts the entire injected group. Therefore, call of HAL_ADCEx_InjectedConfigChannel() to
87                                                                configure a channel on injected group can impact the configuration of other channels previously set. */
88   FunctionalState AutoInjectedConv;              /*!< Enables or disables the selected ADC automatic injected group conversion after regular one
89                                                       This parameter can be set to ENABLE or DISABLE.
90                                                       Note: To use Automatic injected conversion, discontinuous mode must be disabled ('DiscontinuousConvMode' and 'InjectedDiscontinuousConvMode' set to DISABLE)
91                                                       Note: To use Automatic injected conversion, injected group external triggers must be disabled ('ExternalTrigInjecConv' set to ADC_SOFTWARE_START)
92                                                       Note: In case of DMA used with regular group: if DMA configured in normal mode (single shot) JAUTO will be stopped upon DMA transfer complete.
93                                                             To maintain JAUTO always enabled, DMA must be configured in circular mode.
94                                                       Caution: this setting impacts the entire injected group. Therefore, call of HAL_ADCEx_InjectedConfigChannel() to
95                                                                configure a channel on injected group can impact the configuration of other channels previously set. */
96   uint32_t ExternalTrigInjecConv;                /*!< Selects the external event used to trigger the conversion start of injected group.
97                                                       If set to ADC_INJECTED_SOFTWARE_START, external triggers are disabled.
98                                                       If set to external trigger source, triggering is on event rising edge.
99                                                       This parameter can be a value of @ref ADCEx_External_trigger_Source_Injected
100                                                       Note: This parameter must be modified when ADC is disabled (before ADC start conversion or after ADC stop conversion).
101                                                             If ADC is enabled, this parameter setting is bypassed without error reporting (as it can be the expected behaviour in case of another parameter update on the fly)
102                                                       Caution: this setting impacts the entire injected group. Therefore, call of HAL_ADCEx_InjectedConfigChannel() to
103                                                                configure a channel on injected group can impact the configuration of other channels previously set. */
104   uint32_t ExternalTrigInjecConvEdge;            /*!< Selects the external trigger edge of injected group.
105                                                       This parameter can be a value of @ref ADCEx_External_trigger_edge_Injected.
106                                                       If trigger is set to ADC_INJECTED_SOFTWARE_START, this parameter is discarded.
107                                                       Caution: this setting impacts the entire injected group. Therefore, call of HAL_ADCEx_InjectedConfigChannel() to
108                                                                configure a channel on injected group can impact the configuration of other channels previously set. */
109 }ADC_InjectionConfTypeDef;
110 
111 /**
112   * @brief ADC Configuration multi-mode structure definition
113   */
114 typedef struct
115 {
116   uint32_t Mode;              /*!< Configures the ADC to operate in independent or multi mode.
117                                    This parameter can be a value of @ref ADCEx_Common_mode */
118   uint32_t DMAAccessMode;     /*!< Configures the Direct memory access mode for multi ADC mode.
119                                    This parameter can be a value of @ref ADCEx_Direct_memory_access_mode_for_multi_mode */
120   uint32_t TwoSamplingDelay;  /*!< Configures the Delay between 2 sampling phases.
121                                    This parameter can be a value of @ref ADC_delay_between_2_sampling_phases */
122 }ADC_MultiModeTypeDef;
123 
124 /**
125   * @}
126   */
127 
128 /* Exported constants --------------------------------------------------------*/
129 /** @defgroup ADCEx_Exported_Constants ADC Exported Constants
130   * @{
131   */
132 
133 /** @defgroup ADCEx_Common_mode ADC Common Mode
134   * @{
135   */
136 #define ADC_MODE_INDEPENDENT                  ((uint32_t)0x00000000U)
137 #define ADC_DUALMODE_REGSIMULT_INJECSIMULT    ((uint32_t)ADC_CCR_MULTI_0)
138 #define ADC_DUALMODE_REGSIMULT_ALTERTRIG      ((uint32_t)ADC_CCR_MULTI_1)
139 #define ADC_DUALMODE_INJECSIMULT              ((uint32_t)(ADC_CCR_MULTI_2 | ADC_CCR_MULTI_0))
140 #define ADC_DUALMODE_REGSIMULT                ((uint32_t)(ADC_CCR_MULTI_2 | ADC_CCR_MULTI_1))
141 #define ADC_DUALMODE_INTERL                   ((uint32_t)(ADC_CCR_MULTI_2 | ADC_CCR_MULTI_1 | ADC_CCR_MULTI_0))
142 #define ADC_DUALMODE_ALTERTRIG                ((uint32_t)(ADC_CCR_MULTI_3 | ADC_CCR_MULTI_0))
143 #define ADC_TRIPLEMODE_REGSIMULT_INJECSIMULT  ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_0))
144 #define ADC_TRIPLEMODE_REGSIMULT_AlterTrig    ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_1))
145 #define ADC_TRIPLEMODE_INJECSIMULT            ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_2 | ADC_CCR_MULTI_0))
146 #define ADC_TRIPLEMODE_REGSIMULT              ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_2 | ADC_CCR_MULTI_1))
147 #define ADC_TRIPLEMODE_INTERL                 ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_2 | ADC_CCR_MULTI_1 | ADC_CCR_MULTI_0))
148 #define ADC_TRIPLEMODE_ALTERTRIG              ((uint32_t)(ADC_CCR_MULTI_4 | ADC_CCR_MULTI_3 | ADC_CCR_MULTI_0))
149 /**
150   * @}
151   */
152 
153 /** @defgroup ADCEx_Direct_memory_access_mode_for_multi_mode ADC Direct Memory Access Mode For Multi Mode
154   * @{
155   */
156 #define ADC_DMAACCESSMODE_DISABLED  ((uint32_t)0x00000000U)     /*!< DMA mode disabled */
157 #define ADC_DMAACCESSMODE_1         ((uint32_t)ADC_CCR_DMA_0)  /*!< DMA mode 1 enabled (2 / 3 half-words one by one - 1 then 2 then 3)*/
158 #define ADC_DMAACCESSMODE_2         ((uint32_t)ADC_CCR_DMA_1)  /*!< DMA mode 2 enabled (2 / 3 half-words by pairs - 2&1 then 1&3 then 3&2)*/
159 #define ADC_DMAACCESSMODE_3         ((uint32_t)ADC_CCR_DMA)    /*!< DMA mode 3 enabled (2 / 3 bytes by pairs - 2&1 then 1&3 then 3&2) */
160 /**
161   * @}
162   */
163 
164 /** @defgroup ADCEx_External_trigger_edge_Injected ADC External Trigger Edge Injected
165   * @{
166   */
167 #define ADC_EXTERNALTRIGINJECCONVEDGE_NONE           ((uint32_t)0x00000000U)
168 #define ADC_EXTERNALTRIGINJECCONVEDGE_RISING         ((uint32_t)ADC_CR2_JEXTEN_0)
169 #define ADC_EXTERNALTRIGINJECCONVEDGE_FALLING        ((uint32_t)ADC_CR2_JEXTEN_1)
170 #define ADC_EXTERNALTRIGINJECCONVEDGE_RISINGFALLING  ((uint32_t)ADC_CR2_JEXTEN)
171 /**
172   * @}
173   */
174 
175 /** @defgroup ADCEx_External_trigger_Source_Injected ADC External Trigger Source Injected
176   * @{
177   */
178 #define ADC_EXTERNALTRIGINJECCONV_T1_TRGO         ((uint32_t)0x00000000U)
179 #define ADC_EXTERNALTRIGINJECCONV_T1_CC4          ((uint32_t)ADC_CR2_JEXTSEL_0)
180 #define ADC_EXTERNALTRIGINJECCONV_T2_TRGO         ((uint32_t)ADC_CR2_JEXTSEL_1)
181 #define ADC_EXTERNALTRIGINJECCONV_T2_CC1          ((uint32_t)(ADC_CR2_JEXTSEL_1 | ADC_CR2_JEXTSEL_0))
182 #define ADC_EXTERNALTRIGINJECCONV_T3_CC4          ((uint32_t)ADC_CR2_JEXTSEL_2)
183 #define ADC_EXTERNALTRIGINJECCONV_T4_TRGO         ((uint32_t)(ADC_CR2_JEXTSEL_2 | ADC_CR2_JEXTSEL_0))
184 
185 #define ADC_EXTERNALTRIGINJECCONV_T8_CC4          ((uint32_t)(ADC_CR2_JEXTSEL_2 | ADC_CR2_JEXTSEL_1 | ADC_CR2_JEXTSEL_0))
186 #define ADC_EXTERNALTRIGINJECCONV_T1_TRGO2        ((uint32_t)ADC_CR2_JEXTSEL_3)
187 #define ADC_EXTERNALTRIGINJECCONV_T8_TRGO         ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_0))
188 #define ADC_EXTERNALTRIGINJECCONV_T8_TRGO2        ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_1))
189 #define ADC_EXTERNALTRIGINJECCONV_T3_CC3          ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_1 | ADC_CR2_JEXTSEL_0))
190 #define ADC_EXTERNALTRIGINJECCONV_T5_TRGO         ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_2))
191 #define ADC_EXTERNALTRIGINJECCONV_T3_CC1          ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_2 | ADC_CR2_JEXTSEL_0))
192 #define ADC_EXTERNALTRIGINJECCONV_T6_TRGO         ((uint32_t)(ADC_CR2_JEXTSEL_3 | ADC_CR2_JEXTSEL_2 | ADC_CR2_JEXTSEL_1))
193 #define ADC_INJECTED_SOFTWARE_START                ((uint32_t)ADC_CR2_JEXTSEL + 1)
194 /**
195   * @}
196   */
197 
198 /** @defgroup ADCEx_injected_rank ADC Injected Channel Rank
199   * @{
200   */
201 #define ADC_INJECTED_RANK_1    ((uint32_t)0x00000001U)
202 #define ADC_INJECTED_RANK_2    ((uint32_t)0x00000002U)
203 #define ADC_INJECTED_RANK_3    ((uint32_t)0x00000003U)
204 #define ADC_INJECTED_RANK_4    ((uint32_t)0x00000004U)
205 /**
206   * @}
207   */
208 
209 /** @defgroup ADCEx_channels  ADC Specific Channels
210   * @{
211   */
212 
213 /**
214   * @}
215   */
216 
217 /**
218   * @}
219   */
220 
221 /* Exported macro ------------------------------------------------------------*/
222 /** @defgroup ADC_Exported_Macros ADC Exported Macros
223   * @{
224   */
225 /**
226   * @}
227   */
228 
229 /* Exported functions --------------------------------------------------------*/
230 /** @addtogroup ADCEx_Exported_Functions
231   * @{
232   */
233 
234 /** @addtogroup ADCEx_Exported_Functions_Group1
235   * @{
236   */
237 
238 /* I/O operation functions ******************************************************/
239 HAL_StatusTypeDef HAL_ADCEx_InjectedStart(ADC_HandleTypeDef* hadc);
240 HAL_StatusTypeDef HAL_ADCEx_InjectedStop(ADC_HandleTypeDef* hadc);
241 HAL_StatusTypeDef HAL_ADCEx_InjectedPollForConversion(ADC_HandleTypeDef* hadc, uint32_t Timeout);
242 HAL_StatusTypeDef HAL_ADCEx_InjectedStart_IT(ADC_HandleTypeDef* hadc);
243 HAL_StatusTypeDef HAL_ADCEx_InjectedStop_IT(ADC_HandleTypeDef* hadc);
244 uint32_t HAL_ADCEx_InjectedGetValue(ADC_HandleTypeDef* hadc, uint32_t InjectedRank);
245 HAL_StatusTypeDef HAL_ADCEx_MultiModeStart_DMA(ADC_HandleTypeDef* hadc, uint32_t* pData, uint32_t Length);
246 HAL_StatusTypeDef HAL_ADCEx_MultiModeStop_DMA(ADC_HandleTypeDef* hadc);
247 uint32_t HAL_ADCEx_MultiModeGetValue(ADC_HandleTypeDef* hadc);
248 void HAL_ADCEx_InjectedConvCpltCallback(ADC_HandleTypeDef* hadc);
249 
250 /* Peripheral Control functions *************************************************/
251 HAL_StatusTypeDef HAL_ADCEx_InjectedConfigChannel(ADC_HandleTypeDef* hadc,ADC_InjectionConfTypeDef* sConfigInjected);
252 HAL_StatusTypeDef HAL_ADCEx_MultiModeConfigChannel(ADC_HandleTypeDef* hadc, ADC_MultiModeTypeDef* multimode);
253 
254 /**
255   * @}
256   */
257 
258 /**
259   * @}
260   */
261 /* Private types -------------------------------------------------------------*/
262 /* Private variables ---------------------------------------------------------*/
263 /* Private constants ---------------------------------------------------------*/
264 /** @defgroup ADCEx_Private_Constants ADC Private Constants
265   * @{
266   */
267 
268 /**
269   * @}
270   */
271 
272 /* Private macros ------------------------------------------------------------*/
273 /** @defgroup ADCEx_Private_Macros ADC Private Macros
274   * @{
275   */
276 
277 #define IS_ADC_MODE(__MODE__) (((__MODE__) == ADC_MODE_INDEPENDENT)                 || \
278                                ((__MODE__) == ADC_DUALMODE_REGSIMULT_INJECSIMULT)   || \
279                                ((__MODE__) == ADC_DUALMODE_REGSIMULT_ALTERTRIG)     || \
280                                ((__MODE__) == ADC_DUALMODE_INJECSIMULT)             || \
281                                ((__MODE__) == ADC_DUALMODE_REGSIMULT)               || \
282                                ((__MODE__) == ADC_DUALMODE_INTERL)                  || \
283                                ((__MODE__) == ADC_DUALMODE_ALTERTRIG)               || \
284                                ((__MODE__) == ADC_TRIPLEMODE_REGSIMULT_INJECSIMULT) || \
285                                ((__MODE__) == ADC_TRIPLEMODE_REGSIMULT_AlterTrig)   || \
286                                ((__MODE__) == ADC_TRIPLEMODE_INJECSIMULT)           || \
287                                ((__MODE__) == ADC_TRIPLEMODE_REGSIMULT)             || \
288                                ((__MODE__) == ADC_TRIPLEMODE_INTERL)                || \
289                                ((__MODE__) == ADC_TRIPLEMODE_ALTERTRIG))
290 #define IS_ADC_DMA_ACCESS_MODE(__MODE__) (((__MODE__) == ADC_DMAACCESSMODE_DISABLED) || \
291                                           ((__MODE__) == ADC_DMAACCESSMODE_1)        || \
292                                           ((__MODE__) == ADC_DMAACCESSMODE_2)        || \
293                                           ((__MODE__) == ADC_DMAACCESSMODE_3))
294 #define IS_ADC_EXT_INJEC_TRIG_EDGE(__EDGE__) (((__EDGE__) == ADC_EXTERNALTRIGINJECCONVEDGE_NONE)    || \
295                                               ((__EDGE__) == ADC_EXTERNALTRIGINJECCONVEDGE_RISING)  || \
296                                               ((__EDGE__) == ADC_EXTERNALTRIGINJECCONVEDGE_FALLING) || \
297                                               ((__EDGE__) == ADC_EXTERNALTRIGINJECCONVEDGE_RISINGFALLING))
298 #define IS_ADC_EXT_INJEC_TRIG(__INJTRIG__) (((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T1_TRGO)  || \
299                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T1_CC4)   || \
300                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T2_TRGO)  || \
301                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T2_CC1)   || \
302                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T3_CC4)   || \
303                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T4_TRGO)  || \
304                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T8_CC4)   || \
305                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T1_TRGO2) || \
306                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T8_TRGO)  || \
307                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T8_TRGO2) || \
308                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T3_CC3)   || \
309                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T5_TRGO)  || \
310                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T3_CC1)   || \
311                                             ((__INJTRIG__) == ADC_EXTERNALTRIGINJECCONV_T6_TRGO)  || \
312                                             ((__INJTRIG__) == ADC_INJECTED_SOFTWARE_START))
313 #define IS_ADC_INJECTED_RANK(__RANK__) (((__RANK__) == ADC_INJECTED_RANK_1) || \
314                                        ((__RANK__) == ADC_INJECTED_RANK_2) || \
315                                        ((__RANK__) == ADC_INJECTED_RANK_3) || \
316                                        ((__RANK__) == ADC_INJECTED_RANK_4))
317 #define IS_ADC_INJECTED_LENGTH(__LENGTH__) (((__LENGTH__) >= ((uint32_t)1)) && ((__LENGTH__) <= ((uint32_t)4)))
318 
319 /**
320   * @brief  Set the selected injected Channel rank.
321   * @param  _CHANNELNB_ Channel number.
322   * @param  _RANKNB_ Rank number.
323   * @param  _JSQR_JL_ Sequence length.
324   * @retval None
325   */
326 #define   ADC_JSQR(_CHANNELNB_, _RANKNB_,_JSQR_JL_) (((uint32_t)((uint16_t)(_CHANNELNB_))) << (5 * (uint8_t)(((_RANKNB_) + 3) - (_JSQR_JL_))))
327 /**
328   * @}
329   */
330 
331 /* Private functions ---------------------------------------------------------*/
332 /** @defgroup ADCEx_Private_Functions ADC Private Functions
333   * @{
334   */
335 
336 /**
337   * @}
338   */
339 
340 /**
341   * @}
342   */
343 
344 /**
345   * @}
346   */
347 
348 #ifdef __cplusplus
349 }
350 #endif
351 
352 #endif /* STM32F7xx_ADC_EX_H */
353 
354 
355