.

Dependents:   RTC

Committer:
jhon309
Date:
Thu Aug 13 00:20:09 2015 +0000
Revision:
0:88e313c910d0
RTC Example

Who changed what in which revision?

UserRevisionLine numberNew contents of line
jhon309 0:88e313c910d0 1 /**
jhon309 0:88e313c910d0 2 ******************************************************************************
jhon309 0:88e313c910d0 3 * @file stm32f0xx_hal_dac.h
jhon309 0:88e313c910d0 4 * @author MCD Application Team
jhon309 0:88e313c910d0 5 * @version V1.2.0
jhon309 0:88e313c910d0 6 * @date 11-December-2014
jhon309 0:88e313c910d0 7 * @brief Header file of DAC HAL module.
jhon309 0:88e313c910d0 8 ******************************************************************************
jhon309 0:88e313c910d0 9 * @attention
jhon309 0:88e313c910d0 10 *
jhon309 0:88e313c910d0 11 * <h2><center>&copy; COPYRIGHT(c) 2014 STMicroelectronics</center></h2>
jhon309 0:88e313c910d0 12 *
jhon309 0:88e313c910d0 13 * Redistribution and use in source and binary forms, with or without modification,
jhon309 0:88e313c910d0 14 * are permitted provided that the following conditions are met:
jhon309 0:88e313c910d0 15 * 1. Redistributions of source code must retain the above copyright notice,
jhon309 0:88e313c910d0 16 * this list of conditions and the following disclaimer.
jhon309 0:88e313c910d0 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
jhon309 0:88e313c910d0 18 * this list of conditions and the following disclaimer in the documentation
jhon309 0:88e313c910d0 19 * and/or other materials provided with the distribution.
jhon309 0:88e313c910d0 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
jhon309 0:88e313c910d0 21 * may be used to endorse or promote products derived from this software
jhon309 0:88e313c910d0 22 * without specific prior written permission.
jhon309 0:88e313c910d0 23 *
jhon309 0:88e313c910d0 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
jhon309 0:88e313c910d0 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
jhon309 0:88e313c910d0 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
jhon309 0:88e313c910d0 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
jhon309 0:88e313c910d0 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
jhon309 0:88e313c910d0 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
jhon309 0:88e313c910d0 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
jhon309 0:88e313c910d0 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
jhon309 0:88e313c910d0 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
jhon309 0:88e313c910d0 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
jhon309 0:88e313c910d0 34 *
jhon309 0:88e313c910d0 35 ******************************************************************************
jhon309 0:88e313c910d0 36 */
jhon309 0:88e313c910d0 37
jhon309 0:88e313c910d0 38 /* Define to prevent recursive inclusion -------------------------------------*/
jhon309 0:88e313c910d0 39 #ifndef __STM32F0xx_HAL_DAC_H
jhon309 0:88e313c910d0 40 #define __STM32F0xx_HAL_DAC_H
jhon309 0:88e313c910d0 41
jhon309 0:88e313c910d0 42 #ifdef __cplusplus
jhon309 0:88e313c910d0 43 extern "C" {
jhon309 0:88e313c910d0 44 #endif
jhon309 0:88e313c910d0 45
jhon309 0:88e313c910d0 46 #if defined(STM32F051x8) || defined(STM32F058xx) || \
jhon309 0:88e313c910d0 47 defined(STM32F071xB) || defined(STM32F072xB) || defined(STM32F078xx) || \
jhon309 0:88e313c910d0 48 defined(STM32F091xC) || defined(STM32F098xx)
jhon309 0:88e313c910d0 49
jhon309 0:88e313c910d0 50 /* Includes ------------------------------------------------------------------*/
jhon309 0:88e313c910d0 51 #include "stm32f0xx_hal_def.h"
jhon309 0:88e313c910d0 52
jhon309 0:88e313c910d0 53 /** @addtogroup STM32F0xx_HAL_Driver
jhon309 0:88e313c910d0 54 * @{
jhon309 0:88e313c910d0 55 */
jhon309 0:88e313c910d0 56
jhon309 0:88e313c910d0 57 /** @addtogroup DAC
jhon309 0:88e313c910d0 58 * @{
jhon309 0:88e313c910d0 59 */
jhon309 0:88e313c910d0 60
jhon309 0:88e313c910d0 61 /* Exported types ------------------------------------------------------------*/
jhon309 0:88e313c910d0 62
jhon309 0:88e313c910d0 63 /** @defgroup DAC_Exported_Types DAC Exported Types
jhon309 0:88e313c910d0 64 * @{
jhon309 0:88e313c910d0 65 */
jhon309 0:88e313c910d0 66
jhon309 0:88e313c910d0 67 /**
jhon309 0:88e313c910d0 68 * @brief HAL State structures definition
jhon309 0:88e313c910d0 69 */
jhon309 0:88e313c910d0 70 typedef enum
jhon309 0:88e313c910d0 71 {
jhon309 0:88e313c910d0 72 HAL_DAC_STATE_RESET = 0x00, /*!< DAC not yet initialized or disabled */
jhon309 0:88e313c910d0 73 HAL_DAC_STATE_READY = 0x01, /*!< DAC initialized and ready for use */
jhon309 0:88e313c910d0 74 HAL_DAC_STATE_BUSY = 0x02, /*!< DAC internal processing is ongoing */
jhon309 0:88e313c910d0 75 HAL_DAC_STATE_TIMEOUT = 0x03, /*!< DAC timeout state */
jhon309 0:88e313c910d0 76 HAL_DAC_STATE_ERROR = 0x04 /*!< DAC error state */
jhon309 0:88e313c910d0 77
jhon309 0:88e313c910d0 78 }HAL_DAC_StateTypeDef;
jhon309 0:88e313c910d0 79
jhon309 0:88e313c910d0 80 /**
jhon309 0:88e313c910d0 81 * @brief DAC handle Structure definition
jhon309 0:88e313c910d0 82 */
jhon309 0:88e313c910d0 83 typedef struct
jhon309 0:88e313c910d0 84 {
jhon309 0:88e313c910d0 85 DAC_TypeDef *Instance; /*!< Register base address */
jhon309 0:88e313c910d0 86
jhon309 0:88e313c910d0 87 __IO HAL_DAC_StateTypeDef State; /*!< DAC communication state */
jhon309 0:88e313c910d0 88
jhon309 0:88e313c910d0 89 HAL_LockTypeDef Lock; /*!< DAC locking object */
jhon309 0:88e313c910d0 90
jhon309 0:88e313c910d0 91 DMA_HandleTypeDef *DMA_Handle1; /*!< Pointer DMA handler for channel 1 */
jhon309 0:88e313c910d0 92
jhon309 0:88e313c910d0 93 DMA_HandleTypeDef *DMA_Handle2; /*!< Pointer DMA handler for channel 2 */
jhon309 0:88e313c910d0 94
jhon309 0:88e313c910d0 95 __IO uint32_t ErrorCode; /*!< DAC Error code */
jhon309 0:88e313c910d0 96
jhon309 0:88e313c910d0 97 }DAC_HandleTypeDef;
jhon309 0:88e313c910d0 98
jhon309 0:88e313c910d0 99 /**
jhon309 0:88e313c910d0 100 * @brief DAC Configuration regular Channel structure definition
jhon309 0:88e313c910d0 101 */
jhon309 0:88e313c910d0 102 typedef struct
jhon309 0:88e313c910d0 103 {
jhon309 0:88e313c910d0 104 uint32_t DAC_Trigger; /*!< Specifies the external trigger for the selected DAC channel.
jhon309 0:88e313c910d0 105 This parameter can be a value of @ref DAC_trigger_selection */
jhon309 0:88e313c910d0 106
jhon309 0:88e313c910d0 107 uint32_t DAC_OutputBuffer; /*!< Specifies whether the DAC channel output buffer is enabled or disabled.
jhon309 0:88e313c910d0 108 This parameter can be a value of @ref DAC_output_buffer */
jhon309 0:88e313c910d0 109
jhon309 0:88e313c910d0 110 }DAC_ChannelConfTypeDef;
jhon309 0:88e313c910d0 111
jhon309 0:88e313c910d0 112 /**
jhon309 0:88e313c910d0 113 * @}
jhon309 0:88e313c910d0 114 */
jhon309 0:88e313c910d0 115
jhon309 0:88e313c910d0 116 /* Exported constants --------------------------------------------------------*/
jhon309 0:88e313c910d0 117
jhon309 0:88e313c910d0 118 /** @defgroup DAC_Exported_Constants DAC Exported Constants
jhon309 0:88e313c910d0 119 * @{
jhon309 0:88e313c910d0 120 */
jhon309 0:88e313c910d0 121
jhon309 0:88e313c910d0 122 /** @defgroup DAC_Error_Code DAC Error Code
jhon309 0:88e313c910d0 123 * @{
jhon309 0:88e313c910d0 124 */
jhon309 0:88e313c910d0 125 #define HAL_DAC_ERROR_NONE 0x00 /*!< No error */
jhon309 0:88e313c910d0 126 #define HAL_DAC_ERROR_DMAUNDERRUNCH1 0x01 /*!< DAC channel1 DAM underrun error */
jhon309 0:88e313c910d0 127 #define HAL_DAC_ERROR_DMAUNDERRUNCH2 0x02 /*!< DAC channel2 DAM underrun error */
jhon309 0:88e313c910d0 128 #define HAL_DAC_ERROR_DMA 0x04 /*!< DMA error */
jhon309 0:88e313c910d0 129 /**
jhon309 0:88e313c910d0 130 * @}
jhon309 0:88e313c910d0 131 */
jhon309 0:88e313c910d0 132
jhon309 0:88e313c910d0 133 /** @defgroup DAC_output_buffer DAC output buffer
jhon309 0:88e313c910d0 134 * @{
jhon309 0:88e313c910d0 135 */
jhon309 0:88e313c910d0 136 #define DAC_OUTPUTBUFFER_ENABLE ((uint32_t)0x00000000)
jhon309 0:88e313c910d0 137 #define DAC_OUTPUTBUFFER_DISABLE ((uint32_t)DAC_CR_BOFF1)
jhon309 0:88e313c910d0 138
jhon309 0:88e313c910d0 139 #define IS_DAC_OUTPUT_BUFFER_STATE(STATE) (((STATE) == DAC_OUTPUTBUFFER_ENABLE) || \
jhon309 0:88e313c910d0 140 ((STATE) == DAC_OUTPUTBUFFER_DISABLE))
jhon309 0:88e313c910d0 141 /**
jhon309 0:88e313c910d0 142 * @}
jhon309 0:88e313c910d0 143 */
jhon309 0:88e313c910d0 144
jhon309 0:88e313c910d0 145 /** @defgroup DAC_data_alignement DAC data alignement
jhon309 0:88e313c910d0 146 * @{
jhon309 0:88e313c910d0 147 */
jhon309 0:88e313c910d0 148 #define DAC_ALIGN_12B_R ((uint32_t)0x00000000)
jhon309 0:88e313c910d0 149 #define DAC_ALIGN_12B_L ((uint32_t)0x00000004)
jhon309 0:88e313c910d0 150 #define DAC_ALIGN_8B_R ((uint32_t)0x00000008)
jhon309 0:88e313c910d0 151
jhon309 0:88e313c910d0 152 #define IS_DAC_ALIGN(ALIGN) (((ALIGN) == DAC_ALIGN_12B_R) || \
jhon309 0:88e313c910d0 153 ((ALIGN) == DAC_ALIGN_12B_L) || \
jhon309 0:88e313c910d0 154 ((ALIGN) == DAC_ALIGN_8B_R))
jhon309 0:88e313c910d0 155 /**
jhon309 0:88e313c910d0 156 * @}
jhon309 0:88e313c910d0 157 */
jhon309 0:88e313c910d0 158
jhon309 0:88e313c910d0 159 /** @defgroup DAC_data DAC data
jhon309 0:88e313c910d0 160 * @{
jhon309 0:88e313c910d0 161 */
jhon309 0:88e313c910d0 162 #define IS_DAC_DATA(DATA) ((DATA) <= 0xFFF0)
jhon309 0:88e313c910d0 163 /**
jhon309 0:88e313c910d0 164 * @}
jhon309 0:88e313c910d0 165 */
jhon309 0:88e313c910d0 166
jhon309 0:88e313c910d0 167 /** @defgroup DAC_flags_definition DAC flags definition
jhon309 0:88e313c910d0 168 * @{
jhon309 0:88e313c910d0 169 */
jhon309 0:88e313c910d0 170 #define DAC_FLAG_DMAUDR1 ((uint32_t)DAC_SR_DMAUDR1)
jhon309 0:88e313c910d0 171 #define DAC_FLAG_DMAUDR2 ((uint32_t)DAC_SR_DMAUDR2)
jhon309 0:88e313c910d0 172 /**
jhon309 0:88e313c910d0 173 * @}
jhon309 0:88e313c910d0 174 */
jhon309 0:88e313c910d0 175
jhon309 0:88e313c910d0 176 /** @defgroup DAC_IT_definition DAC IT definition
jhon309 0:88e313c910d0 177 * @{
jhon309 0:88e313c910d0 178 */
jhon309 0:88e313c910d0 179 #define DAC_IT_DMAUDR1 ((uint32_t)DAC_SR_DMAUDR1)
jhon309 0:88e313c910d0 180 #define DAC_IT_DMAUDR2 ((uint32_t)DAC_SR_DMAUDR2)
jhon309 0:88e313c910d0 181 /**
jhon309 0:88e313c910d0 182 * @}
jhon309 0:88e313c910d0 183 */
jhon309 0:88e313c910d0 184
jhon309 0:88e313c910d0 185 /**
jhon309 0:88e313c910d0 186 * @}
jhon309 0:88e313c910d0 187 */
jhon309 0:88e313c910d0 188
jhon309 0:88e313c910d0 189 /* Exported macro ------------------------------------------------------------*/
jhon309 0:88e313c910d0 190
jhon309 0:88e313c910d0 191 /** @defgroup DAC_Exported_Macros DAC Exported Macros
jhon309 0:88e313c910d0 192 * @{
jhon309 0:88e313c910d0 193 */
jhon309 0:88e313c910d0 194
jhon309 0:88e313c910d0 195 /** @brief Reset DAC handle state
jhon309 0:88e313c910d0 196 * @param __HANDLE__: specifies the DAC handle.
jhon309 0:88e313c910d0 197 * @retval None
jhon309 0:88e313c910d0 198 */
jhon309 0:88e313c910d0 199 #define __HAL_DAC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DAC_STATE_RESET)
jhon309 0:88e313c910d0 200
jhon309 0:88e313c910d0 201 /** @brief Enable the DAC channel
jhon309 0:88e313c910d0 202 * @param __HANDLE__: specifies the DAC handle.
jhon309 0:88e313c910d0 203 * @param __DAC_Channel__: specifies the DAC channel
jhon309 0:88e313c910d0 204 * @retval None
jhon309 0:88e313c910d0 205 */
jhon309 0:88e313c910d0 206 #define __HAL_DAC_ENABLE(__HANDLE__, __DAC_Channel__) \
jhon309 0:88e313c910d0 207 ((__HANDLE__)->Instance->CR |= (DAC_CR_EN1 << (__DAC_Channel__)))
jhon309 0:88e313c910d0 208
jhon309 0:88e313c910d0 209 /** @brief Disable the DAC channel
jhon309 0:88e313c910d0 210 * @param __HANDLE__: specifies the DAC handle
jhon309 0:88e313c910d0 211 * @param __DAC_Channel__: specifies the DAC channel.
jhon309 0:88e313c910d0 212 * @retval None
jhon309 0:88e313c910d0 213 */
jhon309 0:88e313c910d0 214 #define __HAL_DAC_DISABLE(__HANDLE__, __DAC_Channel__) \
jhon309 0:88e313c910d0 215 ((__HANDLE__)->Instance->CR &= ~(DAC_CR_EN1 << (__DAC_Channel__)))
jhon309 0:88e313c910d0 216
jhon309 0:88e313c910d0 217 /** @brief Set DHR12R1 alignment
jhon309 0:88e313c910d0 218 * @param __ALIGNEMENT__: specifies the DAC alignement
jhon309 0:88e313c910d0 219 * @retval None
jhon309 0:88e313c910d0 220 */
jhon309 0:88e313c910d0 221 #define __HAL_DHR12R1_ALIGNEMENT(__ALIGNEMENT__) (((uint32_t)0x00000008) + (__ALIGNEMENT__))
jhon309 0:88e313c910d0 222
jhon309 0:88e313c910d0 223 /** @brief Set DHR12R2 alignment
jhon309 0:88e313c910d0 224 * @param __ALIGNEMENT__: specifies the DAC alignement
jhon309 0:88e313c910d0 225 * @retval None
jhon309 0:88e313c910d0 226 */
jhon309 0:88e313c910d0 227 #define __HAL_DHR12R2_ALIGNEMENT(__ALIGNEMENT__) (((uint32_t)0x00000014) + (__ALIGNEMENT__))
jhon309 0:88e313c910d0 228
jhon309 0:88e313c910d0 229 /** @brief Set DHR12RD alignment
jhon309 0:88e313c910d0 230 * @param __ALIGNEMENT__: specifies the DAC alignement
jhon309 0:88e313c910d0 231 * @retval None
jhon309 0:88e313c910d0 232 */
jhon309 0:88e313c910d0 233 #define __HAL_DHR12RD_ALIGNEMENT(__ALIGNEMENT__) (((uint32_t)0x00000020) + (__ALIGNEMENT__))
jhon309 0:88e313c910d0 234
jhon309 0:88e313c910d0 235 /** @brief Enable the DAC interrupt
jhon309 0:88e313c910d0 236 * @param __HANDLE__: specifies the DAC handle
jhon309 0:88e313c910d0 237 * @param __INTERRUPT__: specifies the DAC interrupt.
jhon309 0:88e313c910d0 238 * @retval None
jhon309 0:88e313c910d0 239 */
jhon309 0:88e313c910d0 240 #define __HAL_DAC_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) |= (__INTERRUPT__))
jhon309 0:88e313c910d0 241
jhon309 0:88e313c910d0 242 /** @brief Disable the DAC interrupt
jhon309 0:88e313c910d0 243 * @param __HANDLE__: specifies the DAC handle
jhon309 0:88e313c910d0 244 * @param __INTERRUPT__: specifies the DAC interrupt.
jhon309 0:88e313c910d0 245 * @retval None
jhon309 0:88e313c910d0 246 */
jhon309 0:88e313c910d0 247 #define __HAL_DAC_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) &= ~(__INTERRUPT__))
jhon309 0:88e313c910d0 248
jhon309 0:88e313c910d0 249 /** @brief Get the selected DAC's flag status.
jhon309 0:88e313c910d0 250 * @param __HANDLE__: specifies the DAC handle.
jhon309 0:88e313c910d0 251 * @param __FLAG__: specifies the FLAG.
jhon309 0:88e313c910d0 252 * @retval None
jhon309 0:88e313c910d0 253 */
jhon309 0:88e313c910d0 254 #define __HAL_DAC_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
jhon309 0:88e313c910d0 255
jhon309 0:88e313c910d0 256 /** @brief Clear the DAC's flag.
jhon309 0:88e313c910d0 257 * @param __HANDLE__: specifies the DAC handle.
jhon309 0:88e313c910d0 258 * @param __FLAG__: specifies the FLAG.
jhon309 0:88e313c910d0 259 * @retval None
jhon309 0:88e313c910d0 260 */
jhon309 0:88e313c910d0 261 #define __HAL_DAC_CLEAR_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR) = (__FLAG__))
jhon309 0:88e313c910d0 262
jhon309 0:88e313c910d0 263 /**
jhon309 0:88e313c910d0 264 * @}
jhon309 0:88e313c910d0 265 */
jhon309 0:88e313c910d0 266
jhon309 0:88e313c910d0 267
jhon309 0:88e313c910d0 268 /* Include DAC HAL Extension module */
jhon309 0:88e313c910d0 269 #include "stm32f0xx_hal_dac_ex.h"
jhon309 0:88e313c910d0 270
jhon309 0:88e313c910d0 271 /* Exported functions --------------------------------------------------------*/
jhon309 0:88e313c910d0 272
jhon309 0:88e313c910d0 273 /** @addtogroup DAC_Exported_Functions
jhon309 0:88e313c910d0 274 * @{
jhon309 0:88e313c910d0 275 */
jhon309 0:88e313c910d0 276
jhon309 0:88e313c910d0 277 /** @addtogroup DAC_Exported_Functions_Group1
jhon309 0:88e313c910d0 278 * @{
jhon309 0:88e313c910d0 279 */
jhon309 0:88e313c910d0 280 /* Initialization and de-initialization functions *****************************/
jhon309 0:88e313c910d0 281 HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 282 HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 283 void HAL_DAC_MspInit(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 284 void HAL_DAC_MspDeInit(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 285
jhon309 0:88e313c910d0 286 /**
jhon309 0:88e313c910d0 287 * @}
jhon309 0:88e313c910d0 288 */
jhon309 0:88e313c910d0 289
jhon309 0:88e313c910d0 290 /** @addtogroup DAC_Exported_Functions_Group2
jhon309 0:88e313c910d0 291 * @{
jhon309 0:88e313c910d0 292 */
jhon309 0:88e313c910d0 293 /* IO operation functions *****************************************************/
jhon309 0:88e313c910d0 294 HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef* hdac, uint32_t Channel);
jhon309 0:88e313c910d0 295 HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef* hdac, uint32_t Channel);
jhon309 0:88e313c910d0 296 HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t* pData, uint32_t Length, uint32_t Alignment);
jhon309 0:88e313c910d0 297 HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel);
jhon309 0:88e313c910d0 298
jhon309 0:88e313c910d0 299 void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 300 void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 301 void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *hdac);
jhon309 0:88e313c910d0 302 void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *hdac);
jhon309 0:88e313c910d0 303 /**
jhon309 0:88e313c910d0 304 * @}
jhon309 0:88e313c910d0 305 */
jhon309 0:88e313c910d0 306
jhon309 0:88e313c910d0 307 /** @addtogroup DAC_Exported_Functions_Group3
jhon309 0:88e313c910d0 308 * @{
jhon309 0:88e313c910d0 309 */
jhon309 0:88e313c910d0 310 /* Peripheral Control functions ***********************************************/
jhon309 0:88e313c910d0 311 HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef* hdac, DAC_ChannelConfTypeDef* sConfig, uint32_t Channel);
jhon309 0:88e313c910d0 312 HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t Alignment, uint32_t Data);
jhon309 0:88e313c910d0 313 uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef* hdac, uint32_t Channel);
jhon309 0:88e313c910d0 314 /**
jhon309 0:88e313c910d0 315 * @}
jhon309 0:88e313c910d0 316 */
jhon309 0:88e313c910d0 317
jhon309 0:88e313c910d0 318 /** @addtogroup DAC_Exported_Functions_Group4
jhon309 0:88e313c910d0 319 * @{
jhon309 0:88e313c910d0 320 */
jhon309 0:88e313c910d0 321 /* Peripheral State and Error functions ***************************************/
jhon309 0:88e313c910d0 322 HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 323 void HAL_DAC_IRQHandler(DAC_HandleTypeDef* hdac);
jhon309 0:88e313c910d0 324 uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *hdac);
jhon309 0:88e313c910d0 325
jhon309 0:88e313c910d0 326 /**
jhon309 0:88e313c910d0 327 * @}
jhon309 0:88e313c910d0 328 */
jhon309 0:88e313c910d0 329
jhon309 0:88e313c910d0 330 /**
jhon309 0:88e313c910d0 331 * @}
jhon309 0:88e313c910d0 332 */
jhon309 0:88e313c910d0 333
jhon309 0:88e313c910d0 334 /**
jhon309 0:88e313c910d0 335 * @}
jhon309 0:88e313c910d0 336 */
jhon309 0:88e313c910d0 337
jhon309 0:88e313c910d0 338 /**
jhon309 0:88e313c910d0 339 * @}
jhon309 0:88e313c910d0 340 */
jhon309 0:88e313c910d0 341
jhon309 0:88e313c910d0 342 #endif /* STM32F051x8 || STM32F058xx || */
jhon309 0:88e313c910d0 343 /* STM32F071xB || STM32F072xB || STM32F078xx || */
jhon309 0:88e313c910d0 344 /* STM32F091xC || STM32F098xx */
jhon309 0:88e313c910d0 345
jhon309 0:88e313c910d0 346 #ifdef __cplusplus
jhon309 0:88e313c910d0 347 }
jhon309 0:88e313c910d0 348 #endif
jhon309 0:88e313c910d0 349
jhon309 0:88e313c910d0 350
jhon309 0:88e313c910d0 351 #endif /*__STM32F0xx_HAL_DAC_H */
jhon309 0:88e313c910d0 352
jhon309 0:88e313c910d0 353 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
jhon309 0:88e313c910d0 354