You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

580 lines
29 KiB

  1. /**
  2. ******************************************************************************
  3. * @file stm32f0xx_hal_dma.h
  4. * @author MCD Application Team
  5. * @brief Header file of DMA HAL module.
  6. ******************************************************************************
  7. * @attention
  8. *
  9. * <h2><center>&copy; COPYRIGHT(c) 2016 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 __STM32F0xx_HAL_DMA_H
  37. #define __STM32F0xx_HAL_DMA_H
  38. #ifdef __cplusplus
  39. extern "C" {
  40. #endif
  41. /* Includes ------------------------------------------------------------------*/
  42. #include "stm32f0xx_hal_def.h"
  43. /** @addtogroup STM32F0xx_HAL_Driver
  44. * @{
  45. */
  46. /** @addtogroup DMA
  47. * @{
  48. */
  49. /* Exported types ------------------------------------------------------------*/
  50. /** @defgroup DMA_Exported_Types DMA Exported Types
  51. * @{
  52. */
  53. /**
  54. * @brief DMA Configuration Structure definition
  55. */
  56. typedef struct
  57. {
  58. uint32_t Direction; /*!< Specifies if the data will be transferred from memory to peripheral,
  59. from memory to memory or from peripheral to memory.
  60. This parameter can be a value of @ref DMA_Data_transfer_direction */
  61. uint32_t PeriphInc; /*!< Specifies whether the Peripheral address register should be incremented or not.
  62. This parameter can be a value of @ref DMA_Peripheral_incremented_mode */
  63. uint32_t MemInc; /*!< Specifies whether the memory address register should be incremented or not.
  64. This parameter can be a value of @ref DMA_Memory_incremented_mode */
  65. uint32_t PeriphDataAlignment; /*!< Specifies the Peripheral data width.
  66. This parameter can be a value of @ref DMA_Peripheral_data_size */
  67. uint32_t MemDataAlignment; /*!< Specifies the Memory data width.
  68. This parameter can be a value of @ref DMA_Memory_data_size */
  69. uint32_t Mode; /*!< Specifies the operation mode of the DMAy Channelx.
  70. This parameter can be a value of @ref DMA_mode
  71. @note The circular buffer mode cannot be used if the memory-to-memory
  72. data transfer is configured on the selected Channel */
  73. uint32_t Priority; /*!< Specifies the software priority for the DMAy Channelx.
  74. This parameter can be a value of @ref DMA_Priority_level */
  75. } DMA_InitTypeDef;
  76. /**
  77. * @brief HAL DMA State structures definition
  78. */
  79. typedef enum
  80. {
  81. HAL_DMA_STATE_RESET = 0x00U, /*!< DMA not yet initialized or disabled */
  82. HAL_DMA_STATE_READY = 0x01U, /*!< DMA initialized and ready for use */
  83. HAL_DMA_STATE_BUSY = 0x02U, /*!< DMA process is ongoing */
  84. HAL_DMA_STATE_TIMEOUT = 0x03U /*!< DMA timeout state */
  85. }HAL_DMA_StateTypeDef;
  86. /**
  87. * @brief HAL DMA Error Code structure definition
  88. */
  89. typedef enum
  90. {
  91. HAL_DMA_FULL_TRANSFER = 0x00U, /*!< Full transfer */
  92. HAL_DMA_HALF_TRANSFER = 0x01U /*!< Half Transfer */
  93. }HAL_DMA_LevelCompleteTypeDef;
  94. /**
  95. * @brief HAL DMA Callback ID structure definition
  96. */
  97. typedef enum
  98. {
  99. HAL_DMA_XFER_CPLT_CB_ID = 0x00U, /*!< Full transfer */
  100. HAL_DMA_XFER_HALFCPLT_CB_ID = 0x01U, /*!< Half transfer */
  101. HAL_DMA_XFER_ERROR_CB_ID = 0x02U, /*!< Error */
  102. HAL_DMA_XFER_ABORT_CB_ID = 0x03U, /*!< Abort */
  103. HAL_DMA_XFER_ALL_CB_ID = 0x04U /*!< All */
  104. }HAL_DMA_CallbackIDTypeDef;
  105. /**
  106. * @brief DMA handle Structure definition
  107. */
  108. typedef struct __DMA_HandleTypeDef
  109. {
  110. DMA_Channel_TypeDef *Instance; /*!< Register base address */
  111. DMA_InitTypeDef Init; /*!< DMA communication parameters */
  112. HAL_LockTypeDef Lock; /*!< DMA locking object */
  113. __IO HAL_DMA_StateTypeDef State; /*!< DMA transfer state */
  114. void *Parent; /*!< Parent object state */
  115. void (* XferCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer complete callback */
  116. void (* XferHalfCpltCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA Half transfer complete callback */
  117. void (* XferErrorCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer error callback */
  118. void (* XferAbortCallback)( struct __DMA_HandleTypeDef * hdma); /*!< DMA transfer abort callback */
  119. __IO uint32_t ErrorCode; /*!< DMA Error code */
  120. DMA_TypeDef *DmaBaseAddress; /*!< DMA Channel Base Address */
  121. uint32_t ChannelIndex; /*!< DMA Channel Index */
  122. } DMA_HandleTypeDef;
  123. /**
  124. * @}
  125. */
  126. /* Exported constants --------------------------------------------------------*/
  127. /** @defgroup DMA_Exported_Constants DMA Exported Constants
  128. * @{
  129. */
  130. /** @defgroup DMA_Error_Code DMA Error Code
  131. * @{
  132. */
  133. #define HAL_DMA_ERROR_NONE (0x00000000U) /*!< No error */
  134. #define HAL_DMA_ERROR_TE (0x00000001U) /*!< Transfer error */
  135. #define HAL_DMA_ERROR_NO_XFER (0x00000004U) /*!< no ongoin transfer */
  136. #define HAL_DMA_ERROR_TIMEOUT (0x00000020U) /*!< Timeout error */
  137. #define HAL_DMA_ERROR_NOT_SUPPORTED (0x00000100U) /*!< Not supported mode */
  138. /**
  139. * @}
  140. */
  141. /** @defgroup DMA_Data_transfer_direction DMA Data transfer direction
  142. * @{
  143. */
  144. #define DMA_PERIPH_TO_MEMORY (0x00000000U) /*!< Peripheral to memory direction */
  145. #define DMA_MEMORY_TO_PERIPH ((uint32_t)DMA_CCR_DIR) /*!< Memory to peripheral direction */
  146. #define DMA_MEMORY_TO_MEMORY ((uint32_t)(DMA_CCR_MEM2MEM)) /*!< Memory to memory direction */
  147. /**
  148. * @}
  149. */
  150. /** @defgroup DMA_Peripheral_incremented_mode DMA Peripheral incremented mode
  151. * @{
  152. */
  153. #define DMA_PINC_ENABLE ((uint32_t)DMA_CCR_PINC) /*!< Peripheral increment mode Enable */
  154. #define DMA_PINC_DISABLE (0x00000000U) /*!< Peripheral increment mode Disable */
  155. /**
  156. * @}
  157. */
  158. /** @defgroup DMA_Memory_incremented_mode DMA Memory incremented mode
  159. * @{
  160. */
  161. #define DMA_MINC_ENABLE ((uint32_t)DMA_CCR_MINC) /*!< Memory increment mode Enable */
  162. #define DMA_MINC_DISABLE (0x00000000U) /*!< Memory increment mode Disable */
  163. /**
  164. * @}
  165. */
  166. /** @defgroup DMA_Peripheral_data_size DMA Peripheral data size
  167. * @{
  168. */
  169. #define DMA_PDATAALIGN_BYTE (0x00000000U) /*!< Peripheral data alignment : Byte */
  170. #define DMA_PDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_PSIZE_0) /*!< Peripheral data alignment : HalfWord */
  171. #define DMA_PDATAALIGN_WORD ((uint32_t)DMA_CCR_PSIZE_1) /*!< Peripheral data alignment : Word */
  172. /**
  173. * @}
  174. */
  175. /** @defgroup DMA_Memory_data_size DMA Memory data size
  176. * @{
  177. */
  178. #define DMA_MDATAALIGN_BYTE (0x00000000U) /*!< Memory data alignment : Byte */
  179. #define DMA_MDATAALIGN_HALFWORD ((uint32_t)DMA_CCR_MSIZE_0) /*!< Memory data alignment : HalfWord */
  180. #define DMA_MDATAALIGN_WORD ((uint32_t)DMA_CCR_MSIZE_1) /*!< Memory data alignment : Word */
  181. /**
  182. * @}
  183. */
  184. /** @defgroup DMA_mode DMA mode
  185. * @{
  186. */
  187. #define DMA_NORMAL (0x00000000U) /*!< Normal Mode */
  188. #define DMA_CIRCULAR ((uint32_t)DMA_CCR_CIRC) /*!< Circular Mode */
  189. /**
  190. * @}
  191. */
  192. /** @defgroup DMA_Priority_level DMA Priority level
  193. * @{
  194. */
  195. #define DMA_PRIORITY_LOW (0x00000000U) /*!< Priority level : Low */
  196. #define DMA_PRIORITY_MEDIUM ((uint32_t)DMA_CCR_PL_0) /*!< Priority level : Medium */
  197. #define DMA_PRIORITY_HIGH ((uint32_t)DMA_CCR_PL_1) /*!< Priority level : High */
  198. #define DMA_PRIORITY_VERY_HIGH ((uint32_t)DMA_CCR_PL) /*!< Priority level : Very_High */
  199. /**
  200. * @}
  201. */
  202. /** @defgroup DMA_interrupt_enable_definitions DMA interrupt enable definitions
  203. * @{
  204. */
  205. #define DMA_IT_TC ((uint32_t)DMA_CCR_TCIE)
  206. #define DMA_IT_HT ((uint32_t)DMA_CCR_HTIE)
  207. #define DMA_IT_TE ((uint32_t)DMA_CCR_TEIE)
  208. /**
  209. * @}
  210. */
  211. /** @defgroup DMA_flag_definitions DMA flag definitions
  212. * @{
  213. */
  214. #define DMA_FLAG_GL1 (0x00000001U) /*!< Channel 1 global interrupt flag */
  215. #define DMA_FLAG_TC1 (0x00000002U) /*!< Channel 1 transfer complete flag */
  216. #define DMA_FLAG_HT1 (0x00000004U) /*!< Channel 1 half transfer flag */
  217. #define DMA_FLAG_TE1 (0x00000008U) /*!< Channel 1 transfer error flag */
  218. #define DMA_FLAG_GL2 (0x00000010U) /*!< Channel 2 global interrupt flag */
  219. #define DMA_FLAG_TC2 (0x00000020U) /*!< Channel 2 transfer complete flag */
  220. #define DMA_FLAG_HT2 (0x00000040U) /*!< Channel 2 half transfer flag */
  221. #define DMA_FLAG_TE2 (0x00000080U) /*!< Channel 2 transfer error flag */
  222. #define DMA_FLAG_GL3 (0x00000100U) /*!< Channel 3 global interrupt flag */
  223. #define DMA_FLAG_TC3 (0x00000200U) /*!< Channel 3 transfer complete flag */
  224. #define DMA_FLAG_HT3 (0x00000400U) /*!< Channel 3 half transfer flag */
  225. #define DMA_FLAG_TE3 (0x00000800U) /*!< Channel 3 transfer error flag */
  226. #define DMA_FLAG_GL4 (0x00001000U) /*!< Channel 4 global interrupt flag */
  227. #define DMA_FLAG_TC4 (0x00002000U) /*!< Channel 4 transfer complete flag */
  228. #define DMA_FLAG_HT4 (0x00004000U) /*!< Channel 4 half transfer flag */
  229. #define DMA_FLAG_TE4 (0x00008000U) /*!< Channel 4 transfer error flag */
  230. #define DMA_FLAG_GL5 (0x00010000U) /*!< Channel 5 global interrupt flag */
  231. #define DMA_FLAG_TC5 (0x00020000U) /*!< Channel 5 transfer complete flag */
  232. #define DMA_FLAG_HT5 (0x00040000U) /*!< Channel 5 half transfer flag */
  233. #define DMA_FLAG_TE5 (0x00080000U) /*!< Channel 5 transfer error flag */
  234. #define DMA_FLAG_GL6 (0x00100000U) /*!< Channel 6 global interrupt flag */
  235. #define DMA_FLAG_TC6 (0x00200000U) /*!< Channel 6 transfer complete flag */
  236. #define DMA_FLAG_HT6 (0x00400000U) /*!< Channel 6 half transfer flag */
  237. #define DMA_FLAG_TE6 (0x00800000U) /*!< Channel 6 transfer error flag */
  238. #define DMA_FLAG_GL7 (0x01000000U) /*!< Channel 7 global interrupt flag */
  239. #define DMA_FLAG_TC7 (0x02000000U) /*!< Channel 7 transfer complete flag */
  240. #define DMA_FLAG_HT7 (0x04000000U) /*!< Channel 7 half transfer flag */
  241. #define DMA_FLAG_TE7 (0x08000000U) /*!< Channel 7 transfer error flag */
  242. /**
  243. * @}
  244. */
  245. #if defined(SYSCFG_CFGR1_DMA_RMP)
  246. /** @defgroup HAL_DMA_remapping HAL DMA remapping
  247. * Elements values convention: 0xYYYYYYYY
  248. * - YYYYYYYY : Position in the SYSCFG register CFGR1
  249. * @{
  250. */
  251. #define DMA_REMAP_ADC_DMA_CH2 ((uint32_t)SYSCFG_CFGR1_ADC_DMA_RMP) /*!< ADC DMA remap
  252. 0: No remap (ADC DMA requests mapped on DMA channel 1
  253. 1: Remap (ADC DMA requests mapped on DMA channel 2 */
  254. #define DMA_REMAP_USART1_TX_DMA_CH4 ((uint32_t)SYSCFG_CFGR1_USART1TX_DMA_RMP) /*!< USART1 TX DMA remap
  255. 0: No remap (USART1_TX DMA request mapped on DMA channel 2
  256. 1: Remap (USART1_TX DMA request mapped on DMA channel 4 */
  257. #define DMA_REMAP_USART1_RX_DMA_CH5 ((uint32_t)SYSCFG_CFGR1_USART1RX_DMA_RMP) /*!< USART1 RX DMA remap
  258. 0: No remap (USART1_RX DMA request mapped on DMA channel 3
  259. 1: Remap (USART1_RX DMA request mapped on DMA channel 5 */
  260. #define DMA_REMAP_TIM16_DMA_CH4 ((uint32_t)SYSCFG_CFGR1_TIM16_DMA_RMP) /*!< TIM16 DMA request remap
  261. 0: No remap (TIM16_CH1 and TIM16_UP DMA requests mapped on DMA channel 3)
  262. 1: Remap (TIM16_CH1 and TIM16_UP DMA requests mapped on DMA channel 4) */
  263. #define DMA_REMAP_TIM17_DMA_CH2 ((uint32_t)SYSCFG_CFGR1_TIM17_DMA_RMP) /*!< TIM17 DMA request remap
  264. 0: No remap (TIM17_CH1 and TIM17_UP DMA requests mapped on DMA channel 1
  265. 1: Remap (TIM17_CH1 and TIM17_UP DMA requests mapped on DMA channel 2) */
  266. #if defined (STM32F070xB)
  267. #define DMA_REMAP_USART3_DMA_CH32 ((uint32_t)SYSCFG_CFGR1_USART3_DMA_RMP) /*!< USART3 DMA request remapping bit. Available on STM32F070xB devices only.
  268. 0: Disabled, need to remap before use
  269. 1: Remap (USART3_RX and USART3_TX DMA requests mapped on DMA channel 3 and 2 respectively) */
  270. #endif
  271. #if defined (STM32F071xB) || defined (STM32F072xB) || defined (STM32F078xx)
  272. #define DMA_REMAP_TIM16_DMA_CH6 ((uint32_t)SYSCFG_CFGR1_TIM16_DMA_RMP2) /*!< TIM16 alternate DMA request remapping bit. Available on STM32F07x devices only
  273. 0: No alternate remap (TIM16 DMA requestsmapped according to TIM16_DMA_RMP bit)
  274. 1: Alternate remap (TIM16_CH1 and TIM16_UP DMA requests mapped on DMA channel 6) */
  275. #define DMA_REMAP_TIM17_DMA_CH7 ((uint32_t)SYSCFG_CFGR1_TIM17_DMA_RMP2) /*!< TIM17 alternate DMA request remapping bit. Available on STM32F07x devices only
  276. 0: No alternate remap (TIM17 DMA requestsmapped according to TIM17_DMA_RMP bit)
  277. 1: Alternate remap (TIM17_CH1 and TIM17_UP DMA requests mapped on DMA channel 7) */
  278. #define DMA_REMAP_SPI2_DMA_CH67 ((uint32_t)SYSCFG_CFGR1_SPI2_DMA_RMP) /*!< SPI2 DMA request remapping bit. Available on STM32F07x devices only.
  279. 0: No remap (SPI2_RX and SPI2_TX DMA requests mapped on DMA channel 4 and 5 respectively)
  280. 1: Remap (SPI2_RX and SPI2_TX DMA requests mapped on DMA channel 6 and 7 respectively) */
  281. #define DMA_REMAP_USART2_DMA_CH67 ((uint32_t)SYSCFG_CFGR1_USART2_DMA_RMP) /*!< USART2 DMA request remapping bit. Available on STM32F07x devices only.
  282. 0: No remap (USART2_RX and USART2_TX DMA requests mapped on DMA channel 5 and 4 respectively)
  283. 1: 1: Remap (USART2_RX and USART2_TX DMA requests mapped on DMA channel 6 and 7 respectively) */
  284. #define DMA_REMAP_USART3_DMA_CH32 ((uint32_t)SYSCFG_CFGR1_USART3_DMA_RMP) /*!< USART3 DMA request remapping bit. Available on STM32F07x devices only.
  285. 0: No remap (USART3_RX and USART3_TX DMA requests mapped on DMA channel 6 and 7 respectively)
  286. 1: Remap (USART3_RX and USART3_TX DMA requests mapped on DMA channel 3 and 2 respectively) */
  287. #define DMA_REMAP_I2C1_DMA_CH76 ((uint32_t)SYSCFG_CFGR1_I2C1_DMA_RMP) /*!< I2C1 DMA request remapping bit. Available on STM32F07x devices only.
  288. 0: No remap (I2C1_RX and I2C1_TX DMA requests mapped on DMA channel 3 and 2 respectively)
  289. 1: Remap (I2C1_RX and I2C1_TX DMA requests mapped on DMA channel 7 and 6 respectively) */
  290. #define DMA_REMAP_TIM1_DMA_CH6 ((uint32_t)SYSCFG_CFGR1_TIM1_DMA_RMP) /*!< TIM1 DMA request remapping bit. Available on STM32F07x devices only.
  291. 0: No remap (TIM1_CH1, TIM1_CH2 and TIM1_CH3 DMA requests mapped on DMA channel 2, 3 and 4 respectively)
  292. 1: Remap (TIM1_CH1, TIM1_CH2 and TIM1_CH3 DMA requests mapped on DMA channel 6 */
  293. #define DMA_REMAP_TIM2_DMA_CH7 ((uint32_t)SYSCFG_CFGR1_TIM2_DMA_RMP) /*!< TIM2 DMA request remapping bit. Available on STM32F07x devices only.
  294. 0: No remap (TIM2_CH2 and TIM2_CH4 DMA requests mapped on DMA channel 3 and 4 respectively)
  295. 1: Remap (TIM2_CH2 and TIM2_CH4 DMA requests mapped on DMA channel 7 */
  296. #define DMA_REMAP_TIM3_DMA_CH6 ((uint32_t)SYSCFG_CFGR1_TIM3_DMA_RMP) /*!< TIM3 DMA request remapping bit. Available on STM32F07x devices only.
  297. 0: No remap (TIM3_CH1 and TIM3_TRIG DMA requests mapped on DMA channel 4)
  298. 1: Remap (TIM3_CH1 and TIM3_TRIG DMA requests mapped on DMA channel 6) */
  299. #endif
  300. /**
  301. * @}
  302. */
  303. #endif /* SYSCFG_CFGR1_DMA_RMP */
  304. /**
  305. * @}
  306. */
  307. /* Exported macro ------------------------------------------------------------*/
  308. /** @defgroup DMA_Exported_Macros DMA Exported Macros
  309. * @{
  310. */
  311. /** @brief Reset DMA handle state
  312. * @param __HANDLE__ DMA handle.
  313. * @retval None
  314. */
  315. #define __HAL_DMA_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DMA_STATE_RESET)
  316. /**
  317. * @brief Enable the specified DMA Channel.
  318. * @param __HANDLE__ DMA handle
  319. * @retval None
  320. */
  321. #define __HAL_DMA_ENABLE(__HANDLE__) ((__HANDLE__)->Instance->CCR |= DMA_CCR_EN)
  322. /**
  323. * @brief Disable the specified DMA Channel.
  324. * @param __HANDLE__ DMA handle
  325. * @retval None
  326. */
  327. #define __HAL_DMA_DISABLE(__HANDLE__) ((__HANDLE__)->Instance->CCR &= ~DMA_CCR_EN)
  328. /* Interrupt & Flag management */
  329. /**
  330. * @brief Enables the specified DMA Channel interrupts.
  331. * @param __HANDLE__ DMA handle
  332. * @param __INTERRUPT__ specifies the DMA interrupt sources to be enabled or disabled.
  333. * This parameter can be any combination of the following values:
  334. * @arg DMA_IT_TC: Transfer complete interrupt mask
  335. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  336. * @arg DMA_IT_TE: Transfer error interrupt mask
  337. * @retval None
  338. */
  339. #define __HAL_DMA_ENABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CCR |= (__INTERRUPT__))
  340. /**
  341. * @brief Disables the specified DMA Channel interrupts.
  342. * @param __HANDLE__ DMA handle
  343. * @param __INTERRUPT__ specifies the DMA interrupt sources to be enabled or disabled.
  344. * This parameter can be any combination of the following values:
  345. * @arg DMA_IT_TC: Transfer complete interrupt mask
  346. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  347. * @arg DMA_IT_TE: Transfer error interrupt mask
  348. * @retval None
  349. */
  350. #define __HAL_DMA_DISABLE_IT(__HANDLE__, __INTERRUPT__) ((__HANDLE__)->Instance->CCR &= ~(__INTERRUPT__))
  351. /**
  352. * @brief Checks whether the specified DMA Channel interrupt is enabled or disabled.
  353. * @param __HANDLE__ DMA handle
  354. * @param __INTERRUPT__ specifies the DMA interrupt source to check.
  355. * This parameter can be one of the following values:
  356. * @arg DMA_IT_TC: Transfer complete interrupt mask
  357. * @arg DMA_IT_HT: Half transfer complete interrupt mask
  358. * @arg DMA_IT_TE: Transfer error interrupt mask
  359. * @retval The state of DMA_IT (SET or RESET).
  360. */
  361. #define __HAL_DMA_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CCR & (__INTERRUPT__)))
  362. /**
  363. * @brief Returns the number of remaining data units in the current DMAy Channelx transfer.
  364. * @param __HANDLE__ DMA handle
  365. *
  366. * @retval The number of remaining data units in the current DMA Channel transfer.
  367. */
  368. #define __HAL_DMA_GET_COUNTER(__HANDLE__) ((__HANDLE__)->Instance->CNDTR)
  369. #if defined(SYSCFG_CFGR1_DMA_RMP)
  370. /** @brief DMA remapping enable/disable macros
  371. * @param __DMA_REMAP__ This parameter can be a value of @ref HAL_DMA_remapping
  372. */
  373. #define __HAL_DMA_REMAP_CHANNEL_ENABLE(__DMA_REMAP__) do {assert_param(IS_DMA_REMAP((__DMA_REMAP__))); \
  374. SYSCFG->CFGR1 |= (__DMA_REMAP__); \
  375. }while(0)
  376. #define __HAL_DMA_REMAP_CHANNEL_DISABLE(__DMA_REMAP__) do {assert_param(IS_DMA_REMAP((__DMA_REMAP__))); \
  377. SYSCFG->CFGR1 &= ~(__DMA_REMAP__); \
  378. }while(0)
  379. #endif /* SYSCFG_CFGR1_DMA_RMP */
  380. /**
  381. * @}
  382. */
  383. /* Include DMA HAL Extension module */
  384. #include "stm32f0xx_hal_dma_ex.h"
  385. /* Exported functions --------------------------------------------------------*/
  386. /** @addtogroup DMA_Exported_Functions
  387. * @{
  388. */
  389. /** @addtogroup DMA_Exported_Functions_Group1
  390. * @{
  391. */
  392. /* Initialization and de-initialization functions *****************************/
  393. HAL_StatusTypeDef HAL_DMA_Init(DMA_HandleTypeDef *hdma);
  394. HAL_StatusTypeDef HAL_DMA_DeInit (DMA_HandleTypeDef *hdma);
  395. /**
  396. * @}
  397. */
  398. /** @addtogroup DMA_Exported_Functions_Group2
  399. * @{
  400. */
  401. /* Input and Output operation functions *****************************************************/
  402. HAL_StatusTypeDef HAL_DMA_Start (DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength);
  403. HAL_StatusTypeDef HAL_DMA_Start_IT(DMA_HandleTypeDef *hdma, uint32_t SrcAddress, uint32_t DstAddress, uint32_t DataLength);
  404. HAL_StatusTypeDef HAL_DMA_Abort(DMA_HandleTypeDef *hdma);
  405. HAL_StatusTypeDef HAL_DMA_Abort_IT(DMA_HandleTypeDef *hdma);
  406. HAL_StatusTypeDef HAL_DMA_PollForTransfer(DMA_HandleTypeDef *hdma, uint32_t CompleteLevel, uint32_t Timeout);
  407. void HAL_DMA_IRQHandler(DMA_HandleTypeDef *hdma);
  408. HAL_StatusTypeDef HAL_DMA_RegisterCallback(DMA_HandleTypeDef *hdma, HAL_DMA_CallbackIDTypeDef CallbackID, void (* pCallback)( DMA_HandleTypeDef * _hdma));
  409. HAL_StatusTypeDef HAL_DMA_UnRegisterCallback(DMA_HandleTypeDef *hdma, HAL_DMA_CallbackIDTypeDef CallbackID);
  410. /**
  411. * @}
  412. */
  413. /** @addtogroup DMA_Exported_Functions_Group3
  414. * @{
  415. */
  416. /* Peripheral State and Error functions ***************************************/
  417. HAL_DMA_StateTypeDef HAL_DMA_GetState(DMA_HandleTypeDef *hdma);
  418. uint32_t HAL_DMA_GetError(DMA_HandleTypeDef *hdma);
  419. /**
  420. * @}
  421. */
  422. /**
  423. * @}
  424. */
  425. /** @addtogroup DMA_Private_Macros
  426. * @{
  427. */
  428. #define IS_DMA_DIRECTION(DIRECTION) (((DIRECTION) == DMA_PERIPH_TO_MEMORY ) || \
  429. ((DIRECTION) == DMA_MEMORY_TO_PERIPH) || \
  430. ((DIRECTION) == DMA_MEMORY_TO_MEMORY))
  431. #define IS_DMA_PERIPHERAL_INC_STATE(STATE) (((STATE) == DMA_PINC_ENABLE) || \
  432. ((STATE) == DMA_PINC_DISABLE))
  433. #define IS_DMA_MEMORY_INC_STATE(STATE) (((STATE) == DMA_MINC_ENABLE) || \
  434. ((STATE) == DMA_MINC_DISABLE))
  435. #define IS_DMA_PERIPHERAL_DATA_SIZE(SIZE) (((SIZE) == DMA_PDATAALIGN_BYTE) || \
  436. ((SIZE) == DMA_PDATAALIGN_HALFWORD) || \
  437. ((SIZE) == DMA_PDATAALIGN_WORD))
  438. #define IS_DMA_MEMORY_DATA_SIZE(SIZE) (((SIZE) == DMA_MDATAALIGN_BYTE) || \
  439. ((SIZE) == DMA_MDATAALIGN_HALFWORD) || \
  440. ((SIZE) == DMA_MDATAALIGN_WORD ))
  441. #define IS_DMA_MODE(MODE) (((MODE) == DMA_NORMAL ) || \
  442. ((MODE) == DMA_CIRCULAR))
  443. #define IS_DMA_PRIORITY(PRIORITY) (((PRIORITY) == DMA_PRIORITY_LOW ) || \
  444. ((PRIORITY) == DMA_PRIORITY_MEDIUM) || \
  445. ((PRIORITY) == DMA_PRIORITY_HIGH) || \
  446. ((PRIORITY) == DMA_PRIORITY_VERY_HIGH))
  447. #define IS_DMA_BUFFER_SIZE(SIZE) (((SIZE) >= 0x1U) && ((SIZE) < 0x10000U))
  448. #if defined(SYSCFG_CFGR1_DMA_RMP)
  449. #if defined (STM32F071xB) || defined (STM32F072xB) || defined (STM32F078xx)
  450. #define IS_DMA_REMAP(RMP) (((RMP) == DMA_REMAP_ADC_DMA_CH2) || \
  451. ((RMP) == DMA_REMAP_USART1_TX_DMA_CH4) || \
  452. ((RMP) == DMA_REMAP_USART1_RX_DMA_CH5) || \
  453. ((RMP) == DMA_REMAP_TIM16_DMA_CH4) || \
  454. ((RMP) == DMA_REMAP_TIM17_DMA_CH2) || \
  455. ((RMP) == DMA_REMAP_TIM16_DMA_CH6) || \
  456. ((RMP) == DMA_REMAP_TIM17_DMA_CH7) || \
  457. ((RMP) == DMA_REMAP_SPI2_DMA_CH67) || \
  458. ((RMP) == DMA_REMAP_USART2_DMA_CH67) || \
  459. ((RMP) == DMA_REMAP_USART3_DMA_CH32) || \
  460. ((RMP) == DMA_REMAP_I2C1_DMA_CH76) || \
  461. ((RMP) == DMA_REMAP_TIM1_DMA_CH6) || \
  462. ((RMP) == DMA_REMAP_TIM2_DMA_CH7) || \
  463. ((RMP) == DMA_REMAP_TIM3_DMA_CH6))
  464. #elif defined (STM32F070xB)
  465. #define IS_DMA_REMAP(RMP) (((RMP) == DMA_REMAP_USART3_DMA_CH32) || \
  466. ((RMP) == DMA_REMAP_ADC_DMA_CH2) || \
  467. ((RMP) == DMA_REMAP_USART1_TX_DMA_CH4) || \
  468. ((RMP) == DMA_REMAP_USART1_RX_DMA_CH5) || \
  469. ((RMP) == DMA_REMAP_TIM16_DMA_CH4) || \
  470. ((RMP) == DMA_REMAP_TIM17_DMA_CH2))
  471. #else
  472. #define IS_DMA_REMAP(RMP) (((RMP) == DMA_REMAP_ADC_DMA_CH2) || \
  473. ((RMP) == DMA_REMAP_USART1_TX_DMA_CH4) || \
  474. ((RMP) == DMA_REMAP_USART1_RX_DMA_CH5) || \
  475. ((RMP) == DMA_REMAP_TIM16_DMA_CH4) || \
  476. ((RMP) == DMA_REMAP_TIM17_DMA_CH2))
  477. #endif
  478. #endif /* SYSCFG_CFGR1_DMA_RMP */
  479. /**
  480. * @}
  481. */
  482. /**
  483. * @}
  484. */
  485. /**
  486. * @}
  487. */
  488. #ifdef __cplusplus
  489. }
  490. #endif
  491. #endif /* __STM32F0xx_HAL_DMA_H */
  492. /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/