Fork of the official mbed C/C SDK provides the software platform and libraries to build your applications for RenBED.

Dependents:   1-RenBuggyTimed RenBED_RGB RenBED_RGB_PWM RenBED_RGB

Fork of mbed by mbed official

Committer:
elijahorr
Date:
Thu Apr 14 07:28:54 2016 +0000
Revision:
121:672067c3ada4
Parent:
110:165afa46840b
.

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 92:4fc01daae5a5 1 /**
bogdanm 92:4fc01daae5a5 2 ******************************************************************************
bogdanm 92:4fc01daae5a5 3 * @file stm32f4xx_hal_dac.h
bogdanm 92:4fc01daae5a5 4 * @author MCD Application Team
Kojto 110:165afa46840b 5 * @version V1.4.1
Kojto 110:165afa46840b 6 * @date 09-October-2015
bogdanm 92:4fc01daae5a5 7 * @brief Header file of DAC HAL module.
bogdanm 92:4fc01daae5a5 8 ******************************************************************************
bogdanm 92:4fc01daae5a5 9 * @attention
bogdanm 92:4fc01daae5a5 10 *
Kojto 99:dbbf35b96557 11 * <h2><center>&copy; COPYRIGHT(c) 2015 STMicroelectronics</center></h2>
bogdanm 92:4fc01daae5a5 12 *
bogdanm 92:4fc01daae5a5 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 92:4fc01daae5a5 14 * are permitted provided that the following conditions are met:
bogdanm 92:4fc01daae5a5 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 92:4fc01daae5a5 16 * this list of conditions and the following disclaimer.
bogdanm 92:4fc01daae5a5 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 92:4fc01daae5a5 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 92:4fc01daae5a5 19 * and/or other materials provided with the distribution.
bogdanm 92:4fc01daae5a5 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 92:4fc01daae5a5 21 * may be used to endorse or promote products derived from this software
bogdanm 92:4fc01daae5a5 22 * without specific prior written permission.
bogdanm 92:4fc01daae5a5 23 *
bogdanm 92:4fc01daae5a5 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 92:4fc01daae5a5 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 92:4fc01daae5a5 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 92:4fc01daae5a5 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 92:4fc01daae5a5 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 92:4fc01daae5a5 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 92:4fc01daae5a5 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 92:4fc01daae5a5 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 92:4fc01daae5a5 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 92:4fc01daae5a5 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 92:4fc01daae5a5 34 *
bogdanm 92:4fc01daae5a5 35 ******************************************************************************
bogdanm 92:4fc01daae5a5 36 */
bogdanm 92:4fc01daae5a5 37
bogdanm 92:4fc01daae5a5 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 92:4fc01daae5a5 39 #ifndef __STM32F4xx_HAL_DAC_H
bogdanm 92:4fc01daae5a5 40 #define __STM32F4xx_HAL_DAC_H
bogdanm 92:4fc01daae5a5 41
bogdanm 92:4fc01daae5a5 42 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 43 extern "C" {
bogdanm 92:4fc01daae5a5 44 #endif
bogdanm 92:4fc01daae5a5 45
Kojto 99:dbbf35b96557 46 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) ||\
Kojto 99:dbbf35b96557 47 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
Kojto 110:165afa46840b 48 defined(STM32F410Tx) || defined(STM32F410Cx) || defined(STM32F410Rx) || defined(STM32F446xx) ||\
Kojto 110:165afa46840b 49 defined(STM32F469xx) || defined(STM32F479xx)
bogdanm 92:4fc01daae5a5 50
bogdanm 92:4fc01daae5a5 51 /* Includes ------------------------------------------------------------------*/
bogdanm 92:4fc01daae5a5 52 #include "stm32f4xx_hal_def.h"
bogdanm 92:4fc01daae5a5 53
bogdanm 92:4fc01daae5a5 54 /** @addtogroup STM32F4xx_HAL_Driver
bogdanm 92:4fc01daae5a5 55 * @{
bogdanm 92:4fc01daae5a5 56 */
bogdanm 92:4fc01daae5a5 57
bogdanm 92:4fc01daae5a5 58 /** @addtogroup DAC
bogdanm 92:4fc01daae5a5 59 * @{
bogdanm 92:4fc01daae5a5 60 */
bogdanm 92:4fc01daae5a5 61
bogdanm 92:4fc01daae5a5 62 /* Exported types ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 63 /** @defgroup DAC_Exported_Types DAC Exported Types
Kojto 99:dbbf35b96557 64 * @{
Kojto 99:dbbf35b96557 65 */
bogdanm 92:4fc01daae5a5 66
bogdanm 92:4fc01daae5a5 67 /**
Kojto 99:dbbf35b96557 68 * @brief HAL State structures definition
bogdanm 92:4fc01daae5a5 69 */
bogdanm 92:4fc01daae5a5 70 typedef enum
bogdanm 92:4fc01daae5a5 71 {
bogdanm 92:4fc01daae5a5 72 HAL_DAC_STATE_RESET = 0x00, /*!< DAC not yet initialized or disabled */
bogdanm 92:4fc01daae5a5 73 HAL_DAC_STATE_READY = 0x01, /*!< DAC initialized and ready for use */
bogdanm 92:4fc01daae5a5 74 HAL_DAC_STATE_BUSY = 0x02, /*!< DAC internal processing is ongoing */
bogdanm 92:4fc01daae5a5 75 HAL_DAC_STATE_TIMEOUT = 0x03, /*!< DAC timeout state */
bogdanm 92:4fc01daae5a5 76 HAL_DAC_STATE_ERROR = 0x04 /*!< DAC error state */
bogdanm 92:4fc01daae5a5 77 }HAL_DAC_StateTypeDef;
bogdanm 92:4fc01daae5a5 78
bogdanm 92:4fc01daae5a5 79 /**
Kojto 99:dbbf35b96557 80 * @brief DAC handle Structure definition
bogdanm 92:4fc01daae5a5 81 */
bogdanm 92:4fc01daae5a5 82 typedef struct
bogdanm 92:4fc01daae5a5 83 {
bogdanm 92:4fc01daae5a5 84 DAC_TypeDef *Instance; /*!< Register base address */
bogdanm 92:4fc01daae5a5 85
bogdanm 92:4fc01daae5a5 86 __IO HAL_DAC_StateTypeDef State; /*!< DAC communication state */
bogdanm 92:4fc01daae5a5 87
bogdanm 92:4fc01daae5a5 88 HAL_LockTypeDef Lock; /*!< DAC locking object */
bogdanm 92:4fc01daae5a5 89
bogdanm 92:4fc01daae5a5 90 DMA_HandleTypeDef *DMA_Handle1; /*!< Pointer DMA handler for channel 1 */
bogdanm 92:4fc01daae5a5 91
bogdanm 92:4fc01daae5a5 92 DMA_HandleTypeDef *DMA_Handle2; /*!< Pointer DMA handler for channel 2 */
bogdanm 92:4fc01daae5a5 93
bogdanm 92:4fc01daae5a5 94 __IO uint32_t ErrorCode; /*!< DAC Error code */
bogdanm 92:4fc01daae5a5 95
bogdanm 92:4fc01daae5a5 96 }DAC_HandleTypeDef;
bogdanm 92:4fc01daae5a5 97
bogdanm 92:4fc01daae5a5 98 /**
Kojto 99:dbbf35b96557 99 * @brief DAC Configuration regular Channel structure definition
bogdanm 92:4fc01daae5a5 100 */
bogdanm 92:4fc01daae5a5 101 typedef struct
bogdanm 92:4fc01daae5a5 102 {
bogdanm 92:4fc01daae5a5 103 uint32_t DAC_Trigger; /*!< Specifies the external trigger for the selected DAC channel.
bogdanm 92:4fc01daae5a5 104 This parameter can be a value of @ref DAC_trigger_selection */
bogdanm 92:4fc01daae5a5 105
bogdanm 92:4fc01daae5a5 106 uint32_t DAC_OutputBuffer; /*!< Specifies whether the DAC channel output buffer is enabled or disabled.
bogdanm 92:4fc01daae5a5 107 This parameter can be a value of @ref DAC_output_buffer */
bogdanm 92:4fc01daae5a5 108 }DAC_ChannelConfTypeDef;
Kojto 99:dbbf35b96557 109 /**
Kojto 99:dbbf35b96557 110 * @}
Kojto 99:dbbf35b96557 111 */
bogdanm 92:4fc01daae5a5 112
bogdanm 92:4fc01daae5a5 113 /* Exported constants --------------------------------------------------------*/
Kojto 99:dbbf35b96557 114 /** @defgroup DAC_Exported_Constants DAC Exported Constants
Kojto 99:dbbf35b96557 115 * @{
Kojto 99:dbbf35b96557 116 */
bogdanm 92:4fc01daae5a5 117
Kojto 99:dbbf35b96557 118 /** @defgroup DAC_Error_Code DAC Error Code
bogdanm 92:4fc01daae5a5 119 * @{
bogdanm 92:4fc01daae5a5 120 */
bogdanm 92:4fc01daae5a5 121 #define HAL_DAC_ERROR_NONE 0x00 /*!< No error */
bogdanm 92:4fc01daae5a5 122 #define HAL_DAC_ERROR_DMAUNDERRUNCH1 0x01 /*!< DAC channel1 DAM underrun error */
bogdanm 92:4fc01daae5a5 123 #define HAL_DAC_ERROR_DMAUNDERRUNCH2 0x02 /*!< DAC channel2 DAM underrun error */
bogdanm 92:4fc01daae5a5 124 #define HAL_DAC_ERROR_DMA 0x04 /*!< DMA error */
bogdanm 92:4fc01daae5a5 125 /**
bogdanm 92:4fc01daae5a5 126 * @}
bogdanm 92:4fc01daae5a5 127 */
bogdanm 92:4fc01daae5a5 128
Kojto 99:dbbf35b96557 129 /** @defgroup DAC_trigger_selection DAC Trigger Selection
bogdanm 92:4fc01daae5a5 130 * @{
bogdanm 92:4fc01daae5a5 131 */
bogdanm 92:4fc01daae5a5 132
bogdanm 92:4fc01daae5a5 133 #define DAC_TRIGGER_NONE ((uint32_t)0x00000000) /*!< Conversion is automatic once the DAC1_DHRxxxx register
bogdanm 92:4fc01daae5a5 134 has been loaded, and not by external trigger */
bogdanm 92:4fc01daae5a5 135 #define DAC_TRIGGER_T2_TRGO ((uint32_t)(DAC_CR_TSEL1_2 | DAC_CR_TEN1)) /*!< TIM2 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 136 #define DAC_TRIGGER_T4_TRGO ((uint32_t)(DAC_CR_TSEL1_2 | DAC_CR_TSEL1_0 | DAC_CR_TEN1)) /*!< TIM4 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 137 #define DAC_TRIGGER_T5_TRGO ((uint32_t)(DAC_CR_TSEL1_1 | DAC_CR_TSEL1_0 | DAC_CR_TEN1)) /*!< TIM5 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 138 #define DAC_TRIGGER_T6_TRGO ((uint32_t)DAC_CR_TEN1) /*!< TIM6 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 139 #define DAC_TRIGGER_T7_TRGO ((uint32_t)(DAC_CR_TSEL1_1 | DAC_CR_TEN1)) /*!< TIM7 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 140 #define DAC_TRIGGER_T8_TRGO ((uint32_t)(DAC_CR_TSEL1_0 | DAC_CR_TEN1)) /*!< TIM8 TRGO selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 141
bogdanm 92:4fc01daae5a5 142 #define DAC_TRIGGER_EXT_IT9 ((uint32_t)(DAC_CR_TSEL1_2 | DAC_CR_TSEL1_1 | DAC_CR_TEN1)) /*!< EXTI Line9 event selected as external conversion trigger for DAC channel */
bogdanm 92:4fc01daae5a5 143 #define DAC_TRIGGER_SOFTWARE ((uint32_t)(DAC_CR_TSEL1 | DAC_CR_TEN1)) /*!< Conversion started by software trigger for DAC channel */
bogdanm 92:4fc01daae5a5 144 /**
bogdanm 92:4fc01daae5a5 145 * @}
bogdanm 92:4fc01daae5a5 146 */
bogdanm 92:4fc01daae5a5 147
Kojto 99:dbbf35b96557 148 /** @defgroup DAC_output_buffer DAC Output Buffer
bogdanm 92:4fc01daae5a5 149 * @{
bogdanm 92:4fc01daae5a5 150 */
bogdanm 92:4fc01daae5a5 151 #define DAC_OUTPUTBUFFER_ENABLE ((uint32_t)0x00000000)
bogdanm 92:4fc01daae5a5 152 #define DAC_OUTPUTBUFFER_DISABLE ((uint32_t)DAC_CR_BOFF1)
bogdanm 92:4fc01daae5a5 153 /**
bogdanm 92:4fc01daae5a5 154 * @}
bogdanm 92:4fc01daae5a5 155 */
bogdanm 92:4fc01daae5a5 156
Kojto 99:dbbf35b96557 157 /** @defgroup DAC_Channel_selection DAC Channel Selection
bogdanm 92:4fc01daae5a5 158 * @{
bogdanm 92:4fc01daae5a5 159 */
bogdanm 92:4fc01daae5a5 160 #define DAC_CHANNEL_1 ((uint32_t)0x00000000)
bogdanm 92:4fc01daae5a5 161 #define DAC_CHANNEL_2 ((uint32_t)0x00000010)
bogdanm 92:4fc01daae5a5 162 /**
bogdanm 92:4fc01daae5a5 163 * @}
bogdanm 92:4fc01daae5a5 164 */
bogdanm 92:4fc01daae5a5 165
Kojto 99:dbbf35b96557 166 /** @defgroup DAC_data_alignment DAC Data Alignment
bogdanm 92:4fc01daae5a5 167 * @{
bogdanm 92:4fc01daae5a5 168 */
bogdanm 92:4fc01daae5a5 169 #define DAC_ALIGN_12B_R ((uint32_t)0x00000000)
bogdanm 92:4fc01daae5a5 170 #define DAC_ALIGN_12B_L ((uint32_t)0x00000004)
bogdanm 92:4fc01daae5a5 171 #define DAC_ALIGN_8B_R ((uint32_t)0x00000008)
bogdanm 92:4fc01daae5a5 172 /**
bogdanm 92:4fc01daae5a5 173 * @}
bogdanm 92:4fc01daae5a5 174 */
bogdanm 92:4fc01daae5a5 175
Kojto 99:dbbf35b96557 176 /** @defgroup DAC_flags_definition DAC Flags Definition
bogdanm 92:4fc01daae5a5 177 * @{
bogdanm 92:4fc01daae5a5 178 */
bogdanm 92:4fc01daae5a5 179 #define DAC_FLAG_DMAUDR1 ((uint32_t)DAC_SR_DMAUDR1)
bogdanm 92:4fc01daae5a5 180 #define DAC_FLAG_DMAUDR2 ((uint32_t)DAC_SR_DMAUDR2)
bogdanm 92:4fc01daae5a5 181 /**
bogdanm 92:4fc01daae5a5 182 * @}
bogdanm 92:4fc01daae5a5 183 */
bogdanm 92:4fc01daae5a5 184
Kojto 99:dbbf35b96557 185 /** @defgroup DAC_IT_definition DAC IT Definition
bogdanm 92:4fc01daae5a5 186 * @{
bogdanm 92:4fc01daae5a5 187 */
bogdanm 92:4fc01daae5a5 188 #define DAC_IT_DMAUDR1 ((uint32_t)DAC_SR_DMAUDR1)
bogdanm 92:4fc01daae5a5 189 #define DAC_IT_DMAUDR2 ((uint32_t)DAC_SR_DMAUDR2)
Kojto 99:dbbf35b96557 190 /**
Kojto 99:dbbf35b96557 191 * @}
Kojto 99:dbbf35b96557 192 */
bogdanm 92:4fc01daae5a5 193
bogdanm 92:4fc01daae5a5 194 /**
bogdanm 92:4fc01daae5a5 195 * @}
bogdanm 92:4fc01daae5a5 196 */
bogdanm 92:4fc01daae5a5 197
bogdanm 92:4fc01daae5a5 198 /* Exported macro ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 199 /** @defgroup DAC_Exported_Macros DAC Exported Macros
Kojto 99:dbbf35b96557 200 * @{
Kojto 99:dbbf35b96557 201 */
bogdanm 92:4fc01daae5a5 202
bogdanm 92:4fc01daae5a5 203 /** @brief Reset DAC handle state
bogdanm 92:4fc01daae5a5 204 * @param __HANDLE__: specifies the DAC handle.
bogdanm 92:4fc01daae5a5 205 * @retval None
bogdanm 92:4fc01daae5a5 206 */
bogdanm 92:4fc01daae5a5 207 #define __HAL_DAC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DAC_STATE_RESET)
bogdanm 92:4fc01daae5a5 208
bogdanm 92:4fc01daae5a5 209 /** @brief Enable the DAC channel
bogdanm 92:4fc01daae5a5 210 * @param __HANDLE__: specifies the DAC handle.
bogdanm 92:4fc01daae5a5 211 * @param __DAC_Channel__: specifies the DAC channel
bogdanm 92:4fc01daae5a5 212 * @retval None
bogdanm 92:4fc01daae5a5 213 */
Kojto 99:dbbf35b96557 214 #define __HAL_DAC_ENABLE(__HANDLE__, __DAC_Channel__) ((__HANDLE__)->Instance->CR |= (DAC_CR_EN1 << (__DAC_Channel__)))
bogdanm 92:4fc01daae5a5 215
bogdanm 92:4fc01daae5a5 216 /** @brief Disable the DAC channel
bogdanm 92:4fc01daae5a5 217 * @param __HANDLE__: specifies the DAC handle
bogdanm 92:4fc01daae5a5 218 * @param __DAC_Channel__: specifies the DAC channel.
bogdanm 92:4fc01daae5a5 219 * @retval None
bogdanm 92:4fc01daae5a5 220 */
Kojto 99:dbbf35b96557 221 #define __HAL_DAC_DISABLE(__HANDLE__, __DAC_Channel__) ((__HANDLE__)->Instance->CR &= ~(DAC_CR_EN1 << (__DAC_Channel__)))
bogdanm 92:4fc01daae5a5 222
bogdanm 92:4fc01daae5a5 223 /** @brief Enable the DAC interrupt
bogdanm 92:4fc01daae5a5 224 * @param __HANDLE__: specifies the DAC handle
bogdanm 92:4fc01daae5a5 225 * @param __INTERRUPT__: specifies the DAC interrupt.
bogdanm 92:4fc01daae5a5 226 * @retval None
bogdanm 92:4fc01daae5a5 227 */
bogdanm 92:4fc01daae5a5 228 #define __HAL_DAC_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) |= (__INTERRUPT__))
bogdanm 92:4fc01daae5a5 229
bogdanm 92:4fc01daae5a5 230 /** @brief Disable the DAC interrupt
bogdanm 92:4fc01daae5a5 231 * @param __HANDLE__: specifies the DAC handle
bogdanm 92:4fc01daae5a5 232 * @param __INTERRUPT__: specifies the DAC interrupt.
bogdanm 92:4fc01daae5a5 233 * @retval None
bogdanm 92:4fc01daae5a5 234 */
bogdanm 92:4fc01daae5a5 235 #define __HAL_DAC_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) &= ~(__INTERRUPT__))
bogdanm 92:4fc01daae5a5 236
Kojto 99:dbbf35b96557 237 /** @brief Checks if the specified DAC interrupt source is enabled or disabled.
Kojto 99:dbbf35b96557 238 * @param __HANDLE__: DAC handle
Kojto 99:dbbf35b96557 239 * @param __INTERRUPT__: DAC interrupt source to check
Kojto 99:dbbf35b96557 240 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 241 * @arg DAC_IT_DMAUDR1: DAC channel 1 DMA underrun interrupt
Kojto 99:dbbf35b96557 242 * @arg DAC_IT_DMAUDR2: DAC channel 2 DMA underrun interrupt
Kojto 99:dbbf35b96557 243 * @retval State of interruption (SET or RESET)
Kojto 99:dbbf35b96557 244 */
Kojto 99:dbbf35b96557 245 #define __HAL_DAC_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR & (__INTERRUPT__)) == (__INTERRUPT__))
Kojto 99:dbbf35b96557 246
bogdanm 92:4fc01daae5a5 247 /** @brief Get the selected DAC's flag status.
bogdanm 92:4fc01daae5a5 248 * @param __HANDLE__: specifies the DAC handle.
Kojto 99:dbbf35b96557 249 * @param __FLAG__: specifies the flag to clear.
Kojto 99:dbbf35b96557 250 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 251 * @arg DAC_FLAG_DMAUDR1: DMA underrun 1 flag
Kojto 99:dbbf35b96557 252 * @arg DAC_FLAG_DMAUDR2: DMA underrun 2 flag
bogdanm 92:4fc01daae5a5 253 * @retval None
bogdanm 92:4fc01daae5a5 254 */
bogdanm 92:4fc01daae5a5 255 #define __HAL_DAC_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
bogdanm 92:4fc01daae5a5 256
bogdanm 92:4fc01daae5a5 257 /** @brief Clear the DAC's flag.
bogdanm 92:4fc01daae5a5 258 * @param __HANDLE__: specifies the DAC handle.
Kojto 99:dbbf35b96557 259 * @param __FLAG__: specifies the flag to clear.
Kojto 99:dbbf35b96557 260 * This parameter can be any combination of the following values:
Kojto 99:dbbf35b96557 261 * @arg DAC_FLAG_DMAUDR1: DMA underrun 1 flag
Kojto 99:dbbf35b96557 262 * @arg DAC_FLAG_DMAUDR2: DMA underrun 2 flag
bogdanm 92:4fc01daae5a5 263 * @retval None
bogdanm 92:4fc01daae5a5 264 */
bogdanm 92:4fc01daae5a5 265 #define __HAL_DAC_CLEAR_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR) = (__FLAG__))
Kojto 99:dbbf35b96557 266 /**
Kojto 99:dbbf35b96557 267 * @}
Kojto 99:dbbf35b96557 268 */
bogdanm 92:4fc01daae5a5 269
bogdanm 92:4fc01daae5a5 270 /* Include DAC HAL Extension module */
bogdanm 92:4fc01daae5a5 271 #include "stm32f4xx_hal_dac_ex.h"
bogdanm 92:4fc01daae5a5 272
bogdanm 92:4fc01daae5a5 273 /* Exported functions --------------------------------------------------------*/
Kojto 99:dbbf35b96557 274 /** @addtogroup DAC_Exported_Functions
Kojto 99:dbbf35b96557 275 * @{
Kojto 99:dbbf35b96557 276 */
Kojto 99:dbbf35b96557 277
Kojto 99:dbbf35b96557 278 /** @addtogroup DAC_Exported_Functions_Group1
Kojto 99:dbbf35b96557 279 * @{
Kojto 99:dbbf35b96557 280 */
bogdanm 92:4fc01daae5a5 281 /* Initialization/de-initialization functions *********************************/
bogdanm 92:4fc01daae5a5 282 HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 283 HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 284 void HAL_DAC_MspInit(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 285 void HAL_DAC_MspDeInit(DAC_HandleTypeDef* hdac);
Kojto 99:dbbf35b96557 286 /**
Kojto 99:dbbf35b96557 287 * @}
Kojto 99:dbbf35b96557 288 */
bogdanm 92:4fc01daae5a5 289
Kojto 99:dbbf35b96557 290 /** @addtogroup DAC_Exported_Functions_Group2
Kojto 99:dbbf35b96557 291 * @{
Kojto 99:dbbf35b96557 292 */
bogdanm 92:4fc01daae5a5 293 /* I/O operation functions ****************************************************/
bogdanm 92:4fc01daae5a5 294 HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef* hdac, uint32_t Channel);
bogdanm 92:4fc01daae5a5 295 HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef* hdac, uint32_t Channel);
bogdanm 92:4fc01daae5a5 296 HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t* pData, uint32_t Length, uint32_t Alignment);
bogdanm 92:4fc01daae5a5 297 HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel);
bogdanm 92:4fc01daae5a5 298 uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef* hdac, uint32_t Channel);
Kojto 99:dbbf35b96557 299 /**
Kojto 99:dbbf35b96557 300 * @}
Kojto 99:dbbf35b96557 301 */
bogdanm 92:4fc01daae5a5 302
Kojto 99:dbbf35b96557 303 /** @addtogroup DAC_Exported_Functions_Group3
Kojto 99:dbbf35b96557 304 * @{
Kojto 99:dbbf35b96557 305 */
bogdanm 92:4fc01daae5a5 306 /* Peripheral Control functions ***********************************************/
bogdanm 92:4fc01daae5a5 307 HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef* hdac, DAC_ChannelConfTypeDef* sConfig, uint32_t Channel);
bogdanm 92:4fc01daae5a5 308 HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t Alignment, uint32_t Data);
Kojto 99:dbbf35b96557 309 /**
Kojto 99:dbbf35b96557 310 * @}
Kojto 99:dbbf35b96557 311 */
bogdanm 92:4fc01daae5a5 312
Kojto 99:dbbf35b96557 313 /** @addtogroup DAC_Exported_Functions_Group4
Kojto 99:dbbf35b96557 314 * @{
Kojto 99:dbbf35b96557 315 */
bogdanm 92:4fc01daae5a5 316 /* Peripheral State functions *************************************************/
bogdanm 92:4fc01daae5a5 317 HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 318 void HAL_DAC_IRQHandler(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 319 uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *hdac);
bogdanm 92:4fc01daae5a5 320
bogdanm 92:4fc01daae5a5 321 void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 322 void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 323 void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *hdac);
bogdanm 92:4fc01daae5a5 324 void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *hdac);
Kojto 99:dbbf35b96557 325 /**
Kojto 99:dbbf35b96557 326 * @}
Kojto 99:dbbf35b96557 327 */
bogdanm 92:4fc01daae5a5 328
Kojto 99:dbbf35b96557 329 /**
Kojto 99:dbbf35b96557 330 * @}
Kojto 99:dbbf35b96557 331 */
Kojto 99:dbbf35b96557 332 /* Private types -------------------------------------------------------------*/
Kojto 99:dbbf35b96557 333 /* Private variables ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 334 /* Private constants ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 335 /** @defgroup DAC_Private_Constants DAC Private Constants
Kojto 99:dbbf35b96557 336 * @{
Kojto 99:dbbf35b96557 337 */
Kojto 99:dbbf35b96557 338
Kojto 99:dbbf35b96557 339 /**
Kojto 99:dbbf35b96557 340 * @}
Kojto 99:dbbf35b96557 341 */
Kojto 99:dbbf35b96557 342
Kojto 99:dbbf35b96557 343 /* Private macros ------------------------------------------------------------*/
Kojto 99:dbbf35b96557 344 /** @defgroup DAC_Private_Macros DAC Private Macros
Kojto 99:dbbf35b96557 345 * @{
Kojto 99:dbbf35b96557 346 */
Kojto 99:dbbf35b96557 347 #define IS_DAC_DATA(DATA) ((DATA) <= 0xFFF0)
Kojto 99:dbbf35b96557 348 #define IS_DAC_ALIGN(ALIGN) (((ALIGN) == DAC_ALIGN_12B_R) || \
Kojto 99:dbbf35b96557 349 ((ALIGN) == DAC_ALIGN_12B_L) || \
Kojto 99:dbbf35b96557 350 ((ALIGN) == DAC_ALIGN_8B_R))
Kojto 99:dbbf35b96557 351 #define IS_DAC_CHANNEL(CHANNEL) (((CHANNEL) == DAC_CHANNEL_1) || \
Kojto 99:dbbf35b96557 352 ((CHANNEL) == DAC_CHANNEL_2))
Kojto 99:dbbf35b96557 353 #define IS_DAC_OUTPUT_BUFFER_STATE(STATE) (((STATE) == DAC_OUTPUTBUFFER_ENABLE) || \
Kojto 99:dbbf35b96557 354 ((STATE) == DAC_OUTPUTBUFFER_DISABLE))
Kojto 99:dbbf35b96557 355
Kojto 99:dbbf35b96557 356 #define IS_DAC_TRIGGER(TRIGGER) (((TRIGGER) == DAC_TRIGGER_NONE) || \
Kojto 99:dbbf35b96557 357 ((TRIGGER) == DAC_TRIGGER_T2_TRGO) || \
Kojto 99:dbbf35b96557 358 ((TRIGGER) == DAC_TRIGGER_T8_TRGO) || \
Kojto 99:dbbf35b96557 359 ((TRIGGER) == DAC_TRIGGER_T7_TRGO) || \
Kojto 99:dbbf35b96557 360 ((TRIGGER) == DAC_TRIGGER_T5_TRGO) || \
Kojto 99:dbbf35b96557 361 ((TRIGGER) == DAC_TRIGGER_T6_TRGO) || \
Kojto 99:dbbf35b96557 362 ((TRIGGER) == DAC_TRIGGER_T4_TRGO) || \
Kojto 99:dbbf35b96557 363 ((TRIGGER) == DAC_TRIGGER_EXT_IT9) || \
Kojto 99:dbbf35b96557 364 ((TRIGGER) == DAC_TRIGGER_SOFTWARE))
Kojto 99:dbbf35b96557 365
Kojto 99:dbbf35b96557 366 /** @brief Set DHR12R1 alignment
Kojto 99:dbbf35b96557 367 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 99:dbbf35b96557 368 * @retval None
Kojto 99:dbbf35b96557 369 */
Kojto 99:dbbf35b96557 370 #define DAC_DHR12R1_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000008) + (__ALIGNMENT__))
Kojto 99:dbbf35b96557 371
Kojto 99:dbbf35b96557 372 /** @brief Set DHR12R2 alignment
Kojto 99:dbbf35b96557 373 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 99:dbbf35b96557 374 * @retval None
Kojto 99:dbbf35b96557 375 */
Kojto 99:dbbf35b96557 376 #define DAC_DHR12R2_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000014) + (__ALIGNMENT__))
Kojto 99:dbbf35b96557 377
Kojto 99:dbbf35b96557 378 /** @brief Set DHR12RD alignment
Kojto 99:dbbf35b96557 379 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 99:dbbf35b96557 380 * @retval None
Kojto 99:dbbf35b96557 381 */
Kojto 99:dbbf35b96557 382 #define DAC_DHR12RD_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000020) + (__ALIGNMENT__))
Kojto 99:dbbf35b96557 383
Kojto 99:dbbf35b96557 384 /**
Kojto 99:dbbf35b96557 385 * @}
Kojto 99:dbbf35b96557 386 */
Kojto 99:dbbf35b96557 387
Kojto 99:dbbf35b96557 388 /* Private functions ---------------------------------------------------------*/
Kojto 99:dbbf35b96557 389 /** @defgroup DAC_Private_Functions DAC Private Functions
Kojto 99:dbbf35b96557 390 * @{
Kojto 99:dbbf35b96557 391 */
Kojto 99:dbbf35b96557 392 /**
Kojto 99:dbbf35b96557 393 * @}
Kojto 99:dbbf35b96557 394 */
Kojto 99:dbbf35b96557 395 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
Kojto 99:dbbf35b96557 396 STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||\
Kojto 110:165afa46840b 397 STM32F410xx || STM32F446xx || STM32F469xx || STM32F479xx */
bogdanm 92:4fc01daae5a5 398
bogdanm 92:4fc01daae5a5 399 /**
bogdanm 92:4fc01daae5a5 400 * @}
bogdanm 92:4fc01daae5a5 401 */
bogdanm 92:4fc01daae5a5 402
bogdanm 92:4fc01daae5a5 403 /**
bogdanm 92:4fc01daae5a5 404 * @}
bogdanm 92:4fc01daae5a5 405 */
bogdanm 92:4fc01daae5a5 406
bogdanm 92:4fc01daae5a5 407 #ifdef __cplusplus
bogdanm 92:4fc01daae5a5 408 }
bogdanm 92:4fc01daae5a5 409 #endif
bogdanm 92:4fc01daae5a5 410
bogdanm 92:4fc01daae5a5 411 #endif /*__STM32F4xx_HAL_DAC_H */
bogdanm 92:4fc01daae5a5 412
bogdanm 92:4fc01daae5a5 413 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/