The official Mbed 2 C/C++ SDK provides the software platform and libraries to build your applications.

Dependents:   hello SerialTestv11 SerialTestv12 Sierpinski ... more

mbed 2

This is the mbed 2 library. If you'd like to learn about Mbed OS please see the mbed-os docs.

Committer:
Kojto
Date:
Thu Jul 07 14:34:11 2016 +0100
Revision:
122:f9eeca106725
Parent:
92:4fc01daae5a5
Child:
123:b0220dba8be7
Release 122 of the mbed library

Changes:
- new targets - Nucleo L432KC, Beetle, Nucleo F446ZE, Nucleo L011K4
- Thread safety addition - mbed API should contain a statement about thread safety
- critical section API addition
- CAS API (core_util_atomic_incr/decr)
- DEVICE_ are generated from targets.json file, device.h deprecated
- Callback replaces FunctionPointer to provide std like interface
- mbed HAL API docs improvements
- toolchain - prexif attributes with MBED_
- add new attributes - packed, weak, forcedinline, align
- target.json - contains targets definitions
- ST - L1XX - Cube update to 1.5
- SPI clock selection fix (clock from APB domain)
- F7 - Cube update v1.4.0
- L0 - baudrate init fix
- L1 - Cube update v1.5
- F3 - baudrate init fix, 3 targets CAN support
- F4 - Cube update v1.12.0, 3 targets CAN support
- L4XX - Cube update v1.5.1
- F0 - update Cube to v1.5.0
- L4 - 2 targets (L476RG/VG) CAN support
- NXP - pwm clock fix for KSDK2 MCU
- LPC2368 - remove ARM toolchain support - due to regression
- KSDK2 - fix SPI , I2C address and repeat start
- Silabs - some fixes backported from mbed 3
- Renesas - RZ_A1H - SystemCoreClockUpdate addition

Who changed what in which revision?

