stm32h7xx_hal_dfsdm.h 38 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716
  1. /**
  2. ******************************************************************************
  3. * @file stm32h7xx_hal_dfsdm.h
  4. * @author MCD Application Team
  5. * @version V1.0.0
  6. * @date 21-April-2017
  7. * @brief Header file of DFSDM HAL module.
  8. ******************************************************************************
  9. * @attention
  10. *
  11. * <h2><center>&copy; COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
  12. *
  13. * Redistribution and use in source and binary forms, with or without modification,
  14. * are permitted provided that the following conditions are met:
  15. * 1. Redistributions of source code must retain the above copyright notice,
  16. * this list of conditions and the following disclaimer.
  17. * 2. Redistributions in binary form must reproduce the above copyright notice,
  18. * this list of conditions and the following disclaimer in the documentation
  19. * and/or other materials provided with the distribution.
  20. * 3. Neither the name of STMicroelectronics nor the names of its contributors
  21. * may be used to endorse or promote products derived from this software
  22. * without specific prior written permission.
  23. *
  24. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  25. * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  26. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  27. * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
  28. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  29. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
  30. * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  31. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  32. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  33. * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  34. *
  35. ******************************************************************************
  36. */
  37. /* Define to prevent recursive inclusion -------------------------------------*/
  38. #ifndef __STM32H7xx_HAL_DFSDM_H
  39. #define __STM32H7xx_HAL_DFSDM_H
  40. #ifdef __cplusplus
  41. extern "C" {
  42. #endif
  43. /* Includes ------------------------------------------------------------------*/
  44. #include "stm32h7xx_hal_def.h"
  45. /** @addtogroup STM32H7xx_HAL_Driver
  46. * @{
  47. */
  48. /** @addtogroup DFSDM
  49. * @{
  50. */
  51. /* Exported types ------------------------------------------------------------*/
  52. /** @defgroup DFSDM_Exported_Types DFSDM Exported Types
  53. * @{
  54. */
  55. /**
  56. * @brief HAL DFSDM Channel states definition
  57. */
  58. typedef enum
  59. {
  60. HAL_DFSDM_CHANNEL_STATE_RESET = 0x00, /*!< DFSDM channel not initialized */
  61. HAL_DFSDM_CHANNEL_STATE_READY = 0x01, /*!< DFSDM channel initialized and ready for use */
  62. HAL_DFSDM_CHANNEL_STATE_ERROR = 0xFF /*!< DFSDM channel state error */
  63. }HAL_DFSDM_Channel_StateTypeDef;
  64. /**
  65. * @brief DFSDM channel output clock structure definition
  66. */
  67. typedef struct
  68. {
  69. FunctionalState Activation; /*!< Output clock enable/disable */
  70. uint32_t Selection; /*!< Output clock is system clock or audio clock.
  71. This parameter can be a value of @ref DFSDM_Channel_OuputClock */
  72. uint32_t Divider; /*!< Output clock divider.
  73. This parameter must be a number between Min_Data = 2 and Max_Data = 256 */
  74. }DFSDM_Channel_OutputClockTypeDef;
  75. /**
  76. * @brief DFSDM channel input structure definition
  77. */
  78. typedef struct
  79. {
  80. uint32_t Multiplexer; /*!< Input is external serial inputs ,internal register or ADC output.
  81. This parameter can be a value of @ref DFSDM_Channel_InputMultiplexer */
  82. uint32_t DataPacking; /*!< Standard, interleaved or dual mode for internal register.
  83. This parameter can be a value of @ref DFSDM_Channel_DataPacking */
  84. uint32_t Pins; /*!< Input pins are taken from same or following channel.
  85. This parameter can be a value of @ref DFSDM_Channel_InputPins */
  86. }DFSDM_Channel_InputTypeDef;
  87. /**
  88. * @brief DFSDM channel serial interface structure definition
  89. */
  90. typedef struct
  91. {
  92. uint32_t Type; /*!< SPI or Manchester modes.
  93. This parameter can be a value of @ref DFSDM_Channel_SerialInterfaceType */
  94. uint32_t SpiClock; /*!< SPI clock select (external or internal with different sampling point).
  95. This parameter can be a value of @ref DFSDM_Channel_SpiClock */
  96. }DFSDM_Channel_SerialInterfaceTypeDef;
  97. /**
  98. * @brief DFSDM channel analog watchdog structure definition
  99. */
  100. typedef struct
  101. {
  102. uint32_t FilterOrder; /*!< Analog watchdog Sinc filter order.
  103. This parameter can be a value of @ref DFSDM_Channel_AwdFilterOrder */
  104. uint32_t Oversampling; /*!< Analog watchdog filter oversampling ratio.
  105. This parameter must be a number between Min_Data = 1 and Max_Data = 32 */
  106. }DFSDM_Channel_AwdTypeDef;
  107. /**
  108. * @brief DFSDM channel init structure definition
  109. */
  110. typedef struct
  111. {
  112. DFSDM_Channel_OutputClockTypeDef OutputClock; /*!< DFSDM channel output clock parameters */
  113. DFSDM_Channel_InputTypeDef Input; /*!< DFSDM channel input parameters */
  114. DFSDM_Channel_SerialInterfaceTypeDef SerialInterface; /*!< DFSDM channel serial interface parameters */
  115. DFSDM_Channel_AwdTypeDef Awd; /*!< DFSDM channel analog watchdog parameters */
  116. int32_t Offset; /*!< DFSDM channel offset.
  117. This parameter must be a number between Min_Data = -8388608 and Max_Data = 8388607 */
  118. uint32_t RightBitShift; /*!< DFSDM channel right bit shift.
  119. This parameter must be a number between Min_Data = 0x00 and Max_Data = 0x1F */
  120. }DFSDM_Channel_InitTypeDef;
  121. /**
  122. * @brief DFSDM channel handle structure definition
  123. */
  124. typedef struct
  125. {
  126. DFSDM_Channel_TypeDef *Instance; /*!< DFSDM channel instance */
  127. DFSDM_Channel_InitTypeDef Init; /*!< DFSDM channel init parameters */
  128. HAL_DFSDM_Channel_StateTypeDef State; /*!< DFSDM channel state */
  129. }DFSDM_Channel_HandleTypeDef;
  130. /**
  131. * @brief HAL DFSDM Filter states definition
  132. */
  133. typedef enum
  134. {
  135. HAL_DFSDM_FILTER_STATE_RESET = 0x00, /*!< DFSDM filter not initialized */
  136. HAL_DFSDM_FILTER_STATE_READY = 0x01, /*!< DFSDM filter initialized and ready for use */
  137. HAL_DFSDM_FILTER_STATE_REG = 0x02, /*!< DFSDM filter regular conversion in progress */
  138. HAL_DFSDM_FILTER_STATE_INJ = 0x03, /*!< DFSDM filter injected conversion in progress */
  139. HAL_DFSDM_FILTER_STATE_REG_INJ = 0x04, /*!< DFSDM filter regular and injected conversions in progress */
  140. HAL_DFSDM_FILTER_STATE_ERROR = 0xFF /*!< DFSDM filter state error */
  141. }HAL_DFSDM_Filter_StateTypeDef;
  142. /**
  143. * @brief DFSDM filter regular conversion parameters structure definition
  144. */
  145. typedef struct
  146. {
  147. uint32_t Trigger; /*!< Trigger used to start regular conversion: software or synchronous.
  148. This parameter can be a value of @ref DFSDM_Filter_Trigger */
  149. FunctionalState FastMode; /*!< Enable/disable fast mode for regular conversion */
  150. FunctionalState DmaMode; /*!< Enable/disable DMA for regular conversion */
  151. }DFSDM_Filter_RegularParamTypeDef;
  152. /**
  153. * @brief DFSDM filter injected conversion parameters structure definition
  154. */
  155. typedef struct
  156. {
  157. uint32_t Trigger; /*!< Trigger used to start injected conversion: software, external or synchronous.
  158. This parameter can be a value of @ref DFSDM_Filter_Trigger */
  159. FunctionalState ScanMode; /*!< Enable/disable scanning mode for injected conversion */
  160. FunctionalState DmaMode; /*!< Enable/disable DMA for injected conversion */
  161. uint32_t ExtTrigger; /*!< External trigger.
  162. This parameter can be a value of @ref DFSDM_Filter_ExtTrigger */
  163. uint32_t ExtTriggerEdge; /*!< External trigger edge: rising, falling or both.
  164. This parameter can be a value of @ref DFSDM_Filter_ExtTriggerEdge */
  165. }DFSDM_Filter_InjectedParamTypeDef;
  166. /**
  167. * @brief DFSDM filter parameters structure definition
  168. */
  169. typedef struct
  170. {
  171. uint32_t SincOrder; /*!< Sinc filter order.
  172. This parameter can be a value of @ref DFSDM_Filter_SincOrder */
  173. uint32_t Oversampling; /*!< Filter oversampling ratio.
  174. This parameter must be a number between Min_Data = 1 and Max_Data = 1024 */
  175. uint32_t IntOversampling; /*!< Integrator oversampling ratio.
  176. This parameter must be a number between Min_Data = 1 and Max_Data = 256 */
  177. }DFSDM_Filter_FilterParamTypeDef;
  178. /**
  179. * @brief DFSDM filter init structure definition
  180. */
  181. typedef struct
  182. {
  183. DFSDM_Filter_RegularParamTypeDef RegularParam; /*!< DFSDM regular conversion parameters */
  184. DFSDM_Filter_InjectedParamTypeDef InjectedParam; /*!< DFSDM injected conversion parameters */
  185. DFSDM_Filter_FilterParamTypeDef FilterParam; /*!< DFSDM filter parameters */
  186. }DFSDM_Filter_InitTypeDef;
  187. /**
  188. * @brief DFSDM filter handle structure definition
  189. */
  190. typedef struct
  191. {
  192. DFSDM_Filter_TypeDef *Instance; /*!< DFSDM filter instance */
  193. DFSDM_Filter_InitTypeDef Init; /*!< DFSDM filter init parameters */
  194. DMA_HandleTypeDef *hdmaReg; /*!< Pointer on DMA handler for regular conversions */
  195. DMA_HandleTypeDef *hdmaInj; /*!< Pointer on DMA handler for injected conversions */
  196. uint32_t RegularContMode; /*!< Regular conversion continuous mode */
  197. uint32_t RegularTrigger; /*!< Trigger used for regular conversion */
  198. uint32_t InjectedTrigger; /*!< Trigger used for injected conversion */
  199. uint32_t ExtTriggerEdge; /*!< Rising, falling or both edges selected */
  200. FunctionalState InjectedScanMode; /*!< Injected scanning mode */
  201. uint32_t InjectedChannelsNbr; /*!< Number of channels in injected sequence */
  202. uint32_t InjConvRemaining; /*!< Injected conversions remaining */
  203. HAL_DFSDM_Filter_StateTypeDef State; /*!< DFSDM filter state */
  204. uint32_t ErrorCode; /*!< DFSDM filter error code */
  205. }DFSDM_Filter_HandleTypeDef;
  206. /**
  207. * @brief DFSDM filter analog watchdog parameters structure definition
  208. */
  209. typedef struct
  210. {
  211. uint32_t DataSource; /*!< Values from digital filter or from channel watchdog filter.
  212. This parameter can be a value of @ref DFSDM_Filter_AwdDataSource */
  213. uint32_t Channel; /*!< Analog watchdog channel selection.
  214. This parameter can be a values combination of @ref DFSDM_Channel_Selection */
  215. int32_t HighThreshold; /*!< High threshold for the analog watchdog.
  216. This parameter must be a number between Min_Data = -8388608 and Max_Data = 8388607 */
  217. int32_t LowThreshold; /*!< Low threshold for the analog watchdog.
  218. This parameter must be a number between Min_Data = -8388608 and Max_Data = 8388607 */
  219. uint32_t HighBreakSignal; /*!< Break signal assigned to analog watchdog high threshold event.
  220. This parameter can be a values combination of @ref DFSDM_BreakSignals */
  221. uint32_t LowBreakSignal; /*!< Break signal assigned to analog watchdog low threshold event.
  222. This parameter can be a values combination of @ref DFSDM_BreakSignals */
  223. }DFSDM_Filter_AwdParamTypeDef;
  224. /**
  225. * @}
  226. */
  227. /* End of exported types -----------------------------------------------------*/
  228. /* Exported constants --------------------------------------------------------*/
  229. /** @defgroup DFSDM_Exported_Constants DFSDM Exported Constants
  230. * @{
  231. */
  232. /** @defgroup DFSDM_Channel_OuputClock DFSDM channel output clock selection
  233. * @{
  234. */
  235. #define DFSDM_CHANNEL_OUTPUT_CLOCK_SYSTEM ((uint32_t)0x00000000) /*!< Source for ouput clock is system clock */
  236. #define DFSDM_CHANNEL_OUTPUT_CLOCK_AUDIO DFSDM_CHCFGR1_CKOUTSRC /*!< Source for ouput clock is audio clock */
  237. /**
  238. * @}
  239. */
  240. /** @defgroup DFSDM_Channel_InputMultiplexer DFSDM channel input multiplexer
  241. * @{
  242. */
  243. #define DFSDM_CHANNEL_EXTERNAL_INPUTS ((uint32_t)0x00000000) /*!< Data are taken from external inputs */
  244. #define DFSDM_CHANNEL_ADC_OUTPUT DFSDM_CHCFGR1_DATMPX_0 /*!< Data are taken from ADC output */
  245. #define DFSDM_CHANNEL_INTERNAL_REGISTER DFSDM_CHCFGR1_DATMPX_1 /*!< Data are taken from internal register */
  246. /**
  247. * @}
  248. */
  249. /** @defgroup DFSDM_Channel_DataPacking DFSDM channel input data packing
  250. * @{
  251. */
  252. #define DFSDM_CHANNEL_STANDARD_MODE ((uint32_t)0x00000000) /*!< Standard data packing mode */
  253. #define DFSDM_CHANNEL_INTERLEAVED_MODE DFSDM_CHCFGR1_DATPACK_0 /*!< Interleaved data packing mode */
  254. #define DFSDM_CHANNEL_DUAL_MODE DFSDM_CHCFGR1_DATPACK_1 /*!< Dual data packing mode */
  255. /**
  256. * @}
  257. */
  258. /** @defgroup DFSDM_Channel_InputPins DFSDM channel input pins
  259. * @{
  260. */
  261. #define DFSDM_CHANNEL_SAME_CHANNEL_PINS ((uint32_t)0x00000000) /*!< Input from pins on same channel */
  262. #define DFSDM_CHANNEL_FOLLOWING_CHANNEL_PINS DFSDM_CHCFGR1_CHINSEL /*!< Input from pins on following channel */
  263. /**
  264. * @}
  265. */
  266. /** @defgroup DFSDM_Channel_SerialInterfaceType DFSDM channel serial interface type
  267. * @{
  268. */
  269. #define DFSDM_CHANNEL_SPI_RISING ((uint32_t)0x00000000) /*!< SPI with rising edge */
  270. #define DFSDM_CHANNEL_SPI_FALLING DFSDM_CHCFGR1_SITP_0 /*!< SPI with falling edge */
  271. #define DFSDM_CHANNEL_MANCHESTER_RISING DFSDM_CHCFGR1_SITP_1 /*!< Manchester with rising edge */
  272. #define DFSDM_CHANNEL_MANCHESTER_FALLING DFSDM_CHCFGR1_SITP /*!< Manchester with falling edge */
  273. /**
  274. * @}
  275. */
  276. /** @defgroup DFSDM_Channel_SpiClock DFSDM channel SPI clock selection
  277. * @{
  278. */
  279. #define DFSDM_CHANNEL_SPI_CLOCK_EXTERNAL ((uint32_t)0x00000000) /*!< External SPI clock */
  280. #define DFSDM_CHANNEL_SPI_CLOCK_INTERNAL DFSDM_CHCFGR1_SPICKSEL_0 /*!< Internal SPI clock */
  281. #define DFSDM_CHANNEL_SPI_CLOCK_INTERNAL_DIV2_FALLING DFSDM_CHCFGR1_SPICKSEL_1 /*!< Internal SPI clock divided by 2, falling edge */
  282. #define DFSDM_CHANNEL_SPI_CLOCK_INTERNAL_DIV2_RISING DFSDM_CHCFGR1_SPICKSEL /*!< Internal SPI clock divided by 2, rising edge */
  283. /**
  284. * @}
  285. */
  286. /** @defgroup DFSDM_Channel_AwdFilterOrder DFSDM channel analog watchdog filter order
  287. * @{
  288. */
  289. #define DFSDM_CHANNEL_FASTSINC_ORDER ((uint32_t)0x00000000) /*!< FastSinc filter type */
  290. #define DFSDM_CHANNEL_SINC1_ORDER DFSDM_CHAWSCDR_AWFORD_0 /*!< Sinc 1 filter type */
  291. #define DFSDM_CHANNEL_SINC2_ORDER DFSDM_CHAWSCDR_AWFORD_1 /*!< Sinc 2 filter type */
  292. #define DFSDM_CHANNEL_SINC3_ORDER DFSDM_CHAWSCDR_AWFORD /*!< Sinc 3 filter type */
  293. /**
  294. * @}
  295. */
  296. /** @defgroup DFSDM_Filter_Trigger DFSDM filter conversion trigger
  297. * @{
  298. */
  299. #define DFSDM_FILTER_SW_TRIGGER ((uint32_t)0x00000000) /*!< Software trigger */
  300. #define DFSDM_FILTER_SYNC_TRIGGER ((uint32_t)0x00000001) /*!< Synchronous with DFSDM0 */
  301. #define DFSDM_FILTER_EXT_TRIGGER ((uint32_t)0x00000002) /*!< External trigger (only for injected conversion) */
  302. /**
  303. * @}
  304. */
  305. /** @defgroup DFSDM_Filter_ExtTrigger DFSDM filter external trigger
  306. * @{
  307. */
  308. #define DFSDM_FILTER_EXT_TRIG_TIM1_TRGO ((uint32_t)0x00000000) /*!< For DFSDM 0, 1, 2 and 3 */
  309. #define DFSDM_FILTER_EXT_TRIG_TIM1_TRGO2 DFSDM_FLTCR1_JEXTSEL_0 /*!< For DFSDM 0, 1, 2 and 3 */
  310. #define DFSDM_FILTER_EXT_TRIG_TIM8_TRGO DFSDM_FLTCR1_JEXTSEL_1 /*!< For DFSDM 0, 1, 2 and 3 */
  311. #define DFSDM_FILTER_EXT_TRIG_TIM8_TRGO2 (DFSDM_FLTCR1_JEXTSEL_0 | DFSDM_FLTCR1_JEXTSEL_1) /*!< For DFSDM 0, 1 and 2 */
  312. #define DFSDM_FILTER_EXT_TRIG_TIM3_TRGO DFSDM_FLTCR1_JEXTSEL_2 /*!< For DFSDM 3 */
  313. #define DFSDM_FILTER_EXT_TRIG_TIM4_TRGO (DFSDM_FLTCR1_JEXTSEL_0 | DFSDM_FLTCR1_JEXTSEL_2) /*!< For DFSDM 0, 1 and 2 */
  314. #define DFSDM_FILTER_EXT_TRIG_TIM16_OC1 (DFSDM_FLTCR1_JEXTSEL_2 | DFSDM_FLTCR1_JEXTSEL_1) /*!< For DFSDM 3 */
  315. #define DFSDM_FILTER_EXT_TRIG_TIM6_TRGO (DFSDM_FLTCR1_JEXTSEL_0 | DFSDM_FLTCR1_JEXTSEL_2 | DFSDM_FLTCR1_JEXTSEL_1) /*!< For DFSDM 0 and 1 */
  316. #define DFSDM_FILTER_EXT_TRIG_TIM7_TRGO DFSDM_FLTCR1_JEXTSEL_3 /*!< For DFSDM 2 and 3 */
  317. #define DFSDM_FILTER_EXT_TRIG_HRTIM1_ADCTRG1 (DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_0)
  318. #define DFSDM_FILTER_EXT_TRIG_HRTIM1_ADCTRG3 (DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_1)
  319. #define DFSDM_FILTER_EXT_TRIG_EXTI11 (DFSDM_FLTCR1_JEXTSEL_4 | DFSDM_FLTCR1_JEXTSEL_3) /*!< For DFSDM 0, 1, 2 and 3 */
  320. #define DFSDM_FILTER_EXT_TRIG_EXTI15 (DFSDM_FLTCR1_JEXTSEL_4 | DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_0) /*!< For DFSDM 0, 1, 2 and 3 */
  321. #define DFSDM_FILTER_EXT_TRIG_LPTIM1 (DFSDM_FLTCR1_JEXTSEL_4 | DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_1) /*!< For DFSDM 0, 1, 2 and 3 */
  322. #define DFSDM_FILTER_EXT_TRIG_LPTIM2 (DFSDM_FLTCR1_JEXTSEL_4 | DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_1 | DFSDM_FLTCR1_JEXTSEL_0) /*!< For DFSDM 0, 1, 2 and 3 */
  323. #define DFSDM_FILTER_EXT_TRIG_LPTIM3 (DFSDM_FLTCR1_JEXTSEL_4 | DFSDM_FLTCR1_JEXTSEL_3 | DFSDM_FLTCR1_JEXTSEL_2) /*!< For DFSDM 0, 1, 2 and 3 */
  324. /**
  325. * @}
  326. */
  327. /** @defgroup DFSDM_Filter_ExtTriggerEdge DFSDM filter external trigger edge
  328. * @{
  329. */
  330. #define DFSDM_FILTER_EXT_TRIG_RISING_EDGE DFSDM_FLTCR1_JEXTEN_0 /*!< External rising edge */
  331. #define DFSDM_FILTER_EXT_TRIG_FALLING_EDGE DFSDM_FLTCR1_JEXTEN_1 /*!< External falling edge */
  332. #define DFSDM_FILTER_EXT_TRIG_BOTH_EDGES DFSDM_FLTCR1_JEXTEN /*!< External rising and falling edges */
  333. /**
  334. * @}
  335. */
  336. /** @defgroup DFSDM_Filter_SincOrder DFSDM filter sinc order
  337. * @{
  338. */
  339. #define DFSDM_FILTER_FASTSINC_ORDER ((uint32_t)0x00000000) /*!< FastSinc filter type */
  340. #define DFSDM_FILTER_SINC1_ORDER DFSDM_FLTFCR_FORD_0 /*!< Sinc 1 filter type */
  341. #define DFSDM_FILTER_SINC2_ORDER DFSDM_FLTFCR_FORD_1 /*!< Sinc 2 filter type */
  342. #define DFSDM_FILTER_SINC3_ORDER (DFSDM_FLTFCR_FORD_0 | DFSDM_FLTFCR_FORD_1) /*!< Sinc 3 filter type */
  343. #define DFSDM_FILTER_SINC4_ORDER DFSDM_FLTFCR_FORD_2 /*!< Sinc 4 filter type */
  344. #define DFSDM_FILTER_SINC5_ORDER (DFSDM_FLTFCR_FORD_0 | DFSDM_FLTFCR_FORD_2) /*!< Sinc 5 filter type */
  345. /**
  346. * @}
  347. */
  348. /** @defgroup DFSDM_Filter_AwdDataSource DFSDM filter analog watchdog data source
  349. * @{
  350. */
  351. #define DFSDM_FILTER_AWD_FILTER_DATA ((uint32_t)0x00000000) /*!< From digital filter */
  352. #define DFSDM_FILTER_AWD_CHANNEL_DATA DFSDM_FLTCR1_AWFSEL /*!< From analog watchdog channel */
  353. /**
  354. * @}
  355. */
  356. /** @defgroup DFSDM_Filter_ErrorCode DFSDM filter error code
  357. * @{
  358. */
  359. #define DFSDM_FILTER_ERROR_NONE ((uint32_t)0x00000000) /*!< No error */
  360. #define DFSDM_FILTER_ERROR_REGULAR_OVERRUN ((uint32_t)0x00000001) /*!< Overrun occurs during regular conversion */
  361. #define DFSDM_FILTER_ERROR_INJECTED_OVERRUN ((uint32_t)0x00000002) /*!< Overrun occurs during injected conversion */
  362. #define DFSDM_FILTER_ERROR_DMA ((uint32_t)0x00000003) /*!< DMA error occurs */
  363. /**
  364. * @}
  365. */
  366. /** @defgroup DFSDM_BreakSignals DFSDM break signals
  367. * @{
  368. */
  369. #define DFSDM_NO_BREAK_SIGNAL ((uint32_t)0x00000000) /*!< No break signal */
  370. #define DFSDM_BREAK_SIGNAL_0 ((uint32_t)0x00000001) /*!< Break signal 0 */
  371. #define DFSDM_BREAK_SIGNAL_1 ((uint32_t)0x00000002) /*!< Break signal 1 */
  372. #define DFSDM_BREAK_SIGNAL_2 ((uint32_t)0x00000004) /*!< Break signal 2 */
  373. #define DFSDM_BREAK_SIGNAL_3 ((uint32_t)0x00000008) /*!< Break signal 3 */
  374. /**
  375. * @}
  376. */
  377. /** @defgroup DFSDM_Channel_Selection DFSDM Channel Selection
  378. * @{
  379. */
  380. /* DFSDM Channels ------------------------------------------------------------*/
  381. /* The DFSDM channels are defined as follows:
  382. - in 16-bit LSB the channel mask is set
  383. - in 16-bit MSB the channel number is set
  384. e.g. for channel 5 definition:
  385. - the channel mask is 0x00000020 (bit 5 is set)
  386. - the channel number 5 is 0x00050000
  387. --> Consequently, channel 5 definition is 0x00000020 | 0x00050000 = 0x00050020 */
  388. #define DFSDM_CHANNEL_0 ((uint32_t)0x00000001)
  389. #define DFSDM_CHANNEL_1 ((uint32_t)0x00010002)
  390. #define DFSDM_CHANNEL_2 ((uint32_t)0x00020004)
  391. #define DFSDM_CHANNEL_3 ((uint32_t)0x00030008)
  392. #define DFSDM_CHANNEL_4 ((uint32_t)0x00040010)
  393. #define DFSDM_CHANNEL_5 ((uint32_t)0x00050020)
  394. #define DFSDM_CHANNEL_6 ((uint32_t)0x00060040)
  395. #define DFSDM_CHANNEL_7 ((uint32_t)0x00070080)
  396. /**
  397. * @}
  398. */
  399. /** @defgroup DFSDM_ContinuousMode DFSDM Continuous Mode
  400. * @{
  401. */
  402. #define DFSDM_CONTINUOUS_CONV_OFF ((uint32_t)0x00000000) /*!< Conversion are not continuous */
  403. #define DFSDM_CONTINUOUS_CONV_ON ((uint32_t)0x00000001) /*!< Conversion are continuous */
  404. /**
  405. * @}
  406. */
  407. /** @defgroup DFSDM_AwdThreshold DFSDM analog watchdog threshold
  408. * @{
  409. */
  410. #define DFSDM_AWD_HIGH_THRESHOLD ((uint32_t)0x00000000) /*!< Analog watchdog high threshold */
  411. #define DFSDM_AWD_LOW_THRESHOLD ((uint32_t)0x00000001) /*!< Analog watchdog low threshold */
  412. /**
  413. * @}
  414. */
  415. /**
  416. * @}
  417. */
  418. /* End of exported constants -------------------------------------------------*/
  419. /* Exported macros -----------------------------------------------------------*/
  420. /** @defgroup DFSDM_Exported_Macros DFSDM Exported Macros
  421. * @{
  422. */
  423. /** @brief Reset DFSDM channel handle state.
  424. * @param __HANDLE__: DFSDM channel handle.
  425. * @retval None
  426. */
  427. #define __HAL_DFSDM_CHANNEL_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DFSDM_CHANNEL_STATE_RESET)
  428. /** @brief Reset DFSDM filter handle state.
  429. * @param __HANDLE__: DFSDM filter handle.
  430. * @retval None
  431. */
  432. #define __HAL_DFSDM_FILTER_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DFSDM_FILTER_STATE_RESET)
  433. /**
  434. * @}
  435. */
  436. /* End of exported macros -----------------------------------------------------------*/
  437. /* Exported functions --------------------------------------------------------*/
  438. /** @addtogroup DFSDM_Exported_Functions DFSDM Exported Functions
  439. * @{
  440. */
  441. /** @addtogroup DFSDM_Exported_Functions_Group1_Channel Channel initialization and de-initialization functions
  442. * @{
  443. */
  444. /* Channel initialization and de-initialization functions *********************/
  445. HAL_StatusTypeDef HAL_DFSDM_ChannelInit(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  446. HAL_StatusTypeDef HAL_DFSDM_ChannelDeInit(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  447. void HAL_DFSDM_ChannelMspInit(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  448. void HAL_DFSDM_ChannelMspDeInit(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  449. /**
  450. * @}
  451. */
  452. /** @addtogroup DFSDM_Exported_Functions_Group2_Channel Channel operation functions
  453. * @{
  454. */
  455. /* Channel operation functions ************************************************/
  456. HAL_StatusTypeDef HAL_DFSDM_ChannelCkabStart(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  457. HAL_StatusTypeDef HAL_DFSDM_ChannelCkabStart_IT(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  458. HAL_StatusTypeDef HAL_DFSDM_ChannelCkabStop(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  459. HAL_StatusTypeDef HAL_DFSDM_ChannelCkabStop_IT(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  460. HAL_StatusTypeDef HAL_DFSDM_ChannelScdStart(DFSDM_Channel_HandleTypeDef *hdfsdm_channel, uint32_t Threshold, uint32_t BreakSignal);
  461. HAL_StatusTypeDef HAL_DFSDM_ChannelScdStart_IT(DFSDM_Channel_HandleTypeDef *hdfsdm_channel, uint32_t Threshold, uint32_t BreakSignal);
  462. HAL_StatusTypeDef HAL_DFSDM_ChannelScdStop(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  463. HAL_StatusTypeDef HAL_DFSDM_ChannelScdStop_IT(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  464. int16_t HAL_DFSDM_ChannelGetAwdValue(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  465. HAL_StatusTypeDef HAL_DFSDM_ChannelModifyOffset(DFSDM_Channel_HandleTypeDef *hdfsdm_channel, int32_t Offset);
  466. HAL_StatusTypeDef HAL_DFSDM_ChannelPollForCkab(DFSDM_Channel_HandleTypeDef *hdfsdm_channel, uint32_t Timeout);
  467. HAL_StatusTypeDef HAL_DFSDM_ChannelPollForScd(DFSDM_Channel_HandleTypeDef *hdfsdm_channel, uint32_t Timeout);
  468. void HAL_DFSDM_ChannelCkabCallback(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  469. void HAL_DFSDM_ChannelScdCallback(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  470. /**
  471. * @}
  472. */
  473. /** @defgroup DFSDM_Exported_Functions_Group3_Channel Channel state function
  474. * @{
  475. */
  476. /* Channel state function *****************************************************/
  477. HAL_DFSDM_Channel_StateTypeDef HAL_DFSDM_ChannelGetState(DFSDM_Channel_HandleTypeDef *hdfsdm_channel);
  478. /**
  479. * @}
  480. */
  481. /** @addtogroup DFSDM_Exported_Functions_Group1_Filter Filter initialization and de-initialization functions
  482. * @{
  483. */
  484. /* Filter initialization and de-initialization functions *********************/
  485. HAL_StatusTypeDef HAL_DFSDM_FilterInit(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  486. HAL_StatusTypeDef HAL_DFSDM_FilterDeInit(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  487. void HAL_DFSDM_FilterMspInit(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  488. void HAL_DFSDM_FilterMspDeInit(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  489. /**
  490. * @}
  491. */
  492. /** @addtogroup DFSDM_Exported_Functions_Group2_Filter Filter control functions
  493. * @{
  494. */
  495. /* Filter control functions *********************/
  496. HAL_StatusTypeDef HAL_DFSDM_FilterConfigRegChannel(DFSDM_Filter_HandleTypeDef *hdfsdm_filter,
  497. uint32_t Channel,
  498. uint32_t ContinuousMode);
  499. HAL_StatusTypeDef HAL_DFSDM_FilterConfigInjChannel(DFSDM_Filter_HandleTypeDef *hdfsdm_filter,
  500. uint32_t Channel);
  501. /**
  502. * @}
  503. */
  504. /** @addtogroup DFSDM_Exported_Functions_Group3_Filter Filter operation functions
  505. * @{
  506. */
  507. /* Filter operation functions *********************/
  508. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStart(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  509. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStart_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  510. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStart_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, int32_t *pData, uint32_t Length);
  511. HAL_StatusTypeDef HAL_DFSDM_FilterRegularMsbStart_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, int16_t *pData, uint32_t Length);
  512. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStop(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  513. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStop_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  514. HAL_StatusTypeDef HAL_DFSDM_FilterRegularStop_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  515. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStart(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  516. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStart_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  517. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStart_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, int32_t *pData, uint32_t Length);
  518. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedMsbStart_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, int16_t *pData, uint32_t Length);
  519. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStop(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  520. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStop_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  521. HAL_StatusTypeDef HAL_DFSDM_FilterInjectedStop_DMA(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  522. HAL_StatusTypeDef HAL_DFSDM_FilterAwdStart_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter,
  523. DFSDM_Filter_AwdParamTypeDef* awdParam);
  524. HAL_StatusTypeDef HAL_DFSDM_FilterAwdStop_IT(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  525. HAL_StatusTypeDef HAL_DFSDM_FilterExdStart(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t Channel);
  526. HAL_StatusTypeDef HAL_DFSDM_FilterExdStop(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  527. int32_t HAL_DFSDM_FilterGetRegularValue(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t* Channel);
  528. int32_t HAL_DFSDM_FilterGetInjectedValue(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t* Channel);
  529. int32_t HAL_DFSDM_FilterGetExdMaxValue(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t* Channel);
  530. int32_t HAL_DFSDM_FilterGetExdMinValue(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t* Channel);
  531. uint32_t HAL_DFSDM_FilterGetConvTimeValue(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  532. void HAL_DFSDM_IRQHandler(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  533. HAL_StatusTypeDef HAL_DFSDM_FilterPollForRegConversion(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t Timeout);
  534. HAL_StatusTypeDef HAL_DFSDM_FilterPollForInjConversion(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t Timeout);
  535. void HAL_DFSDM_FilterRegConvCpltCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  536. void HAL_DFSDM_FilterRegConvHalfCpltCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  537. void HAL_DFSDM_FilterInjConvCpltCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  538. void HAL_DFSDM_FilterInjConvHalfCpltCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  539. void HAL_DFSDM_FilterAwdCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter, uint32_t Channel, uint32_t Threshold);
  540. void HAL_DFSDM_FilterErrorCallback(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  541. /**
  542. * @}
  543. */
  544. /** @defgroup DFSDM_Exported_Functions_Group4_Filter Filter state functions
  545. * @{
  546. */
  547. /* Filter state functions *****************************************************/
  548. HAL_DFSDM_Filter_StateTypeDef HAL_DFSDM_FilterGetState(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  549. uint32_t HAL_DFSDM_FilterGetError(DFSDM_Filter_HandleTypeDef *hdfsdm_filter);
  550. /**
  551. * @}
  552. */
  553. /**
  554. * @}
  555. */
  556. /* End of exported functions -------------------------------------------------*/
  557. /* Private macros ------------------------------------------------------------*/
  558. /** @defgroup DFSDM_Private_Macros DFSDM Private Macros
  559. * @{
  560. */
  561. #define IS_DFSDM_CHANNEL_OUTPUT_CLOCK(CLOCK) (((CLOCK) == DFSDM_CHANNEL_OUTPUT_CLOCK_SYSTEM) || \
  562. ((CLOCK) == DFSDM_CHANNEL_OUTPUT_CLOCK_AUDIO))
  563. #define IS_DFSDM_CHANNEL_OUTPUT_CLOCK_DIVIDER(DIVIDER) ((2 <= (DIVIDER)) && ((DIVIDER) <= 256))
  564. #define IS_DFSDM_CHANNEL_INPUT(INPUT) (((INPUT) == DFSDM_CHANNEL_EXTERNAL_INPUTS) || \
  565. ((INPUT) == DFSDM_CHANNEL_ADC_OUTPUT) || \
  566. ((INPUT) == DFSDM_CHANNEL_INTERNAL_REGISTER))
  567. #define IS_DFSDM_CHANNEL_DATA_PACKING(MODE) (((MODE) == DFSDM_CHANNEL_STANDARD_MODE) || \
  568. ((MODE) == DFSDM_CHANNEL_INTERLEAVED_MODE) || \
  569. ((MODE) == DFSDM_CHANNEL_DUAL_MODE))
  570. #define IS_DFSDM_CHANNEL_INPUT_PINS(PINS) (((PINS) == DFSDM_CHANNEL_SAME_CHANNEL_PINS) || \
  571. ((PINS) == DFSDM_CHANNEL_FOLLOWING_CHANNEL_PINS))
  572. #define IS_DFSDM_CHANNEL_SERIAL_INTERFACE_TYPE(MODE) (((MODE) == DFSDM_CHANNEL_SPI_RISING) || \
  573. ((MODE) == DFSDM_CHANNEL_SPI_FALLING) || \
  574. ((MODE) == DFSDM_CHANNEL_MANCHESTER_RISING) || \
  575. ((MODE) == DFSDM_CHANNEL_MANCHESTER_FALLING))
  576. #define IS_DFSDM_CHANNEL_SPI_CLOCK(TYPE) (((TYPE) == DFSDM_CHANNEL_SPI_CLOCK_EXTERNAL) || \
  577. ((TYPE) == DFSDM_CHANNEL_SPI_CLOCK_INTERNAL) || \
  578. ((TYPE) == DFSDM_CHANNEL_SPI_CLOCK_INTERNAL_DIV2_FALLING) || \
  579. ((TYPE) == DFSDM_CHANNEL_SPI_CLOCK_INTERNAL_DIV2_RISING))
  580. #define IS_DFSDM_CHANNEL_FILTER_ORDER(ORDER) (((ORDER) == DFSDM_CHANNEL_FASTSINC_ORDER) || \
  581. ((ORDER) == DFSDM_CHANNEL_SINC1_ORDER) || \
  582. ((ORDER) == DFSDM_CHANNEL_SINC2_ORDER) || \
  583. ((ORDER) == DFSDM_CHANNEL_SINC3_ORDER))
  584. #define IS_DFSDM_CHANNEL_FILTER_OVS_RATIO(RATIO) ((1 <= (RATIO)) && ((RATIO) <= 32))
  585. #define IS_DFSDM_CHANNEL_OFFSET(VALUE) ((-8388608 <= (VALUE)) && ((VALUE) <= 8388607))
  586. #define IS_DFSDM_CHANNEL_RIGHT_BIT_SHIFT(VALUE) ((VALUE) <= 0x1F)
  587. #define IS_DFSDM_CHANNEL_SCD_THRESHOLD(VALUE) ((VALUE) <= 0xFF)
  588. #define IS_DFSDM_FILTER_REG_TRIGGER(TRIG) (((TRIG) == DFSDM_FILTER_SW_TRIGGER) || \
  589. ((TRIG) == DFSDM_FILTER_SYNC_TRIGGER))
  590. #define IS_DFSDM_FILTER_INJ_TRIGGER(TRIG) (((TRIG) == DFSDM_FILTER_SW_TRIGGER) || \
  591. ((TRIG) == DFSDM_FILTER_SYNC_TRIGGER) || \
  592. ((TRIG) == DFSDM_FILTER_EXT_TRIGGER))
  593. #define IS_DFSDM_FILTER_EXT_TRIG(TRIG) (((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM1_TRGO) || \
  594. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM1_TRGO2) || \
  595. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM8_TRGO) || \
  596. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM8_TRGO2) || \
  597. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM3_TRGO) || \
  598. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM4_TRGO) || \
  599. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM16_OC1) || \
  600. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM6_TRGO) || \
  601. ((TRIG) == DFSDM_FILTER_EXT_TRIG_TIM7_TRGO) || \
  602. ((TRIG) == DFSDM_FILTER_EXT_TRIG_HRTIM1_ADCTRG1) || \
  603. ((TRIG) == DFSDM_FILTER_EXT_TRIG_HRTIM1_ADCTRG3) || \
  604. ((TRIG) == DFSDM_FILTER_EXT_TRIG_EXTI11) || \
  605. ((TRIG) == DFSDM_FILTER_EXT_TRIG_EXTI15) || \
  606. ((TRIG) == DFSDM_FILTER_EXT_TRIG_LPTIM1) || \
  607. ((TRIG) == DFSDM_FILTER_EXT_TRIG_LPTIM2) || \
  608. ((TRIG) == DFSDM_FILTER_EXT_TRIG_LPTIM3))
  609. #define IS_DFSDM_FILTER_EXT_TRIG_EDGE(EDGE) (((EDGE) == DFSDM_FILTER_EXT_TRIG_RISING_EDGE) || \
  610. ((EDGE) == DFSDM_FILTER_EXT_TRIG_FALLING_EDGE) || \
  611. ((EDGE) == DFSDM_FILTER_EXT_TRIG_BOTH_EDGES))
  612. #define IS_DFSDM_FILTER_SINC_ORDER(ORDER) (((ORDER) == DFSDM_FILTER_FASTSINC_ORDER) || \
  613. ((ORDER) == DFSDM_FILTER_SINC1_ORDER) || \
  614. ((ORDER) == DFSDM_FILTER_SINC2_ORDER) || \
  615. ((ORDER) == DFSDM_FILTER_SINC3_ORDER) || \
  616. ((ORDER) == DFSDM_FILTER_SINC4_ORDER) || \
  617. ((ORDER) == DFSDM_FILTER_SINC5_ORDER))
  618. #define IS_DFSDM_FILTER_OVS_RATIO(RATIO) ((1 <= (RATIO)) && ((RATIO) <= 1024))
  619. #define IS_DFSDM_FILTER_INTEGRATOR_OVS_RATIO(RATIO) ((1 <= (RATIO)) && ((RATIO) <= 256))
  620. #define IS_DFSDM_FILTER_AWD_DATA_SOURCE(DATA) (((DATA) == DFSDM_FILTER_AWD_FILTER_DATA) || \
  621. ((DATA) == DFSDM_FILTER_AWD_CHANNEL_DATA))
  622. #define IS_DFSDM_FILTER_AWD_THRESHOLD(VALUE) ((-8388608 <= (VALUE)) && ((VALUE) <= 8388607))
  623. #define IS_DFSDM_BREAK_SIGNALS(VALUE) ((VALUE) <= 0xF)
  624. #define IS_DFSDM_REGULAR_CHANNEL(CHANNEL) (((CHANNEL) == DFSDM_CHANNEL_0) || \
  625. ((CHANNEL) == DFSDM_CHANNEL_1) || \
  626. ((CHANNEL) == DFSDM_CHANNEL_2) || \
  627. ((CHANNEL) == DFSDM_CHANNEL_3) || \
  628. ((CHANNEL) == DFSDM_CHANNEL_4) || \
  629. ((CHANNEL) == DFSDM_CHANNEL_5) || \
  630. ((CHANNEL) == DFSDM_CHANNEL_6) || \
  631. ((CHANNEL) == DFSDM_CHANNEL_7))
  632. #define IS_DFSDM_INJECTED_CHANNEL(CHANNEL) (((CHANNEL) != 0) && ((CHANNEL) <= 0x000F00FF))
  633. #define IS_DFSDM_CONTINUOUS_MODE(MODE) (((MODE) == DFSDM_CONTINUOUS_CONV_OFF) || \
  634. ((MODE) == DFSDM_CONTINUOUS_CONV_ON))
  635. /**
  636. * @}
  637. */
  638. /* End of private macros ------------------------------------------------------------*/
  639. /**
  640. * @}
  641. */
  642. /**
  643. * @}
  644. */
  645. #ifdef __cplusplus
  646. }
  647. #endif
  648. #endif /* __STM32H7xx_HAL_DFSDM_H */
  649. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/