stm32f7xx_hal_dfsdm.h 37 KB

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