DHT11

Committer:
jhon309
Date:
Thu Aug 13 00:21:57 2015 +0000
Revision:
0:c52df770855b
DHT11

Who changed what in which revision?

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