Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Dependents: hello SerialTestv11 SerialTestv12 Sierpinski ... more
TARGET_NUCLEO_F303K8/stm32f3xx_hal_dac.h@122:f9eeca106725, 2016-07-07 (annotated)
- Committer:
- Kojto
- Date:
- Thu Jul 07 14:34:11 2016 +0100
- Revision:
- 122:f9eeca106725
- Parent:
- 109:9296ab0bfc11
- 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?
User | Revision | Line number | New contents of line |
---|---|---|---|
Kojto | 109:9296ab0bfc11 | 1 | /** |
Kojto | 109:9296ab0bfc11 | 2 | ****************************************************************************** |
Kojto | 109:9296ab0bfc11 | 3 | * @file stm32f3xx_hal_dac.h |
Kojto | 109:9296ab0bfc11 | 4 | * @author MCD Application Team |
Kojto | 122:f9eeca106725 | 5 | * @version V1.2.1 |
Kojto | 122:f9eeca106725 | 6 | * @date 29-April-2015 |
Kojto | 109:9296ab0bfc11 | 7 | * @brief Header file of DAC HAL module. |
Kojto | 109:9296ab0bfc11 | 8 | ****************************************************************************** |
Kojto | 109:9296ab0bfc11 | 9 | * @attention |
Kojto | 109:9296ab0bfc11 | 10 | * |
Kojto | 122:f9eeca106725 | 11 | * <h2><center>© COPYRIGHT(c) 2016 STMicroelectronics</center></h2> |
Kojto | 109:9296ab0bfc11 | 12 | * |
Kojto | 109:9296ab0bfc11 | 13 | * Redistribution and use in source and binary forms, with or without modification, |
Kojto | 109:9296ab0bfc11 | 14 | * are permitted provided that the following conditions are met: |
Kojto | 109:9296ab0bfc11 | 15 | * 1. Redistributions of source code must retain the above copyright notice, |
Kojto | 109:9296ab0bfc11 | 16 | * this list of conditions and the following disclaimer. |
Kojto | 109:9296ab0bfc11 | 17 | * 2. Redistributions in binary form must reproduce the above copyright notice, |
Kojto | 109:9296ab0bfc11 | 18 | * this list of conditions and the following disclaimer in the documentation |
Kojto | 109:9296ab0bfc11 | 19 | * and/or other materials provided with the distribution. |
Kojto | 109:9296ab0bfc11 | 20 | * 3. Neither the name of STMicroelectronics nor the names of its contributors |
Kojto | 109:9296ab0bfc11 | 21 | * may be used to endorse or promote products derived from this software |
Kojto | 109:9296ab0bfc11 | 22 | * without specific prior written permission. |
Kojto | 109:9296ab0bfc11 | 23 | * |
Kojto | 109:9296ab0bfc11 | 24 | * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" |
Kojto | 109:9296ab0bfc11 | 25 | * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
Kojto | 109:9296ab0bfc11 | 26 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
Kojto | 109:9296ab0bfc11 | 27 | * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE |
Kojto | 109:9296ab0bfc11 | 28 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
Kojto | 109:9296ab0bfc11 | 29 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
Kojto | 109:9296ab0bfc11 | 30 | * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
Kojto | 109:9296ab0bfc11 | 31 | * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
Kojto | 109:9296ab0bfc11 | 32 | * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
Kojto | 109:9296ab0bfc11 | 33 | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
Kojto | 109:9296ab0bfc11 | 34 | * |
Kojto | 109:9296ab0bfc11 | 35 | ****************************************************************************** |
Kojto | 109:9296ab0bfc11 | 36 | */ |
Kojto | 109:9296ab0bfc11 | 37 | |
Kojto | 109:9296ab0bfc11 | 38 | /* Define to prevent recursive inclusion -------------------------------------*/ |
Kojto | 109:9296ab0bfc11 | 39 | #ifndef __STM32F3xx_HAL_DAC_H |
Kojto | 109:9296ab0bfc11 | 40 | #define __STM32F3xx_HAL_DAC_H |
Kojto | 109:9296ab0bfc11 | 41 | |
Kojto | 109:9296ab0bfc11 | 42 | #ifdef __cplusplus |
Kojto | 109:9296ab0bfc11 | 43 | extern "C" { |
Kojto | 109:9296ab0bfc11 | 44 | #endif |
Kojto | 109:9296ab0bfc11 | 45 | |
Kojto | 109:9296ab0bfc11 | 46 | /* Includes ------------------------------------------------------------------*/ |
Kojto | 109:9296ab0bfc11 | 47 | #include "stm32f3xx_hal_def.h" |
Kojto | 109:9296ab0bfc11 | 48 | |
Kojto | 109:9296ab0bfc11 | 49 | /** @addtogroup STM32F3xx_HAL_Driver |
Kojto | 109:9296ab0bfc11 | 50 | * @{ |
Kojto | 109:9296ab0bfc11 | 51 | */ |
Kojto | 109:9296ab0bfc11 | 52 | |
Kojto | 122:f9eeca106725 | 53 | /** @addtogroup DAC |
Kojto | 109:9296ab0bfc11 | 54 | * @{ |
Kojto | 109:9296ab0bfc11 | 55 | */ |
Kojto | 109:9296ab0bfc11 | 56 | |
Kojto | 109:9296ab0bfc11 | 57 | /* Exported types ------------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 58 | |
Kojto | 109:9296ab0bfc11 | 59 | /** @defgroup DAC_Exported_Types DAC Exported Types |
Kojto | 109:9296ab0bfc11 | 60 | * @{ |
Kojto | 109:9296ab0bfc11 | 61 | */ |
Kojto | 109:9296ab0bfc11 | 62 | |
Kojto | 109:9296ab0bfc11 | 63 | /** |
Kojto | 109:9296ab0bfc11 | 64 | * @brief HAL State structures definition |
Kojto | 109:9296ab0bfc11 | 65 | */ |
Kojto | 109:9296ab0bfc11 | 66 | typedef enum |
Kojto | 109:9296ab0bfc11 | 67 | { |
Kojto | 109:9296ab0bfc11 | 68 | HAL_DAC_STATE_RESET = 0x00, /*!< DAC not yet initialized or disabled */ |
Kojto | 109:9296ab0bfc11 | 69 | HAL_DAC_STATE_READY = 0x01, /*!< DAC initialized and ready for use */ |
Kojto | 109:9296ab0bfc11 | 70 | HAL_DAC_STATE_BUSY = 0x02, /*!< DAC internal processing is ongoing */ |
Kojto | 109:9296ab0bfc11 | 71 | HAL_DAC_STATE_TIMEOUT = 0x03, /*!< DAC timeout state */ |
Kojto | 109:9296ab0bfc11 | 72 | HAL_DAC_STATE_ERROR = 0x04 /*!< DAC error state */ |
Kojto | 109:9296ab0bfc11 | 73 | |
Kojto | 109:9296ab0bfc11 | 74 | }HAL_DAC_StateTypeDef; |
Kojto | 109:9296ab0bfc11 | 75 | |
Kojto | 109:9296ab0bfc11 | 76 | /** |
Kojto | 109:9296ab0bfc11 | 77 | * @brief DAC Configuration regular Channel structure definition |
Kojto | 109:9296ab0bfc11 | 78 | */ |
Kojto | 109:9296ab0bfc11 | 79 | typedef struct |
Kojto | 109:9296ab0bfc11 | 80 | { |
Kojto | 109:9296ab0bfc11 | 81 | uint32_t DAC_Trigger; /*!< Specifies the external trigger for the selected DAC channel. |
Kojto | 109:9296ab0bfc11 | 82 | This parameter can be a value of @ref DACEx_trigger_selection */ |
Kojto | 109:9296ab0bfc11 | 83 | |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 93 | |
Kojto | 109:9296ab0bfc11 | 94 | }DAC_ChannelConfTypeDef; |
Kojto | 109:9296ab0bfc11 | 95 | |
Kojto | 109:9296ab0bfc11 | 96 | /** |
Kojto | 109:9296ab0bfc11 | 97 | * @brief DAC handle Structure definition |
Kojto | 109:9296ab0bfc11 | 98 | */ |
Kojto | 109:9296ab0bfc11 | 99 | typedef struct __DAC_HandleTypeDef |
Kojto | 109:9296ab0bfc11 | 100 | { |
Kojto | 109:9296ab0bfc11 | 101 | DAC_TypeDef *Instance; /*!< Register base address */ |
Kojto | 109:9296ab0bfc11 | 102 | |
Kojto | 109:9296ab0bfc11 | 103 | __IO HAL_DAC_StateTypeDef State; /*!< DAC communication state */ |
Kojto | 109:9296ab0bfc11 | 104 | |
Kojto | 109:9296ab0bfc11 | 105 | HAL_LockTypeDef Lock; /*!< DAC locking object */ |
Kojto | 109:9296ab0bfc11 | 106 | |
Kojto | 109:9296ab0bfc11 | 107 | DMA_HandleTypeDef *DMA_Handle1; /*!< Pointer DMA handler for channel 1 */ |
Kojto | 109:9296ab0bfc11 | 108 | |
Kojto | 109:9296ab0bfc11 | 109 | DMA_HandleTypeDef *DMA_Handle2; /*!< Pointer DMA handler for channel 2 */ |
Kojto | 109:9296ab0bfc11 | 110 | |
Kojto | 109:9296ab0bfc11 | 111 | __IO uint32_t ErrorCode; /*!< DAC Error code */ |
Kojto | 109:9296ab0bfc11 | 112 | |
Kojto | 109:9296ab0bfc11 | 113 | }DAC_HandleTypeDef; |
Kojto | 109:9296ab0bfc11 | 114 | /** |
Kojto | 109:9296ab0bfc11 | 115 | * @} |
Kojto | 109:9296ab0bfc11 | 116 | */ |
Kojto | 109:9296ab0bfc11 | 117 | |
Kojto | 109:9296ab0bfc11 | 118 | /* Exported constants --------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 119 | /** @defgroup DAC_Exported_Constants DAC Exported Constants |
Kojto | 109:9296ab0bfc11 | 120 | * @{ |
Kojto | 109:9296ab0bfc11 | 121 | */ |
Kojto | 109:9296ab0bfc11 | 122 | |
Kojto | 109:9296ab0bfc11 | 123 | /** @defgroup DAC_Error_Code DAC Error Code |
Kojto | 109:9296ab0bfc11 | 124 | * @{ |
Kojto | 109:9296ab0bfc11 | 125 | */ |
Kojto | 109:9296ab0bfc11 | 126 | #define HAL_DAC_ERROR_NONE 0x00 /*!< No error */ |
Kojto | 109:9296ab0bfc11 | 127 | #define HAL_DAC_ERROR_DMAUNDERRUNCH1 0x01 /*!< DAC channel1 DMA underrun error */ |
Kojto | 109:9296ab0bfc11 | 128 | #define HAL_DAC_ERROR_DMAUNDERRUNCH2 0x02 /*!< DAC channel2 DMA underrun error */ |
Kojto | 109:9296ab0bfc11 | 129 | #define HAL_DAC_ERROR_DMA 0x04 /*!< DMA error */ |
Kojto | 109:9296ab0bfc11 | 130 | /** |
Kojto | 109:9296ab0bfc11 | 131 | * @} |
Kojto | 109:9296ab0bfc11 | 132 | */ |
Kojto | 109:9296ab0bfc11 | 133 | |
Kojto | 109:9296ab0bfc11 | 134 | /** @defgroup DAC_lfsrunmask_triangleamplitude DAC lfsrunmask triangleamplitude |
Kojto | 109:9296ab0bfc11 | 135 | * @{ |
Kojto | 109:9296ab0bfc11 | 136 | */ |
Kojto | 109:9296ab0bfc11 | 137 | #define DAC_LFSRUNMASK_BIT0 ((uint32_t)0x00000000) /*!< Unmask DAC channel LFSR bit0 for noise wave generation */ |
Kojto | 109:9296ab0bfc11 | 138 | #define DAC_LFSRUNMASK_BITS1_0 ((uint32_t)DAC_CR_MAMP1_0) /*!< Unmask DAC channel LFSR bit[1:0] for noise wave generation */ |
Kojto | 109:9296ab0bfc11 | 139 | #define DAC_LFSRUNMASK_BITS2_0 ((uint32_t)DAC_CR_MAMP1_1) /*!< Unmask DAC channel LFSR bit[2:0] for noise wave generation */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 141 | #define DAC_LFSRUNMASK_BITS4_0 ((uint32_t)DAC_CR_MAMP1_2) /*!< Unmask DAC channel LFSR bit[4:0] for noise wave generation */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 145 | #define DAC_LFSRUNMASK_BITS8_0 ((uint32_t)DAC_CR_MAMP1_3) /*!< Unmask DAC channel LFSR bit[8:0] for noise wave generation */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 149 | #define DAC_TRIANGLEAMPLITUDE_1 ((uint32_t)0x00000000) /*!< Select max triangle amplitude of 1 */ |
Kojto | 109:9296ab0bfc11 | 150 | #define DAC_TRIANGLEAMPLITUDE_3 ((uint32_t)DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 3 */ |
Kojto | 109:9296ab0bfc11 | 151 | #define DAC_TRIANGLEAMPLITUDE_7 ((uint32_t)DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 7 */ |
Kojto | 109:9296ab0bfc11 | 152 | #define DAC_TRIANGLEAMPLITUDE_15 ((uint32_t)DAC_CR_MAMP1_1 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 15 */ |
Kojto | 109:9296ab0bfc11 | 153 | #define DAC_TRIANGLEAMPLITUDE_31 ((uint32_t)DAC_CR_MAMP1_2) /*!< Select max triangle amplitude of 31 */ |
Kojto | 109:9296ab0bfc11 | 154 | #define DAC_TRIANGLEAMPLITUDE_63 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 63 */ |
Kojto | 109:9296ab0bfc11 | 155 | #define DAC_TRIANGLEAMPLITUDE_127 ((uint32_t)DAC_CR_MAMP1_2 | DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 127 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 157 | #define DAC_TRIANGLEAMPLITUDE_511 ((uint32_t)DAC_CR_MAMP1_3) /*!< Select max triangle amplitude of 511 */ |
Kojto | 109:9296ab0bfc11 | 158 | #define DAC_TRIANGLEAMPLITUDE_1023 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_0) /*!< Select max triangle amplitude of 1023 */ |
Kojto | 109:9296ab0bfc11 | 159 | #define DAC_TRIANGLEAMPLITUDE_2047 ((uint32_t)DAC_CR_MAMP1_3 | DAC_CR_MAMP1_1) /*!< Select max triangle amplitude of 2047 */ |
Kojto | 109:9296ab0bfc11 | 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 */ |
Kojto | 109:9296ab0bfc11 | 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 | |
Kojto | 109:9296ab0bfc11 | 328 | #define IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE(VALUE) (((VALUE) == DAC_LFSRUNMASK_BIT0) || \ |
Kojto | 109:9296ab0bfc11 | 329 | ((VALUE) == DAC_LFSRUNMASK_BITS1_0) || \ |
Kojto | 109:9296ab0bfc11 | 330 | ((VALUE) == DAC_LFSRUNMASK_BITS2_0) || \ |
Kojto | 109:9296ab0bfc11 | 331 | ((VALUE) == DAC_LFSRUNMASK_BITS3_0) || \ |
Kojto | 109:9296ab0bfc11 | 332 | ((VALUE) == DAC_LFSRUNMASK_BITS4_0) || \ |
Kojto | 109:9296ab0bfc11 | 333 | ((VALUE) == DAC_LFSRUNMASK_BITS5_0) || \ |
Kojto | 109:9296ab0bfc11 | 334 | ((VALUE) == DAC_LFSRUNMASK_BITS6_0) || \ |
Kojto | 109:9296ab0bfc11 | 335 | ((VALUE) == DAC_LFSRUNMASK_BITS7_0) || \ |
Kojto | 109:9296ab0bfc11 | 336 | ((VALUE) == DAC_LFSRUNMASK_BITS8_0) || \ |
Kojto | 109:9296ab0bfc11 | 337 | ((VALUE) == DAC_LFSRUNMASK_BITS9_0) || \ |
Kojto | 109:9296ab0bfc11 | 338 | ((VALUE) == DAC_LFSRUNMASK_BITS10_0) || \ |
Kojto | 109:9296ab0bfc11 | 339 | ((VALUE) == DAC_LFSRUNMASK_BITS11_0) || \ |
Kojto | 109:9296ab0bfc11 | 340 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_1) || \ |
Kojto | 109:9296ab0bfc11 | 341 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_3) || \ |
Kojto | 109:9296ab0bfc11 | 342 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_7) || \ |
Kojto | 109:9296ab0bfc11 | 343 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_15) || \ |
Kojto | 109:9296ab0bfc11 | 344 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_31) || \ |
Kojto | 109:9296ab0bfc11 | 345 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_63) || \ |
Kojto | 109:9296ab0bfc11 | 346 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_127) || \ |
Kojto | 109:9296ab0bfc11 | 347 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_255) || \ |
Kojto | 109:9296ab0bfc11 | 348 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_511) || \ |
Kojto | 109:9296ab0bfc11 | 349 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_1023) || \ |
Kojto | 109:9296ab0bfc11 | 350 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_2047) || \ |
Kojto | 109:9296ab0bfc11 | 351 | ((VALUE) == DAC_TRIANGLEAMPLITUDE_4095)) |
Kojto | 109:9296ab0bfc11 | 352 | |
Kojto | 109:9296ab0bfc11 | 353 | #define IS_DAC_OUTPUT_BUFFER_STATE(STATE) (((STATE) == DAC_OUTPUTBUFFER_ENABLE) || \ |
Kojto | 109:9296ab0bfc11 | 354 | ((STATE) == DAC_OUTPUTBUFFER_DISABLE)) |
Kojto | 109:9296ab0bfc11 | 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)) |
Kojto | 109:9296ab0bfc11 | 359 | |
Kojto | 122:f9eeca106725 | 360 | #endif /* STM32F303x8 || STM32F334x8 || STM32F328xx || */ |
Kojto | 109:9296ab0bfc11 | 361 | #define IS_DAC_ALIGN(ALIGN) (((ALIGN) == DAC_ALIGN_12B_R) || \ |
Kojto | 109:9296ab0bfc11 | 362 | ((ALIGN) == DAC_ALIGN_12B_L) || \ |
Kojto | 109:9296ab0bfc11 | 363 | ((ALIGN) == DAC_ALIGN_8B_R)) |
Kojto | 109:9296ab0bfc11 | 364 | |
Kojto | 109:9296ab0bfc11 | 365 | #define IS_DAC_DATA(DATA) ((DATA) <= 0xFFF0) |
Kojto | 109:9296ab0bfc11 | 366 | |
Kojto | 109:9296ab0bfc11 | 367 | |
Kojto | 109:9296ab0bfc11 | 368 | |
Kojto | 109:9296ab0bfc11 | 369 | /** |
Kojto | 109:9296ab0bfc11 | 370 | * @} |
Kojto | 109:9296ab0bfc11 | 371 | */ |
Kojto | 109:9296ab0bfc11 | 372 | |
Kojto | 109:9296ab0bfc11 | 373 | |
Kojto | 109:9296ab0bfc11 | 374 | /* Include DAC HAL Extended module */ |
Kojto | 109:9296ab0bfc11 | 375 | #include "stm32f3xx_hal_dac_ex.h" |
Kojto | 109:9296ab0bfc11 | 376 | |
Kojto | 109:9296ab0bfc11 | 377 | /* Exported functions --------------------------------------------------------*/ |
Kojto | 122:f9eeca106725 | 378 | |
Kojto | 122:f9eeca106725 | 379 | /** @addtogroup DAC_Exported_Functions |
Kojto | 109:9296ab0bfc11 | 380 | * @{ |
Kojto | 109:9296ab0bfc11 | 381 | */ |
Kojto | 109:9296ab0bfc11 | 382 | |
Kojto | 122:f9eeca106725 | 383 | /** @addtogroup DAC_Exported_Functions_Group1 |
Kojto | 109:9296ab0bfc11 | 384 | * @{ |
Kojto | 109:9296ab0bfc11 | 385 | */ |
Kojto | 109:9296ab0bfc11 | 386 | /* Initialization and de-initialization functions *****************************/ |
Kojto | 109:9296ab0bfc11 | 387 | HAL_StatusTypeDef HAL_DAC_Init(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 388 | HAL_StatusTypeDef HAL_DAC_DeInit(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 389 | void HAL_DAC_MspInit(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 390 | void HAL_DAC_MspDeInit(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 391 | |
Kojto | 109:9296ab0bfc11 | 392 | /** |
Kojto | 109:9296ab0bfc11 | 393 | * @} |
Kojto | 109:9296ab0bfc11 | 394 | */ |
Kojto | 109:9296ab0bfc11 | 395 | |
Kojto | 122:f9eeca106725 | 396 | /** @addtogroup DAC_Exported_Functions_Group2 |
Kojto | 109:9296ab0bfc11 | 397 | * @{ |
Kojto | 109:9296ab0bfc11 | 398 | */ |
Kojto | 109:9296ab0bfc11 | 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 | |
Kojto | 109:9296ab0bfc11 | 407 | void HAL_DAC_IRQHandler(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 408 | void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 409 | void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 410 | void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef *hdac); |
Kojto | 109:9296ab0bfc11 | 411 | void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef *hdac); |
Kojto | 109:9296ab0bfc11 | 412 | |
Kojto | 109:9296ab0bfc11 | 413 | /** |
Kojto | 109:9296ab0bfc11 | 414 | * @} |
Kojto | 109:9296ab0bfc11 | 415 | */ |
Kojto | 109:9296ab0bfc11 | 416 | |
Kojto | 122:f9eeca106725 | 417 | /** @addtogroup DAC_Exported_Functions_Group3 |
Kojto | 109:9296ab0bfc11 | 418 | * @{ |
Kojto | 109:9296ab0bfc11 | 419 | */ |
Kojto | 109:9296ab0bfc11 | 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); |
Kojto | 109:9296ab0bfc11 | 422 | |
Kojto | 109:9296ab0bfc11 | 423 | /** |
Kojto | 109:9296ab0bfc11 | 424 | * @} |
Kojto | 109:9296ab0bfc11 | 425 | */ |
Kojto | 109:9296ab0bfc11 | 426 | |
Kojto | 122:f9eeca106725 | 427 | /** @addtogroup DAC_Exported_Functions_Group4 |
Kojto | 109:9296ab0bfc11 | 428 | * @{ |
Kojto | 109:9296ab0bfc11 | 429 | */ |
Kojto | 109:9296ab0bfc11 | 430 | /* Peripheral State and Error functions ***************************************/ |
Kojto | 109:9296ab0bfc11 | 431 | HAL_DAC_StateTypeDef HAL_DAC_GetState(DAC_HandleTypeDef* hdac); |
Kojto | 109:9296ab0bfc11 | 432 | uint32_t HAL_DAC_GetError(DAC_HandleTypeDef *hdac); |
Kojto | 109:9296ab0bfc11 | 433 | |
Kojto | 109:9296ab0bfc11 | 434 | /** |
Kojto | 109:9296ab0bfc11 | 435 | * @} |
Kojto | 109:9296ab0bfc11 | 436 | */ |
Kojto | 109:9296ab0bfc11 | 437 | |
Kojto | 109:9296ab0bfc11 | 438 | /** |
Kojto | 109:9296ab0bfc11 | 439 | * @} |
Kojto | 109:9296ab0bfc11 | 440 | */ |
Kojto | 109:9296ab0bfc11 | 441 | |
Kojto | 109:9296ab0bfc11 | 442 | /** |
Kojto | 109:9296ab0bfc11 | 443 | * @} |
Kojto | 109:9296ab0bfc11 | 444 | */ |
Kojto | 109:9296ab0bfc11 | 445 | |
Kojto | 109:9296ab0bfc11 | 446 | /** |
Kojto | 109:9296ab0bfc11 | 447 | * @} |
Kojto | 109:9296ab0bfc11 | 448 | */ |
Kojto | 109:9296ab0bfc11 | 449 | |
Kojto | 109:9296ab0bfc11 | 450 | #ifdef __cplusplus |
Kojto | 109:9296ab0bfc11 | 451 | } |
Kojto | 109:9296ab0bfc11 | 452 | #endif |
Kojto | 109:9296ab0bfc11 | 453 | |
Kojto | 109:9296ab0bfc11 | 454 | #endif /*__STM32F3xx_HAL_DAC_H */ |
Kojto | 109:9296ab0bfc11 | 455 | |
Kojto | 109:9296ab0bfc11 | 456 | /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/ |