mbed(SerialHalfDuplex入り)

Fork of mbed by mbed official

Committer:
yusuke_kyo
Date:
Wed Apr 08 08:04:18 2015 +0000
Revision:
98:01a414ca7d6d
Parent:
93:e188a91d3eaa
remove SerialHalfDuplex.h

Who changed what in which revision?

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