I2C_EEPROM

Committer:
jhon309
Date:
Thu Aug 13 00:23:16 2015 +0000
Revision:
0:ac8863619623
I2C

Who changed what in which revision?

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