2 ******************************************************************************
3 * @file stm32f4xx_hal_dac.c
4 * @author MCD Application Team
7 * @brief DAC HAL module driver.
8 * This file provides firmware functions to manage the following
9 * functionalities of the Digital to Analog Converter (DAC) peripheral:
10 * + Initialization and de-initialization functions
11 * + IO operation functions
12 * + Peripheral Control functions
13 * + Peripheral State and Errors functions
17 ==============================================================================
18 ##### DAC Peripheral features #####
19 ==============================================================================
24 The device integrates two 12-bit Digital Analog Converters that can
25 be used independently or simultaneously (dual mode):
26 (#) DAC channel1 with DAC_OUT1 (PA4) as output
27 (#) DAC channel2 with DAC_OUT2 (PA5) as output
32 Digital to Analog conversion can be non-triggered using DAC_TRIGGER_NONE
33 and DAC_OUT1/DAC_OUT2 is available once writing to DHRx register.
35 Digital to Analog conversion can be triggered by:
36 (#) External event: EXTI Line 9 (any GPIOx_Pin9) using DAC_TRIGGER_EXT_IT9.
37 The used pin (GPIOx_Pin9) must be configured in input mode.
39 (#) Timers TRGO: TIM2, TIM4, TIM5, TIM6, TIM7 and TIM8
40 (DAC_TRIGGER_T2_TRGO, DAC_TRIGGER_T4_TRGO...)
42 (#) Software using DAC_TRIGGER_SOFTWARE
44 *** DAC Buffer mode feature ***
45 ===============================
47 Each DAC channel integrates an output buffer that can be used to
48 reduce the output impedance, and to drive external loads directly
49 without having to add an external operational amplifier.
50 To enable, the output buffer use
51 sConfig.DAC_OutputBuffer = DAC_OUTPUTBUFFER_ENABLE;
53 (@) Refer to the device datasheet for more details about output
54 impedance value with and without output buffer.
56 *** DAC wave generation feature ***
57 ===================================
59 Both DAC channels can be used to generate
63 *** DAC data format ***
64 =======================
66 The DAC data format can be:
67 (#) 8-bit right alignment using DAC_ALIGN_8B_R
68 (#) 12-bit left alignment using DAC_ALIGN_12B_L
69 (#) 12-bit right alignment using DAC_ALIGN_12B_R
71 *** DAC data value to voltage correspondence ***
72 ================================================
74 The analog output voltage on each DAC channel pin is determined
75 by the following equation:
76 DAC_OUTx = VREF+ * DOR / 4095
77 with DOR is the Data Output Register
78 VEF+ is the input voltage reference (refer to the device datasheet)
79 e.g. To set DAC_OUT1 to 0.7V, use
80 Assuming that VREF+ = 3.3V, DAC_OUT1 = (3.3 * 868) / 4095 = 0.7V
85 A DMA1 request can be generated when an external trigger (but not
86 a software trigger) occurs if DMA1 requests are enabled using
89 DMA1 requests are mapped as following:
90 (#) DAC channel1 : mapped on DMA1 Stream5 channel7 which must be
92 (#) DAC channel2 : mapped on DMA1 Stream6 channel7 which must be
95 -@- For Dual mode and specific signal (Triangle and noise) generation please
96 refer to Extension Features Driver description
99 ##### How to use this driver #####
100 ==============================================================================
102 (+) DAC APB clock must be enabled to get write access to DAC
103 registers using HAL_DAC_Init()
104 (+) Configure DAC_OUTx (DAC_OUT1: PA4, DAC_OUT2: PA5) in analog mode.
105 (+) Configure the DAC channel using HAL_DAC_ConfigChannel() function.
106 (+) Enable the DAC channel using HAL_DAC_Start() or HAL_DAC_Start_DMA functions
108 *** Polling mode IO operation ***
109 =================================
111 (+) Start the DAC peripheral using HAL_DAC_Start()
112 (+) To read the DAC last data output value, use the HAL_DAC_GetValue() function.
113 (+) Stop the DAC peripheral using HAL_DAC_Stop()
115 *** DMA mode IO operation ***
116 ==============================
118 (+) Start the DAC peripheral using HAL_DAC_Start_DMA(), at this stage the user specify the length
119 of data to be transferred at each end of conversion
120 (+) At The end of data transfer HAL_DAC_ConvCpltCallbackCh1()or HAL_DAC_ConvCpltCallbackCh2()
121 function is executed and user can add his own code by customization of function pointer
122 HAL_DAC_ConvCpltCallbackCh1 or HAL_DAC_ConvCpltCallbackCh2
123 (+) In case of transfer Error, HAL_DAC_ErrorCallbackCh1() function is executed and user can
124 add his own code by customization of function pointer HAL_DAC_ErrorCallbackCh1
125 (+) Stop the DAC peripheral using HAL_DAC_Stop_DMA()
127 *** DAC HAL driver macros list ***
128 =============================================
130 Below the list of most used macros in DAC HAL driver.
132 (+) __HAL_DAC_ENABLE : Enable the DAC peripheral
133 (+) __HAL_DAC_DISABLE : Disable the DAC peripheral
134 (+) __HAL_DAC_CLEAR_FLAG: Clear the DAC's pending flags
135 (+) __HAL_DAC_GET_FLAG: Get the selected DAC's flag status
138 (@) You can refer to the DAC HAL driver header file for more useful macros
141 ******************************************************************************
144 * <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
146 * Redistribution and use in source and binary forms, with or without modification,
147 * are permitted provided that the following conditions are met:
148 * 1. Redistributions of source code must retain the above copyright notice,
149 * this list of conditions and the following disclaimer.
150 * 2. Redistributions in binary form must reproduce the above copyright notice,
151 * this list of conditions and the following disclaimer in the documentation
152 * and/or other materials provided with the distribution.
153 * 3. Neither the name of STMicroelectronics nor the names of its contributors
154 * may be used to endorse or promote products derived from this software
155 * without specific prior written permission.
157 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
158 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
159 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
160 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
161 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
162 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
163 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
164 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
165 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
166 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
168 ******************************************************************************
172 /* Includes ------------------------------------------------------------------*/
173 #include "stm32f4xx_hal.h"
175 /** @addtogroup STM32F4xx_HAL_Driver
179 /** @defgroup DAC DAC
180 * @brief DAC driver modules
184 #ifdef HAL_DAC_MODULE_ENABLED
186 #if defined(STM32F405xx) || defined(STM32F415xx) || defined(STM32F407xx) || defined(STM32F417xx) ||\
187 defined(STM32F427xx) || defined(STM32F437xx) || defined(STM32F429xx) || defined(STM32F439xx) ||\
188 defined(STM32F410Tx) || defined(STM32F410Cx) || defined(STM32F410Rx) || defined(STM32F446xx) ||\
189 defined(STM32F469xx) || defined(STM32F479xx) || defined(STM32F413xx) || defined(STM32F423xx)
190 /* Private typedef -----------------------------------------------------------*/
191 /* Private define ------------------------------------------------------------*/
192 /* Private macro -------------------------------------------------------------*/
193 /* Private variables ---------------------------------------------------------*/
194 /** @addtogroup DAC_Private_Functions
197 /* Private function prototypes -----------------------------------------------*/
198 static void DAC_DMAConvCpltCh1(DMA_HandleTypeDef
*hdma
);
199 static void DAC_DMAErrorCh1(DMA_HandleTypeDef
*hdma
);
200 static void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef
*hdma
);
205 /* Exported functions --------------------------------------------------------*/
206 /** @defgroup DAC_Exported_Functions DAC Exported Functions
210 /** @defgroup DAC_Exported_Functions_Group1 Initialization and de-initialization functions
211 * @brief Initialization and Configuration functions
214 ==============================================================================
215 ##### Initialization and de-initialization functions #####
216 ==============================================================================
217 [..] This section provides functions allowing to:
218 (+) Initialize and configure the DAC.
219 (+) De-initialize the DAC.
226 * @brief Initializes the DAC peripheral according to the specified parameters
227 * in the DAC_InitStruct.
228 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
229 * the configuration information for the specified DAC.
232 HAL_StatusTypeDef
HAL_DAC_Init(DAC_HandleTypeDef
* hdac
)
234 /* Check DAC handle */
239 /* Check the parameters */
240 assert_param(IS_DAC_ALL_INSTANCE(hdac
->Instance
));
242 if(hdac
->State
== HAL_DAC_STATE_RESET
)
244 /* Allocate lock resource and initialize it */
245 hdac
->Lock
= HAL_UNLOCKED
;
246 /* Init the low level hardware */
247 HAL_DAC_MspInit(hdac
);
250 /* Initialize the DAC state*/
251 hdac
->State
= HAL_DAC_STATE_BUSY
;
253 /* Set DAC error code to none */
254 hdac
->ErrorCode
= HAL_DAC_ERROR_NONE
;
256 /* Initialize the DAC state*/
257 hdac
->State
= HAL_DAC_STATE_READY
;
259 /* Return function status */
264 * @brief Deinitializes the DAC peripheral registers to their default reset values.
265 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
266 * the configuration information for the specified DAC.
269 HAL_StatusTypeDef
HAL_DAC_DeInit(DAC_HandleTypeDef
* hdac
)
271 /* Check DAC handle */
277 /* Check the parameters */
278 assert_param(IS_DAC_ALL_INSTANCE(hdac
->Instance
));
280 /* Change DAC state */
281 hdac
->State
= HAL_DAC_STATE_BUSY
;
283 /* DeInit the low level hardware */
284 HAL_DAC_MspDeInit(hdac
);
286 /* Set DAC error code to none */
287 hdac
->ErrorCode
= HAL_DAC_ERROR_NONE
;
289 /* Change DAC state */
290 hdac
->State
= HAL_DAC_STATE_RESET
;
295 /* Return function status */
300 * @brief Initializes the DAC MSP.
301 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
302 * the configuration information for the specified DAC.
305 __weak
void HAL_DAC_MspInit(DAC_HandleTypeDef
* hdac
)
307 /* Prevent unused argument(s) compilation warning */
309 /* NOTE : This function Should not be modified, when the callback is needed,
310 the HAL_DAC_MspInit could be implemented in the user file
315 * @brief DeInitializes the DAC MSP.
316 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
317 * the configuration information for the specified DAC.
320 __weak
void HAL_DAC_MspDeInit(DAC_HandleTypeDef
* hdac
)
322 /* Prevent unused argument(s) compilation warning */
324 /* NOTE : This function Should not be modified, when the callback is needed,
325 the HAL_DAC_MspDeInit could be implemented in the user file
333 /** @defgroup DAC_Exported_Functions_Group2 IO operation functions
334 * @brief IO operation functions
337 ==============================================================================
338 ##### IO operation functions #####
339 ==============================================================================
340 [..] This section provides functions allowing to:
341 (+) Start conversion.
343 (+) Start conversion and enable DMA transfer.
344 (+) Stop conversion and disable DMA transfer.
345 (+) Get result of conversion.
352 * @brief Enables DAC and starts conversion of channel.
353 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
354 * the configuration information for the specified DAC.
355 * @param Channel: The selected DAC channel.
356 * This parameter can be one of the following values:
357 * @arg DAC_CHANNEL_1: DAC Channel1 selected
358 * @arg DAC_CHANNEL_2: DAC Channel2 selected
361 HAL_StatusTypeDef
HAL_DAC_Start(DAC_HandleTypeDef
* hdac
, uint32_t Channel
)
363 uint32_t tmp1
= 0U, tmp2
= 0U;
365 /* Check the parameters */
366 assert_param(IS_DAC_CHANNEL(Channel
));
371 /* Change DAC state */
372 hdac
->State
= HAL_DAC_STATE_BUSY
;
374 /* Enable the Peripheral */
375 __HAL_DAC_ENABLE(hdac
, Channel
);
377 if(Channel
== DAC_CHANNEL_1
)
379 tmp1
= hdac
->Instance
->CR
& DAC_CR_TEN1
;
380 tmp2
= hdac
->Instance
->CR
& DAC_CR_TSEL1
;
381 /* Check if software trigger enabled */
382 if((tmp1
== DAC_CR_TEN1
) && (tmp2
== DAC_CR_TSEL1
))
384 /* Enable the selected DAC software conversion */
385 hdac
->Instance
->SWTRIGR
|= (uint32_t)DAC_SWTRIGR_SWTRIG1
;
390 tmp1
= hdac
->Instance
->CR
& DAC_CR_TEN2
;
391 tmp2
= hdac
->Instance
->CR
& DAC_CR_TSEL2
;
392 /* Check if software trigger enabled */
393 if((tmp1
== DAC_CR_TEN2
) && (tmp2
== DAC_CR_TSEL2
))
395 /* Enable the selected DAC software conversion*/
396 hdac
->Instance
->SWTRIGR
|= (uint32_t)DAC_SWTRIGR_SWTRIG2
;
400 /* Change DAC state */
401 hdac
->State
= HAL_DAC_STATE_READY
;
403 /* Process unlocked */
406 /* Return function status */
411 * @brief Disables DAC and stop conversion of channel.
412 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
413 * the configuration information for the specified DAC.
414 * @param Channel: The selected DAC channel.
415 * This parameter can be one of the following values:
416 * @arg DAC_CHANNEL_1: DAC Channel1 selected
417 * @arg DAC_CHANNEL_2: DAC Channel2 selected
420 HAL_StatusTypeDef
HAL_DAC_Stop(DAC_HandleTypeDef
* hdac
, uint32_t Channel
)
422 /* Check the parameters */
423 assert_param(IS_DAC_CHANNEL(Channel
));
425 /* Disable the Peripheral */
426 __HAL_DAC_DISABLE(hdac
, Channel
);
428 /* Change DAC state */
429 hdac
->State
= HAL_DAC_STATE_READY
;
431 /* Return function status */
436 * @brief Enables DAC and starts conversion of channel.
437 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
438 * the configuration information for the specified DAC.
439 * @param Channel: The selected DAC channel.
440 * This parameter can be one of the following values:
441 * @arg DAC_CHANNEL_1: DAC Channel1 selected
442 * @arg DAC_CHANNEL_2: DAC Channel2 selected
443 * @param pData: The destination peripheral Buffer address.
444 * @param Length: The length of data to be transferred from memory to DAC peripheral
445 * @param Alignment: Specifies the data alignment for DAC channel.
446 * This parameter can be one of the following values:
447 * @arg DAC_ALIGN_8B_R: 8bit right data alignment selected
448 * @arg DAC_ALIGN_12B_L: 12bit left data alignment selected
449 * @arg DAC_ALIGN_12B_R: 12bit right data alignment selected
452 HAL_StatusTypeDef
HAL_DAC_Start_DMA(DAC_HandleTypeDef
* hdac
, uint32_t Channel
, uint32_t* pData
, uint32_t Length
, uint32_t Alignment
)
454 uint32_t tmpreg
= 0U;
456 /* Check the parameters */
457 assert_param(IS_DAC_CHANNEL(Channel
));
458 assert_param(IS_DAC_ALIGN(Alignment
));
463 /* Change DAC state */
464 hdac
->State
= HAL_DAC_STATE_BUSY
;
466 if(Channel
== DAC_CHANNEL_1
)
468 /* Set the DMA transfer complete callback for channel1 */
469 hdac
->DMA_Handle1
->XferCpltCallback
= DAC_DMAConvCpltCh1
;
471 /* Set the DMA half transfer complete callback for channel1 */
472 hdac
->DMA_Handle1
->XferHalfCpltCallback
= DAC_DMAHalfConvCpltCh1
;
474 /* Set the DMA error callback for channel1 */
475 hdac
->DMA_Handle1
->XferErrorCallback
= DAC_DMAErrorCh1
;
477 /* Enable the selected DAC channel1 DMA request */
478 hdac
->Instance
->CR
|= DAC_CR_DMAEN1
;
480 /* Case of use of channel 1 */
483 case DAC_ALIGN_12B_R
:
484 /* Get DHR12R1 address */
485 tmpreg
= (uint32_t)&hdac
->Instance
->DHR12R1
;
487 case DAC_ALIGN_12B_L
:
488 /* Get DHR12L1 address */
489 tmpreg
= (uint32_t)&hdac
->Instance
->DHR12L1
;
492 /* Get DHR8R1 address */
493 tmpreg
= (uint32_t)&hdac
->Instance
->DHR8R1
;
501 /* Set the DMA transfer complete callback for channel2 */
502 hdac
->DMA_Handle2
->XferCpltCallback
= DAC_DMAConvCpltCh2
;
504 /* Set the DMA half transfer complete callback for channel2 */
505 hdac
->DMA_Handle2
->XferHalfCpltCallback
= DAC_DMAHalfConvCpltCh2
;
507 /* Set the DMA error callback for channel2 */
508 hdac
->DMA_Handle2
->XferErrorCallback
= DAC_DMAErrorCh2
;
510 /* Enable the selected DAC channel2 DMA request */
511 hdac
->Instance
->CR
|= DAC_CR_DMAEN2
;
513 /* Case of use of channel 2 */
516 case DAC_ALIGN_12B_R
:
517 /* Get DHR12R2 address */
518 tmpreg
= (uint32_t)&hdac
->Instance
->DHR12R2
;
520 case DAC_ALIGN_12B_L
:
521 /* Get DHR12L2 address */
522 tmpreg
= (uint32_t)&hdac
->Instance
->DHR12L2
;
525 /* Get DHR8R2 address */
526 tmpreg
= (uint32_t)&hdac
->Instance
->DHR8R2
;
533 /* Enable the DMA Stream */
534 if(Channel
== DAC_CHANNEL_1
)
536 /* Enable the DAC DMA underrun interrupt */
537 __HAL_DAC_ENABLE_IT(hdac
, DAC_IT_DMAUDR1
);
539 /* Enable the DMA Stream */
540 HAL_DMA_Start_IT(hdac
->DMA_Handle1
, (uint32_t)pData
, tmpreg
, Length
);
544 /* Enable the DAC DMA underrun interrupt */
545 __HAL_DAC_ENABLE_IT(hdac
, DAC_IT_DMAUDR2
);
547 /* Enable the DMA Stream */
548 HAL_DMA_Start_IT(hdac
->DMA_Handle2
, (uint32_t)pData
, tmpreg
, Length
);
551 /* Enable the Peripheral */
552 __HAL_DAC_ENABLE(hdac
, Channel
);
554 /* Process Unlocked */
557 /* Return function status */
562 * @brief Disables DAC and stop conversion of channel.
563 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
564 * the configuration information for the specified DAC.
565 * @param Channel: The selected DAC channel.
566 * This parameter can be one of the following values:
567 * @arg DAC_CHANNEL_1: DAC Channel1 selected
568 * @arg DAC_CHANNEL_2: DAC Channel2 selected
571 HAL_StatusTypeDef
HAL_DAC_Stop_DMA(DAC_HandleTypeDef
* hdac
, uint32_t Channel
)
573 HAL_StatusTypeDef status
= HAL_OK
;
575 /* Check the parameters */
576 assert_param(IS_DAC_CHANNEL(Channel
));
578 /* Disable the selected DAC channel DMA request */
579 hdac
->Instance
->CR
&= ~(DAC_CR_DMAEN1
<< Channel
);
581 /* Disable the Peripheral */
582 __HAL_DAC_DISABLE(hdac
, Channel
);
584 /* Disable the DMA Channel */
585 /* Channel1 is used */
586 if(Channel
== DAC_CHANNEL_1
)
588 status
= HAL_DMA_Abort(hdac
->DMA_Handle1
);
590 else /* Channel2 is used for */
592 status
= HAL_DMA_Abort(hdac
->DMA_Handle2
);
595 /* Check if DMA Channel effectively disabled */
598 /* Update DAC state machine to error */
599 hdac
->State
= HAL_DAC_STATE_ERROR
;
603 /* Change DAC state */
604 hdac
->State
= HAL_DAC_STATE_READY
;
607 /* Return function status */
612 * @brief Returns the last data output value of the selected DAC channel.
613 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
614 * the configuration information for the specified DAC.
615 * @param Channel: The selected DAC channel.
616 * This parameter can be one of the following values:
617 * @arg DAC_CHANNEL_1: DAC Channel1 selected
618 * @arg DAC_CHANNEL_2: DAC Channel2 selected
619 * @retval The selected DAC channel data output value.
621 uint32_t HAL_DAC_GetValue(DAC_HandleTypeDef
* hdac
, uint32_t Channel
)
623 /* Check the parameters */
624 assert_param(IS_DAC_CHANNEL(Channel
));
626 /* Returns the DAC channel data output register value */
627 if(Channel
== DAC_CHANNEL_1
)
629 return hdac
->Instance
->DOR1
;
633 return hdac
->Instance
->DOR2
;
638 * @brief Handles DAC interrupt request
639 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
640 * the configuration information for the specified DAC.
643 void HAL_DAC_IRQHandler(DAC_HandleTypeDef
* hdac
)
645 /* Check underrun channel 1 flag */
646 if(__HAL_DAC_GET_FLAG(hdac
, DAC_FLAG_DMAUDR1
))
648 /* Change DAC state to error state */
649 hdac
->State
= HAL_DAC_STATE_ERROR
;
651 /* Set DAC error code to channel1 DMA underrun error */
652 hdac
->ErrorCode
|= HAL_DAC_ERROR_DMAUNDERRUNCH1
;
654 /* Clear the underrun flag */
655 __HAL_DAC_CLEAR_FLAG(hdac
,DAC_FLAG_DMAUDR1
);
657 /* Disable the selected DAC channel1 DMA request */
658 hdac
->Instance
->CR
&= ~DAC_CR_DMAEN1
;
661 HAL_DAC_DMAUnderrunCallbackCh1(hdac
);
663 /* Check underrun channel 2 flag */
664 if(__HAL_DAC_GET_FLAG(hdac
, DAC_FLAG_DMAUDR2
))
666 /* Change DAC state to error state */
667 hdac
->State
= HAL_DAC_STATE_ERROR
;
669 /* Set DAC error code to channel2 DMA underrun error */
670 hdac
->ErrorCode
|= HAL_DAC_ERROR_DMAUNDERRUNCH2
;
672 /* Clear the underrun flag */
673 __HAL_DAC_CLEAR_FLAG(hdac
,DAC_FLAG_DMAUDR2
);
675 /* Disable the selected DAC channel1 DMA request */
676 hdac
->Instance
->CR
&= ~DAC_CR_DMAEN2
;
679 HAL_DACEx_DMAUnderrunCallbackCh2(hdac
);
684 * @brief Conversion complete callback in non blocking mode for Channel1
685 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
686 * the configuration information for the specified DAC.
689 __weak
void HAL_DAC_ConvCpltCallbackCh1(DAC_HandleTypeDef
* hdac
)
691 /* Prevent unused argument(s) compilation warning */
693 /* NOTE : This function Should not be modified, when the callback is needed,
694 the HAL_DAC_ConvCpltCallback could be implemented in the user file
699 * @brief Conversion half DMA transfer callback in non blocking mode for Channel1
700 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
701 * the configuration information for the specified DAC.
704 __weak
void HAL_DAC_ConvHalfCpltCallbackCh1(DAC_HandleTypeDef
* hdac
)
706 /* Prevent unused argument(s) compilation warning */
708 /* NOTE : This function Should not be modified, when the callback is needed,
709 the HAL_DAC_ConvHalfCpltCallbackCh1 could be implemented in the user file
714 * @brief Error DAC callback for Channel1.
715 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
716 * the configuration information for the specified DAC.
719 __weak
void HAL_DAC_ErrorCallbackCh1(DAC_HandleTypeDef
*hdac
)
721 /* Prevent unused argument(s) compilation warning */
723 /* NOTE : This function Should not be modified, when the callback is needed,
724 the HAL_DAC_ErrorCallbackCh1 could be implemented in the user file
729 * @brief DMA underrun DAC callback for channel1.
730 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
731 * the configuration information for the specified DAC.
734 __weak
void HAL_DAC_DMAUnderrunCallbackCh1(DAC_HandleTypeDef
*hdac
)
736 /* Prevent unused argument(s) compilation warning */
738 /* NOTE : This function Should not be modified, when the callback is needed,
739 the HAL_DAC_DMAUnderrunCallbackCh1 could be implemented in the user file
747 /** @defgroup DAC_Exported_Functions_Group3 Peripheral Control functions
748 * @brief Peripheral Control functions
751 ==============================================================================
752 ##### Peripheral Control functions #####
753 ==============================================================================
754 [..] This section provides functions allowing to:
755 (+) Configure channels.
756 (+) Set the specified data holding register value for DAC channel.
763 * @brief Configures the selected DAC channel.
764 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
765 * the configuration information for the specified DAC.
766 * @param sConfig: DAC configuration structure.
767 * @param Channel: The selected DAC channel.
768 * This parameter can be one of the following values:
769 * @arg DAC_CHANNEL_1: DAC Channel1 selected
770 * @arg DAC_CHANNEL_2: DAC Channel2 selected
773 HAL_StatusTypeDef
HAL_DAC_ConfigChannel(DAC_HandleTypeDef
* hdac
, DAC_ChannelConfTypeDef
* sConfig
, uint32_t Channel
)
775 uint32_t tmpreg1
= 0U, tmpreg2
= 0U;
777 /* Check the DAC parameters */
778 assert_param(IS_DAC_TRIGGER(sConfig
->DAC_Trigger
));
779 assert_param(IS_DAC_OUTPUT_BUFFER_STATE(sConfig
->DAC_OutputBuffer
));
780 assert_param(IS_DAC_CHANNEL(Channel
));
785 /* Change DAC state */
786 hdac
->State
= HAL_DAC_STATE_BUSY
;
788 /* Get the DAC CR value */
789 tmpreg1
= hdac
->Instance
->CR
;
790 /* Clear BOFFx, TENx, TSELx, WAVEx and MAMPx bits */
791 tmpreg1
&= ~(((uint32_t)(DAC_CR_MAMP1
| DAC_CR_WAVE1
| DAC_CR_TSEL1
| DAC_CR_TEN1
| DAC_CR_BOFF1
)) << Channel
);
792 /* Configure for the selected DAC channel: buffer output, trigger */
793 /* Set TSELx and TENx bits according to DAC_Trigger value */
794 /* Set BOFFx bit according to DAC_OutputBuffer value */
795 tmpreg2
= (sConfig
->DAC_Trigger
| sConfig
->DAC_OutputBuffer
);
796 /* Calculate CR register value depending on DAC_Channel */
797 tmpreg1
|= tmpreg2
<< Channel
;
798 /* Write to DAC CR */
799 hdac
->Instance
->CR
= tmpreg1
;
800 /* Disable wave generation */
801 hdac
->Instance
->CR
&= ~(DAC_CR_WAVE1
<< Channel
);
803 /* Change DAC state */
804 hdac
->State
= HAL_DAC_STATE_READY
;
806 /* Process unlocked */
809 /* Return function status */
814 * @brief Set the specified data holding register value for DAC channel.
815 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
816 * the configuration information for the specified DAC.
817 * @param Channel: The selected DAC channel.
818 * This parameter can be one of the following values:
819 * @arg DAC_CHANNEL_1: DAC Channel1 selected
820 * @arg DAC_CHANNEL_2: DAC Channel2 selected
821 * @param Alignment: Specifies the data alignment.
822 * This parameter can be one of the following values:
823 * @arg DAC_ALIGN_8B_R: 8bit right data alignment selected
824 * @arg DAC_ALIGN_12B_L: 12bit left data alignment selected
825 * @arg DAC_ALIGN_12B_R: 12bit right data alignment selected
826 * @param Data: Data to be loaded in the selected data holding register.
829 HAL_StatusTypeDef
HAL_DAC_SetValue(DAC_HandleTypeDef
* hdac
, uint32_t Channel
, uint32_t Alignment
, uint32_t Data
)
831 __IO
uint32_t tmp
= 0U;
833 /* Check the parameters */
834 assert_param(IS_DAC_CHANNEL(Channel
));
835 assert_param(IS_DAC_ALIGN(Alignment
));
836 assert_param(IS_DAC_DATA(Data
));
838 tmp
= (uint32_t)hdac
->Instance
;
839 if(Channel
== DAC_CHANNEL_1
)
841 tmp
+= DAC_DHR12R1_ALIGNMENT(Alignment
);
845 tmp
+= DAC_DHR12R2_ALIGNMENT(Alignment
);
848 /* Set the DAC channel1 selected data holding register */
849 *(__IO
uint32_t *) tmp
= Data
;
851 /* Return function status */
859 /** @defgroup DAC_Exported_Functions_Group4 Peripheral State and Errors functions
860 * @brief Peripheral State and Errors functions
863 ==============================================================================
864 ##### Peripheral State and Errors functions #####
865 ==============================================================================
867 This subsection provides functions allowing to
868 (+) Check the DAC state.
869 (+) Check the DAC Errors.
876 * @brief return the DAC state
877 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
878 * the configuration information for the specified DAC.
881 HAL_DAC_StateTypeDef
HAL_DAC_GetState(DAC_HandleTypeDef
* hdac
)
883 /* Return DAC state */
889 * @brief Return the DAC error code
890 * @param hdac: pointer to a DAC_HandleTypeDef structure that contains
891 * the configuration information for the specified DAC.
892 * @retval DAC Error Code
894 uint32_t HAL_DAC_GetError(DAC_HandleTypeDef
*hdac
)
896 return hdac
->ErrorCode
;
904 * @brief DMA conversion complete callback.
905 * @param hdma: pointer to a DMA_HandleTypeDef structure that contains
906 * the configuration information for the specified DMA module.
909 static void DAC_DMAConvCpltCh1(DMA_HandleTypeDef
*hdma
)
911 DAC_HandleTypeDef
* hdac
= ( DAC_HandleTypeDef
* )((DMA_HandleTypeDef
* )hdma
)->Parent
;
913 HAL_DAC_ConvCpltCallbackCh1(hdac
);
915 hdac
->State
= HAL_DAC_STATE_READY
;
919 * @brief DMA half transfer complete callback.
920 * @param hdma: pointer to a DMA_HandleTypeDef structure that contains
921 * the configuration information for the specified DMA module.
924 static void DAC_DMAHalfConvCpltCh1(DMA_HandleTypeDef
*hdma
)
926 DAC_HandleTypeDef
* hdac
= ( DAC_HandleTypeDef
* )((DMA_HandleTypeDef
* )hdma
)->Parent
;
927 /* Conversion complete callback */
928 HAL_DAC_ConvHalfCpltCallbackCh1(hdac
);
932 * @brief DMA error callback
933 * @param hdma: pointer to a DMA_HandleTypeDef structure that contains
934 * the configuration information for the specified DMA module.
937 static void DAC_DMAErrorCh1(DMA_HandleTypeDef
*hdma
)
939 DAC_HandleTypeDef
* hdac
= ( DAC_HandleTypeDef
* )((DMA_HandleTypeDef
* )hdma
)->Parent
;
941 /* Set DAC error code to DMA error */
942 hdac
->ErrorCode
|= HAL_DAC_ERROR_DMA
;
944 HAL_DAC_ErrorCallbackCh1(hdac
);
946 hdac
->State
= HAL_DAC_STATE_READY
;
952 #endif /* STM32F405xx || STM32F415xx || STM32F407xx || STM32F417xx ||\
953 STM32F427xx || STM32F437xx || STM32F429xx || STM32F439xx ||\
954 STM32F410xx || STM32F446xx || STM32F469xx || STM32F479xx ||\
955 STM32F413xx || STM32F423xx */
956 #endif /* HAL_DAC_MODULE_ENABLED */
966 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/