UserRevisionLine numberNew contents of line
bogdanm 86:04dd9b1680ae 1 /**
bogdanm 86:04dd9b1680ae 2 ******************************************************************************
bogdanm 86:04dd9b1680ae 3 * @file stm32f3xx_hal_dac.h
bogdanm 86:04dd9b1680ae 4 * @author MCD Application Team
Kojto 122:f9eeca106725 5 * @version V1.2.1
Kojto 122:f9eeca106725 6 * @date 29-April-2015
bogdanm 86:04dd9b1680ae 7 * @brief Header file of DAC HAL module.
bogdanm 86:04dd9b1680ae 8 ******************************************************************************
bogdanm 86:04dd9b1680ae 9 * @attention
bogdanm 86:04dd9b1680ae 10 *
Kojto 122:f9eeca106725 11 * <h2><center>&copy; COPYRIGHT(c) 2016 STMicroelectronics</center></h2>
bogdanm 86:04dd9b1680ae 12 *
bogdanm 86:04dd9b1680ae 13 * Redistribution and use in source and binary forms, with or without modification,
bogdanm 86:04dd9b1680ae 14 * are permitted provided that the following conditions are met:
bogdanm 86:04dd9b1680ae 15 * 1. Redistributions of source code must retain the above copyright notice,
bogdanm 86:04dd9b1680ae 16 * this list of conditions and the following disclaimer.
bogdanm 86:04dd9b1680ae 17 * 2. Redistributions in binary form must reproduce the above copyright notice,
bogdanm 86:04dd9b1680ae 18 * this list of conditions and the following disclaimer in the documentation
bogdanm 86:04dd9b1680ae 19 * and/or other materials provided with the distribution.
bogdanm 86:04dd9b1680ae 20 * 3. Neither the name of STMicroelectronics nor the names of its contributors
bogdanm 86:04dd9b1680ae 21 * may be used to endorse or promote products derived from this software
bogdanm 86:04dd9b1680ae 22 * without specific prior written permission.
bogdanm 86:04dd9b1680ae 23 *
bogdanm 86:04dd9b1680ae 24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
bogdanm 86:04dd9b1680ae 25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
bogdanm 86:04dd9b1680ae 26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
bogdanm 86:04dd9b1680ae 27 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
bogdanm 86:04dd9b1680ae 28 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
bogdanm 86:04dd9b1680ae 29 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
bogdanm 86:04dd9b1680ae 30 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
bogdanm 86:04dd9b1680ae 31 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
bogdanm 86:04dd9b1680ae 32 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
bogdanm 86:04dd9b1680ae 33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
bogdanm 86:04dd9b1680ae 34 *
bogdanm 86:04dd9b1680ae 35 ******************************************************************************
bogdanm 86:04dd9b1680ae 36 */
bogdanm 86:04dd9b1680ae 37
bogdanm 86:04dd9b1680ae 38 /* Define to prevent recursive inclusion -------------------------------------*/
bogdanm 86:04dd9b1680ae 39 #ifndef __STM32F3xx_HAL_DAC_H
bogdanm 86:04dd9b1680ae 40 #define __STM32F3xx_HAL_DAC_H
bogdanm 86:04dd9b1680ae 41
bogdanm 86:04dd9b1680ae 42 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 43 extern "C" {
bogdanm 86:04dd9b1680ae 44 #endif
bogdanm 86:04dd9b1680ae 45
bogdanm 86:04dd9b1680ae 46 /* Includes ------------------------------------------------------------------*/
bogdanm 86:04dd9b1680ae 47 #include "stm32f3xx_hal_def.h"
bogdanm 86:04dd9b1680ae 48
bogdanm 86:04dd9b1680ae 49 /** @addtogroup STM32F3xx_HAL_Driver
bogdanm 86:04dd9b1680ae 50 * @{
bogdanm 86:04dd9b1680ae 51 */
bogdanm 86:04dd9b1680ae 52
Kojto 122:f9eeca106725 53 /** @addtogroup DAC
bogdanm 86:04dd9b1680ae 54 * @{
bogdanm 86:04dd9b1680ae 55 */
bogdanm 86:04dd9b1680ae 56
bogdanm 86:04dd9b1680ae 57 /* Exported types ------------------------------------------------------------*/
Kojto 122:f9eeca106725 58
bogdanm 92:4fc01daae5a5 59 /** @defgroup DAC_Exported_Types DAC Exported Types
bogdanm 92:4fc01daae5a5 60 * @{
bogdanm 92:4fc01daae5a5 61 */
bogdanm 86:04dd9b1680ae 62
bogdanm 86:04dd9b1680ae 63 /**
bogdanm 86:04dd9b1680ae 64 * @brief HAL State structures definition
bogdanm 86:04dd9b1680ae 65 */
bogdanm 86:04dd9b1680ae 66 typedef enum
bogdanm 86:04dd9b1680ae 67 {
bogdanm 86:04dd9b1680ae 68 HAL_DAC_STATE_RESET = 0x00, /*!< DAC not yet initialized or disabled */
bogdanm 86:04dd9b1680ae 69 HAL_DAC_STATE_READY = 0x01, /*!< DAC initialized and ready for use */
bogdanm 86:04dd9b1680ae 70 HAL_DAC_STATE_BUSY = 0x02, /*!< DAC internal processing is ongoing */
bogdanm 86:04dd9b1680ae 71 HAL_DAC_STATE_TIMEOUT = 0x03, /*!< DAC timeout state */
bogdanm 86:04dd9b1680ae 72 HAL_DAC_STATE_ERROR = 0x04 /*!< DAC error state */
bogdanm 86:04dd9b1680ae 73
bogdanm 86:04dd9b1680ae 74 }HAL_DAC_StateTypeDef;
bogdanm 86:04dd9b1680ae 75
bogdanm 86:04dd9b1680ae 76 /**
bogdanm 86:04dd9b1680ae 77 * @brief DAC Configuration regular Channel structure definition
bogdanm 86:04dd9b1680ae 78 */
bogdanm 86:04dd9b1680ae 79 typedef struct
bogdanm 86:04dd9b1680ae 80 {
bogdanm 86:04dd9b1680ae 81 uint32_t DAC_Trigger; /*!< Specifies the external trigger for the selected DAC channel.
bogdanm 86:04dd9b1680ae 82 This parameter can be a value of @ref DACEx_trigger_selection */
bogdanm 86:04dd9b1680ae 83
bogdanm 86:04dd9b1680ae 84 uint32_t DAC_OutputBuffer; /*!< Specifies whether the DAC channel output buffer is enabled or disabled.
Kojto 122:f9eeca106725 85 This parameter can be a value of @ref DAC_output_buffer
Kojto 122:f9eeca106725 86 For a given DAC channel, is this paramater applies then DAC_OutputSwitch
Kojto 122:f9eeca106725 87 does not apply */
Kojto 122:f9eeca106725 88
Kojto 122:f9eeca106725 89 uint32_t DAC_OutputSwitch; /*!< Specifies whether the DAC channel output switch is enabled or disabled.
Kojto 122:f9eeca106725 90 This parameter can be a value of @ref DAC_OutputSwitch
Kojto 122:f9eeca106725 91 For a given DAC channel, is this paramater applies then DAC_OutputBuffer
Kojto 122:f9eeca106725 92 does not apply */
bogdanm 86:04dd9b1680ae 93
bogdanm 86:04dd9b1680ae 94 }DAC_ChannelConfTypeDef;
bogdanm 86:04dd9b1680ae 95
bogdanm 86:04dd9b1680ae 96 /**
bogdanm 86:04dd9b1680ae 97 * @brief DAC handle Structure definition
bogdanm 86:04dd9b1680ae 98 */
bogdanm 86:04dd9b1680ae 99 typedef struct __DAC_HandleTypeDef
bogdanm 86:04dd9b1680ae 100 {
bogdanm 86:04dd9b1680ae 101 DAC_TypeDef *Instance; /*!< Register base address */
bogdanm 86:04dd9b1680ae 102
bogdanm 86:04dd9b1680ae 103 __IO HAL_DAC_StateTypeDef State; /*!< DAC communication state */
bogdanm 86:04dd9b1680ae 104
bogdanm 86:04dd9b1680ae 105 HAL_LockTypeDef Lock; /*!< DAC locking object */
bogdanm 86:04dd9b1680ae 106
bogdanm 86:04dd9b1680ae 107 DMA_HandleTypeDef *DMA_Handle1; /*!< Pointer DMA handler for channel 1 */
bogdanm 86:04dd9b1680ae 108
bogdanm 86:04dd9b1680ae 109 DMA_HandleTypeDef *DMA_Handle2; /*!< Pointer DMA handler for channel 2 */
bogdanm 86:04dd9b1680ae 110
bogdanm 86:04dd9b1680ae 111 __IO uint32_t ErrorCode; /*!< DAC Error code */
bogdanm 86:04dd9b1680ae 112
bogdanm 86:04dd9b1680ae 113 }DAC_HandleTypeDef;
bogdanm 92:4fc01daae5a5 114 /**
bogdanm 92:4fc01daae5a5 115 * @}
bogdanm 92:4fc01daae5a5 116 */
bogdanm 86:04dd9b1680ae 117
bogdanm 86:04dd9b1680ae 118 /* Exported constants --------------------------------------------------------*/
Kojto 122:f9eeca106725 119 /** @defgroup DAC_Exported_Constants DAC Exported Constants
bogdanm 92:4fc01daae5a5 120 * @{
bogdanm 92:4fc01daae5a5 121 */
bogdanm 86:04dd9b1680ae 122
bogdanm 92:4fc01daae5a5 123 /** @defgroup DAC_Error_Code DAC Error Code
bogdanm 86:04dd9b1680ae 124 * @{
bogdanm 86:04dd9b1680ae 125 */
bogdanm 86:04dd9b1680ae 126 #define HAL_DAC_ERROR_NONE 0x00 /*!< No error */
bogdanm 86:04dd9b1680ae 127 #define HAL_DAC_ERROR_DMAUNDERRUNCH1 0x01 /*!< DAC channel1 DMA underrun error */
bogdanm 86:04dd9b1680ae 128 #define HAL_DAC_ERROR_DMAUNDERRUNCH2 0x02 /*!< DAC channel2 DMA underrun error */
bogdanm 86:04dd9b1680ae 129 #define HAL_DAC_ERROR_DMA 0x04 /*!< DMA error */
bogdanm 86:04dd9b1680ae 130 /**
bogdanm 86:04dd9b1680ae 131 * @}
bogdanm 86:04dd9b1680ae 132 */
bogdanm 86:04dd9b1680ae 133
bogdanm 92:4fc01daae5a5 134 /** @defgroup DAC_lfsrunmask_triangleamplitude DAC lfsrunmask triangleamplitude
bogdanm 86:04dd9b1680ae 135 * @{
bogdanm 86:04dd9b1680ae 136 */
bogdanm 86:04dd9b1680ae 137 #define DAC_LFSRUNMASK_BIT0 ((uint32_t)0x00000000) /*!< Unmask DAC channel LFSR bit0 for noise wave generation */
bogdanm 86:04dd9b1680ae 138 #define DAC_LFSRUNMASK_BITS1_0 ((uint32_t)DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[1:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 139 #define DAC_LFSRUNMASK_BITS2_0 ((uint32_t)DAC_CR_MAMP1_1) /*!< Unmask DAC channel LFSR bit[2:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 140 #define DAC_LFSRUNMASK_BITS3_0 ((uint32_t)DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0)/*!< Unmask DAC channel LFSR bit[3:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 141 #define DAC_LFSRUNMASK_BITS4_0 ((uint32_t)DAC_CR_MAMP1_2) /*!< Unmask DAC channel LFSR bit[4:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 142 #define DAC_LFSRUNMASK_BITS5_0 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[5:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 143 #define DAC_LFSRUNMASK_BITS6_0 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_1) /*!< Unmask DAC channel LFSR bit[6:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 144 #define DAC_LFSRUNMASK_BITS7_0 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[7:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 145 #define DAC_LFSRUNMASK_BITS8_0 ((uint32_t)DAC_CR_MAMP1_3) /*!< Unmask DAC channel LFSR bit[8:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 146 #define DAC_LFSRUNMASK_BITS9_0 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[9:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 147 #define DAC_LFSRUNMASK_BITS10_0 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_1) /*!< Unmask DAC channel LFSR bit[10:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 148 #define DAC_LFSRUNMASK_BITS11_0 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[11:0] for noise wave generation */
bogdanm 86:04dd9b1680ae 149 #define DAC_TRIANGLEAMPLITUDE_1 ((uint32_t)0x00000000) /*!< Select max triangle amplitude of 1 */
bogdanm 86:04dd9b1680ae 150 #define DAC_TRIANGLEAMPLITUDE_3 ((uint32_t)DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 3 */
bogdanm 86:04dd9b1680ae 151 #define DAC_TRIANGLEAMPLITUDE_7 ((uint32_t)DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 7 */
bogdanm 86:04dd9b1680ae 152 #define DAC_TRIANGLEAMPLITUDE_15 ((uint32_t)DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 15 */
bogdanm 86:04dd9b1680ae 153 #define DAC_TRIANGLEAMPLITUDE_31 ((uint32_t)DAC_CR_MAMP1_2) /*!< Select max triangle amplitude of 31 */
bogdanm 86:04dd9b1680ae 154 #define DAC_TRIANGLEAMPLITUDE_63 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 63 */
bogdanm 86:04dd9b1680ae 155 #define DAC_TRIANGLEAMPLITUDE_127 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 127 */
bogdanm 86:04dd9b1680ae 156 #define DAC_TRIANGLEAMPLITUDE_255 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 255 */
bogdanm 86:04dd9b1680ae 157 #define DAC_TRIANGLEAMPLITUDE_511 ((uint32_t)DAC_CR_MAMP1_3) /*!< Select max triangle amplitude of 511 */
bogdanm 86:04dd9b1680ae 158 #define DAC_TRIANGLEAMPLITUDE_1023 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 1023 */
bogdanm 86:04dd9b1680ae 159 #define DAC_TRIANGLEAMPLITUDE_2047 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 2047 */
bogdanm 86:04dd9b1680ae 160 #define DAC_TRIANGLEAMPLITUDE_4095 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 4095 */
bogdanm 86:04dd9b1680ae 161
Kojto 122:f9eeca106725 162 /**
Kojto 122:f9eeca106725 163 * @}
Kojto 122:f9eeca106725 164 */
Kojto 122:f9eeca106725 165
Kojto 122:f9eeca106725 166 /** @defgroup DAC_output_buffer DAC output buffer
Kojto 122:f9eeca106725 167 * @{
Kojto 122:f9eeca106725 168 */
Kojto 122:f9eeca106725 169 #define DAC_OUTPUTBUFFER_ENABLE ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 170 #define DAC_OUTPUTBUFFER_DISABLE ((uint32_t)DAC_CR_BOFF1)
Kojto 122:f9eeca106725 171
Kojto 122:f9eeca106725 172 /**
Kojto 122:f9eeca106725 173 * @}
Kojto 122:f9eeca106725 174 */
Kojto 122:f9eeca106725 175
Kojto 122:f9eeca106725 176 #if defined(STM32F303x8) || defined(STM32F334x8) || defined(STM32F328xx)
Kojto 122:f9eeca106725 177 /** @defgroup DAC_output_switch DAC output switch
Kojto 122:f9eeca106725 178 * @{
Kojto 122:f9eeca106725 179 */
Kojto 122:f9eeca106725 180 #define DAC_OUTPUTSWITCH_DISABLE ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 181 #define DAC_OUTPUTSWITCH_ENABLE ((uint32_t)DAC_CR_OUTEN1)
Kojto 122:f9eeca106725 182
Kojto 122:f9eeca106725 183 /**
Kojto 122:f9eeca106725 184 * @}
Kojto 122:f9eeca106725 185 */
Kojto 122:f9eeca106725 186
Kojto 122:f9eeca106725 187 #endif /* STM32F303x8 || STM32F334x8 || STM32F328xx || */
Kojto 122:f9eeca106725 188 /** @defgroup DAC_data_alignement DAC data alignement
Kojto 122:f9eeca106725 189 * @{
Kojto 122:f9eeca106725 190 */
Kojto 122:f9eeca106725 191 #define DAC_ALIGN_12B_R ((uint32_t)0x00000000)
Kojto 122:f9eeca106725 192 #define DAC_ALIGN_12B_L ((uint32_t)0x00000004)
Kojto 122:f9eeca106725 193 #define DAC_ALIGN_8B_R ((uint32_t)0x00000008)
Kojto 122:f9eeca106725 194
Kojto 122:f9eeca106725 195 /**
Kojto 122:f9eeca106725 196 * @}
Kojto 122:f9eeca106725 197 */
Kojto 122:f9eeca106725 198
Kojto 122:f9eeca106725 199 /** @defgroup DAC_flags_definition DAC flags definition
Kojto 122:f9eeca106725 200 * @{
Kojto 122:f9eeca106725 201 */
Kojto 122:f9eeca106725 202 #define DAC_FLAG_DMAUDR1 ((uint32_t)DAC_SR_DMAUDR1)
Kojto 122:f9eeca106725 203 #define DAC_FLAG_DMAUDR2 ((uint32_t)DAC_SR_DMAUDR2)
Kojto 122:f9eeca106725 204 /**
Kojto 122:f9eeca106725 205 * @}
Kojto 122:f9eeca106725 206 */
Kojto 122:f9eeca106725 207
Kojto 122:f9eeca106725 208 /** @defgroup DAC_interrupts_definition DAC interrupts definition
Kojto 122:f9eeca106725 209 * @{
Kojto 122:f9eeca106725 210 */
Kojto 122:f9eeca106725 211 #define DAC_IT_DMAUDR1 ((uint32_t)DAC_CR_DMAUDRIE1)
Kojto 122:f9eeca106725 212 #define DAC_IT_DMAUDR2 ((uint32_t)DAC_CR_DMAUDRIE2)
Kojto 122:f9eeca106725 213
Kojto 122:f9eeca106725 214 /**
Kojto 122:f9eeca106725 215 * @}
Kojto 122:f9eeca106725 216 */
Kojto 122:f9eeca106725 217
Kojto 122:f9eeca106725 218 /**
Kojto 122:f9eeca106725 219 * @}
Kojto 122:f9eeca106725 220 */
Kojto 122:f9eeca106725 221
Kojto 122:f9eeca106725 222 /* Exported macro ------------------------------------------------------------*/
Kojto 122:f9eeca106725 223
Kojto 122:f9eeca106725 224 /** @defgroup DAC_Exported_Macros DAC Exported Macros
Kojto 122:f9eeca106725 225 * @{
Kojto 122:f9eeca106725 226 */
Kojto 122:f9eeca106725 227
Kojto 122:f9eeca106725 228 /** @brief Reset DAC handle state
Kojto 122:f9eeca106725 229 * @param __HANDLE__: specifies the DAC handle.
Kojto 122:f9eeca106725 230 * @retval None
Kojto 122:f9eeca106725 231 */
Kojto 122:f9eeca106725 232 #define __HAL_DAC_RESET_HANDLE_STATE(__HANDLE__) ((__HANDLE__)->State = HAL_DAC_STATE_RESET)
Kojto 122:f9eeca106725 233
Kojto 122:f9eeca106725 234 /** @brief Enable the DAC channel
Kojto 122:f9eeca106725 235 * @param __HANDLE__: specifies the DAC handle.
Kojto 122:f9eeca106725 236 * @param __DAC_Channel__: specifies the DAC channel
Kojto 122:f9eeca106725 237 * @retval None
Kojto 122:f9eeca106725 238 */
Kojto 122:f9eeca106725 239 #define __HAL_DAC_ENABLE(__HANDLE__, __DAC_Channel__) \
Kojto 122:f9eeca106725 240 ((__HANDLE__)->Instance->CR |= (DAC_CR_EN1 << (__DAC_Channel__)))
Kojto 122:f9eeca106725 241
Kojto 122:f9eeca106725 242 /** @brief Disable the DAC channel
Kojto 122:f9eeca106725 243 * @param __HANDLE__: specifies the DAC handle
Kojto 122:f9eeca106725 244 * @param __DAC_Channel__: specifies the DAC channel.
Kojto 122:f9eeca106725 245 * @retval None
Kojto 122:f9eeca106725 246 */
Kojto 122:f9eeca106725 247 #define __HAL_DAC_DISABLE(__HANDLE__, __DAC_Channel__) \
Kojto 122:f9eeca106725 248 ((__HANDLE__)->Instance->CR &= ~(DAC_CR_EN1 << (__DAC_Channel__)))
Kojto 122:f9eeca106725 249
Kojto 122:f9eeca106725 250 /** @brief Set DHR12R1 alignment
Kojto 122:f9eeca106725 251 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 122:f9eeca106725 252 * @retval None
Kojto 122:f9eeca106725 253 */
Kojto 122:f9eeca106725 254 #define DAC_DHR12R1_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000008) + (__ALIGNMENT__))
Kojto 122:f9eeca106725 255
Kojto 122:f9eeca106725 256 /** @brief Set DHR12R2 alignment
Kojto 122:f9eeca106725 257 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 122:f9eeca106725 258 * @retval None
Kojto 122:f9eeca106725 259 */
Kojto 122:f9eeca106725 260 #define DAC_DHR12R2_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000014) + (__ALIGNMENT__))
Kojto 122:f9eeca106725 261
Kojto 122:f9eeca106725 262 /** @brief Set DHR12RD alignment
Kojto 122:f9eeca106725 263 * @param __ALIGNMENT__: specifies the DAC alignment
Kojto 122:f9eeca106725 264 * @retval None
Kojto 122:f9eeca106725 265 */
Kojto 122:f9eeca106725 266 #define DAC_DHR12RD_ALIGNMENT(__ALIGNMENT__) (((uint32_t)0x00000020) + (__ALIGNMENT__))
Kojto 122:f9eeca106725 267
Kojto 122:f9eeca106725 268 /** @brief Enable the DAC interrupt
Kojto 122:f9eeca106725 269 * @param __HANDLE__: specifies the DAC handle
Kojto 122:f9eeca106725 270 * @param __INTERRUPT__: specifies the DAC interrupt.
Kojto 122:f9eeca106725 271 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 272 * @arg DAC_IT_DMAUDR1: DAC channel 1 DMA underrun interrupt
Kojto 122:f9eeca106725 273 * @arg DAC_IT_DMAUDR2: DAC channel 2 DMA underrun interrupt
Kojto 122:f9eeca106725 274 * @retval None
Kojto 122:f9eeca106725 275 */
Kojto 122:f9eeca106725 276 #define __HAL_DAC_ENABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) |= (__INTERRUPT__))
Kojto 122:f9eeca106725 277
Kojto 122:f9eeca106725 278 /** @brief Disable the DAC interrupt
Kojto 122:f9eeca106725 279 * @param __HANDLE__: specifies the DAC handle
Kojto 122:f9eeca106725 280 * @param __INTERRUPT__: specifies the DAC interrupt.
Kojto 122:f9eeca106725 281 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 282 * @arg DAC_IT_DMAUDR1: DAC channel 1 DMA underrun interrupt
Kojto 122:f9eeca106725 283 * @arg DAC_IT_DMAUDR2: DAC channel 2 DMA underrun interrupt
Kojto 122:f9eeca106725 284 * @retval None
Kojto 122:f9eeca106725 285 */
Kojto 122:f9eeca106725 286 #define __HAL_DAC_DISABLE_IT(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR) &= ~(__INTERRUPT__))
Kojto 122:f9eeca106725 287
Kojto 122:f9eeca106725 288 /** @brief Check whether the specified DAC interrupt source is enabled or not
Kojto 122:f9eeca106725 289 * @param __HANDLE__: DAC handle
Kojto 122:f9eeca106725 290 * @param __INTERRUPT__: DAC interrupt source to check
Kojto 122:f9eeca106725 291 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 292 * @arg DAC_IT_DMAUDR1: DAC channel 1 DMA underrun interrupt
Kojto 122:f9eeca106725 293 * @arg DAC_IT_DMAUDR2: DAC channel 2 DMA underrun interrupt
Kojto 122:f9eeca106725 294 * @retval State of interruption (SET or RESET)
Kojto 122:f9eeca106725 295 */
Kojto 122:f9eeca106725 296 #define __HAL_DAC_GET_IT_SOURCE(__HANDLE__, __INTERRUPT__) (((__HANDLE__)->Instance->CR & (__INTERRUPT__)) == (__INTERRUPT__))
Kojto 122:f9eeca106725 297
Kojto 122:f9eeca106725 298 /** @brief Get the selected DAC's flag status
Kojto 122:f9eeca106725 299 * @param __HANDLE__: specifies the DAC handle.
Kojto 122:f9eeca106725 300 * @param __FLAG__: specifies the DAC flag to get.
Kojto 122:f9eeca106725 301 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 302 * @arg DAC_FLAG_DMAUDR1: DAC channel 1 DMA underrun flag
Kojto 122:f9eeca106725 303 * @arg DAC_FLAG_DMAUDR2: DAC channel 2 DMA underrun flag
Kojto 122:f9eeca106725 304 * @retval None
Kojto 122:f9eeca106725 305 */
Kojto 122:f9eeca106725 306 #define __HAL_DAC_GET_FLAG(__HANDLE__, __FLAG__) ((((__HANDLE__)->Instance->SR) & (__FLAG__)) == (__FLAG__))
Kojto 122:f9eeca106725 307
Kojto 122:f9eeca106725 308 /** @brief Clear the DAC's flag
Kojto 122:f9eeca106725 309 * @param __HANDLE__: specifies the DAC handle.
Kojto 122:f9eeca106725 310 * @param __FLAG__: specifies the DAC flag to clear.
Kojto 122:f9eeca106725 311 * This parameter can be any combination of the following values:
Kojto 122:f9eeca106725 312 * @arg DAC_FLAG_DMAUDR1: DAC channel 1 DMA underrun flag
Kojto 122:f9eeca106725 313 * @arg DAC_FLAG_DMAUDR2: DAC channel 2 DMA underrun flag
Kojto 122:f9eeca106725 314 * @retval None
Kojto 122:f9eeca106725 315 */
Kojto 122:f9eeca106725 316 #define __HAL_DAC_CLEAR_FLAG(__HANDLE__, __FLAG__) (((__HANDLE__)->Instance->SR) = (__FLAG__))
Kojto 122:f9eeca106725 317
Kojto 122:f9eeca106725 318 /**
Kojto 122:f9eeca106725 319 * @}
Kojto 122:f9eeca106725 320 */
Kojto 122:f9eeca106725 321
Kojto 122:f9eeca106725 322 /* Private macro -------------------------------------------------------------*/
Kojto 122:f9eeca106725 323
Kojto 122:f9eeca106725 324 /** @addtogroup DAC_Private_Macros
Kojto 122:f9eeca106725 325 * @{
Kojto 122:f9eeca106725 326 */
Kojto 122:f9eeca106725 327
bogdanm 86:04dd9b1680ae 328 #define IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE(VALUE) (((VALUE) == DAC_LFSRUNMASK_BIT0) || \
bogdanm 86:04dd9b1680ae 329 ((VALUE) == DAC_LFSRUNMASK_BITS1_0) || \
bogdanm 86:04dd9b1680ae 330 ((VALUE) == DAC_LFSRUNMASK_BITS2_0) || \
bogdanm 86:04dd9b1680ae 331 ((VALUE) == DAC_LFSRUNMASK_BITS3_0) || \
bogdanm 86:04dd9b1680ae 332 ((VALUE) == DAC_LFSRUNMASK_BITS4_0) || \
bogdanm 86:04dd9b1680ae 333 ((VALUE) == DAC_LFSRUNMASK_BITS5_0) || \
bogdanm 86:04dd9b1680ae 334 ((VALUE) == DAC_LFSRUNMASK_BITS6_0) || \
bogdanm 86:04dd9b1680ae 335 ((VALUE) == DAC_LFSRUNMASK_BITS7_0) || \
bogdanm 86:04dd9b1680ae 336 ((VALUE) == DAC_LFSRUNMASK_BITS8_0) || \
bogdanm 86:04dd9b1680ae 337 ((VALUE) == DAC_LFSRUNMASK_BITS9_0) || \
bogdanm 86:04dd9b1680ae 338 ((VALUE) == DAC_LFSRUNMASK_BITS10_0) || \
bogdanm 86:04dd9b1680ae 339 ((VALUE) == DAC_LFSRUNMASK_BITS11_0) || \
bogdanm 86:04dd9b1680ae 340 ((VALUE) == DAC_TRIANGLEAMPLITUDE_1) || \
bogdanm 86:04dd9b1680ae 341 ((VALUE) == DAC_TRIANGLEAMPLITUDE_3) || \
bogdanm 86:04dd9b1680ae 342 ((VALUE) == DAC_TRIANGLEAMPLITUDE_7) || \
bogdanm 86:04dd9b1680ae 343 ((VALUE) == DAC_TRIANGLEAMPLITUDE_15) || \
bogdanm 86:04dd9b1680ae 344 ((VALUE) == DAC_TRIANGLEAMPLITUDE_31) || \
bogdanm 86:04dd9b1680ae 345 ((VALUE) == DAC_TRIANGLEAMPLITUDE_63) || \
bogdanm 86:04dd9b1680ae 346 ((VALUE) == DAC_TRIANGLEAMPLITUDE_127) || \
bogdanm 86:04dd9b1680ae 347 ((VALUE) == DAC_TRIANGLEAMPLITUDE_255) || \
bogdanm 86:04dd9b1680ae 348 ((VALUE) == DAC_TRIANGLEAMPLITUDE_511) || \
bogdanm 86:04dd9b1680ae 349 ((VALUE) == DAC_TRIANGLEAMPLITUDE_1023) || \
bogdanm 86:04dd9b1680ae 350 ((VALUE) == DAC_TRIANGLEAMPLITUDE_2047) || \
bogdanm 86:04dd9b1680ae 351 ((VALUE) == DAC_TRIANGLEAMPLITUDE_4095))
bogdanm 86:04dd9b1680ae 352
bogdanm 86:04dd9b1680ae 353 #define IS_DAC_OUTPUT_BUFFER_STATE(STATE) (((STATE) == DAC_OUTPUTBUFFER_ENABLE) || \
bogdanm 86:04dd9b1680ae 354 ((STATE) == DAC_OUTPUTBUFFER_DISABLE))
bogdanm 86:04dd9b1680ae 355
Kojto 122:f9eeca106725 356 #if defined(STM32F303x8) || defined(STM32F334x8) || defined(STM32F328xx)
Kojto 122:f9eeca106725 357 #define IS_DAC_OUTPUT_SWITCH_STATE(STATE) (((STATE) == DAC_OUTPUTSWITCH_DISABLE) || \
Kojto 122:f9eeca106725 358 ((STATE) == DAC_OUTPUTSWITCH_ENABLE))
bogdanm 86:04dd9b1680ae 359
Kojto 122:f9eeca106725 360 #endif /* STM32F303x8 || STM32F334x8 || STM32F328xx || */
bogdanm 86:04dd9b1680ae 361 #define IS_DAC_ALIGN(ALIGN) (((ALIGN) == DAC_ALIGN_12B_R) || \
bogdanm 86:04dd9b1680ae 362 ((ALIGN) == DAC_ALIGN_12B_L) || \
bogdanm 86:04dd9b1680ae 363 ((ALIGN) == DAC_ALIGN_8B_R))
bogdanm 86:04dd9b1680ae 364
bogdanm 86:04dd9b1680ae 365 #define IS_DAC_DATA(DATA) ((DATA) <= 0xFFF0)
bogdanm 86:04dd9b1680ae 366
bogdanm 86:04dd9b1680ae 367
bogdanm 86:04dd9b1680ae 368
bogdanm 86:04dd9b1680ae 369 /**
bogdanm 86:04dd9b1680ae 370 * @}
bogdanm 86:04dd9b1680ae 371 */
bogdanm 86:04dd9b1680ae 372
bogdanm 92:4fc01daae5a5 373
bogdanm 92:4fc01daae5a5 374 /* Include DAC HAL Extended module */
bogdanm 86:04dd9b1680ae 375 #include "stm32f3xx_hal_dac_ex.h"
bogdanm 86:04dd9b1680ae 376
bogdanm 86:04dd9b1680ae 377 /* Exported functions --------------------------------------------------------*/
Kojto 122:f9eeca106725 378
Kojto 122:f9eeca106725 379 /** @addtogroup DAC_Exported_Functions
bogdanm 92:4fc01daae5a5 380 * @{
bogdanm 92:4fc01daae5a5 381 */
bogdanm 92:4fc01daae5a5 382
Kojto 122:f9eeca106725 383 /** @addtogroup DAC_Exported_Functions_Group1
bogdanm 92:4fc01daae5a5 384 * @{
bogdanm 92:4fc01daae5a5 385 */
bogdanm 86:04dd9b1680ae 386 /* Initialization and de-initialization functions *****************************/
bogdanm 86:04dd9b1680ae 387 HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef* hdac);
bogdanm 86:04dd9b1680ae 388 HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef* hdac);
bogdanm 86:04dd9b1680ae 389 void HAL_DAC_MspInit(DAC_HandleTypeDef* hdac);
bogdanm 86:04dd9b1680ae 390 void HAL_DAC_MspDeInit(DAC_HandleTypeDef* hdac);
bogdanm 86:04dd9b1680ae 391
bogdanm 92:4fc01daae5a5 392 /**
bogdanm 92:4fc01daae5a5 393 * @}
bogdanm 92:4fc01daae5a5 394 */
bogdanm 92:4fc01daae5a5 395
Kojto 122:f9eeca106725 396 /** @addtogroup DAC_Exported_Functions_Group2
bogdanm 92:4fc01daae5a5 397 * @{
bogdanm 92:4fc01daae5a5 398 */
bogdanm 86:04dd9b1680ae 399 /* IO operation functions *****************************************************/
Kojto 122:f9eeca106725 400 HAL_StatusTypeDef HAL_DAC_Start(DAC_HandleTypeDef* hdac, uint32_t Channel);
Kojto 122:f9eeca106725 401 HAL_StatusTypeDef HAL_DAC_Stop(DAC_HandleTypeDef* hdac, uint32_t Channel);
Kojto 122:f9eeca106725 402 HAL_StatusTypeDef HAL_DAC_Start_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t* pData, uint32_t Length, uint32_t Alignment);
Kojto 122:f9eeca106725 403 HAL_StatusTypeDef HAL_DAC_Stop_DMA(DAC_HandleTypeDef* hdac, uint32_t Channel);
Kojto 122:f9eeca106725 404 uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef* hdac, uint32_t Channel);
Kojto 122:f9eeca106725 405 HAL_StatusTypeDef HAL_DAC_ConfigChannel(DAC_HandleTypeDef* hdac, DAC_ChannelConfTypeDef* sConfig, uint32_t Channel);
Kojto 122:f9eeca106725 406
bogdanm 92:4fc01daae5a5 407 void HAL_DAC_IRQHandler(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 408 void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 409 void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef* hdac);
bogdanm 92:4fc01daae5a5 410 void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *hdac);
bogdanm 92:4fc01daae5a5 411 void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *hdac);
bogdanm 86:04dd9b1680ae 412
bogdanm 92:4fc01daae5a5 413 /**
bogdanm 92:4fc01daae5a5 414 * @}
bogdanm 92:4fc01daae5a5 415 */
bogdanm 92:4fc01daae5a5 416
Kojto 122:f9eeca106725 417 /** @addtogroup DAC_Exported_Functions_Group3
bogdanm 92:4fc01daae5a5 418 * @{
bogdanm 92:4fc01daae5a5 419 */
bogdanm 86:04dd9b1680ae 420 /* Peripheral Control functions ***********************************************/
Kojto 122:f9eeca106725 421 HAL_StatusTypeDef HAL_DAC_SetValue(DAC_HandleTypeDef* hdac, uint32_t Channel, uint32_t Alignment, uint32_t Data);
bogdanm 86:04dd9b1680ae 422
bogdanm 92:4fc01daae5a5 423 /**
bogdanm 92:4fc01daae5a5 424 * @}
bogdanm 92:4fc01daae5a5 425 */
bogdanm 92:4fc01daae5a5 426
Kojto 122:f9eeca106725 427 /** @addtogroup DAC_Exported_Functions_Group4
bogdanm 92:4fc01daae5a5 428 * @{
bogdanm 92:4fc01daae5a5 429 */
bogdanm 86:04dd9b1680ae 430 /* Peripheral State and Error functions ***************************************/
bogdanm 86:04dd9b1680ae 431 HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef* hdac);
bogdanm 86:04dd9b1680ae 432 uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *hdac);
bogdanm 86:04dd9b1680ae 433
bogdanm 92:4fc01daae5a5 434 /**
bogdanm 92:4fc01daae5a5 435 * @}
bogdanm 92:4fc01daae5a5 436 */
bogdanm 92:4fc01daae5a5 437
bogdanm 92:4fc01daae5a5 438 /**
bogdanm 92:4fc01daae5a5 439 * @}
bogdanm 92:4fc01daae5a5 440 */
bogdanm 86:04dd9b1680ae 441
bogdanm 86:04dd9b1680ae 442 /**
bogdanm 86:04dd9b1680ae 443 * @}
bogdanm 86:04dd9b1680ae 444 */
bogdanm 86:04dd9b1680ae 445
bogdanm 86:04dd9b1680ae 446 /**
bogdanm 86:04dd9b1680ae 447 * @}
bogdanm 86:04dd9b1680ae 448 */
bogdanm 86:04dd9b1680ae 449
bogdanm 86:04dd9b1680ae 450 #ifdef __cplusplus
bogdanm 86:04dd9b1680ae 451 }
bogdanm 86:04dd9b1680ae 452 #endif
bogdanm 86:04dd9b1680ae 453
bogdanm 86:04dd9b1680ae 454 #endif /*__STM32F3xx_HAL_DAC_H */
bogdanm 86:04dd9b1680ae 455
bogdanm 86:04dd9b1680ae 456 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/