12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184 |
- /**
- ******************************************************************************
- * @file stm32g4xx_hal_dac_ex.c
- * @author MCD Application Team
- * @brief Extended DAC HAL module driver.
- * This file provides firmware functions to manage the extended
- * functionalities of the DAC peripheral.
- *
- *
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2019 STMicroelectronics.
- * All rights reserved.
- *
- * This software is licensed under terms that can be found in the LICENSE file
- * in the root directory of this software component.
- * If no LICENSE file comes with this software, it is provided AS-IS.
- *
- ******************************************************************************
- @verbatim
- ==============================================================================
- ##### How to use this driver #####
- ==============================================================================
- [..]
- *** Dual mode IO operation ***
- ==============================
- [..]
- (+) Use HAL_DACEx_DualStart() to enable both channel and start conversion
- for dual mode operation.
- If software trigger is selected, using HAL_DACEx_DualStart() will start
- the conversion of the value previously set by HAL_DACEx_DualSetValue().
- (+) Use HAL_DACEx_DualStop() to disable both channel and stop conversion
- for dual mode operation.
- (+) Use HAL_DACEx_DualStart_DMA() to enable both channel and start conversion
- for dual mode operation using DMA to feed DAC converters.
- First issued trigger will start the conversion of the value previously
- set by HAL_DACEx_DualSetValue().
- The same callbacks that are used in single mode are called in dual mode to notify
- transfer completion (half complete or complete), errors or underrun.
- (+) Use HAL_DACEx_DualStop_DMA() to disable both channel and stop conversion
- for dual mode operation using DMA to feed DAC converters.
- (+) When Dual mode is enabled (i.e. DAC Channel1 and Channel2 are used simultaneously) :
- Use HAL_DACEx_DualGetValue() to get digital data to be converted and use
- HAL_DACEx_DualSetValue() to set digital value to converted simultaneously in
- Channel 1 and Channel 2.
- *** Signal generation operation ***
- ===================================
- [..]
- (+) Use HAL_DACEx_TriangleWaveGenerate() to generate Triangle signal.
- (+) Use HAL_DACEx_NoiseWaveGenerate() to generate Noise signal.
- (+) Use HAL_DACEx_SawtoothWaveGenerate() to generate sawtooth signal.
- (+) Use HAL_DACEx_SawtoothWaveDataReset() to reset sawtooth wave.
- (+) Use HAL_DACEx_SawtoothWaveDataStep() to step sawtooth wave.
- (+) HAL_DACEx_SelfCalibrate to calibrate one DAC channel.
- (+) HAL_DACEx_SetUserTrimming to set user trimming value.
- (+) HAL_DACEx_GetTrimOffset to retrieve trimming value (factory setting
- after reset, user setting if HAL_DACEx_SetUserTrimming have been used
- at least one time after reset).
- @endverbatim
- ******************************************************************************
- */
- /* Includes ------------------------------------------------------------------*/
- #include "stm32g4xx_hal.h"
- /** @addtogroup STM32G4xx_HAL_Driver
- * @{
- */
- #ifdef HAL_DAC_MODULE_ENABLED
- #if defined(DAC1) || defined(DAC2) || defined(DAC3) ||defined (DAC4)
- /** @defgroup DACEx DACEx
- * @brief DAC Extended HAL module driver
- * @{
- */
- /* Private typedef -----------------------------------------------------------*/
- /* Private define ------------------------------------------------------------*/
- /* Delay for DAC minimum trimming time. */
- /* Note: minimum time needed between two calibration steps */
- /* The delay below is specified under conditions: */
- /* - DAC channel output buffer enabled */
- /* Literal set to maximum value (refer to device datasheet, */
- /* electrical characteristics, parameter "tTRIM"). */
- /* Unit: us */
- #define DAC_DELAY_TRIM_US (50UL) /*!< Delay for DAC minimum trimming time */
- /* Private macro -------------------------------------------------------------*/
- /* Private variables ---------------------------------------------------------*/
- /* Private function prototypes -----------------------------------------------*/
- /* Exported functions --------------------------------------------------------*/
- /** @defgroup DACEx_Exported_Functions DACEx Exported Functions
- * @{
- */
- /** @defgroup DACEx_Exported_Functions_Group2 IO operation functions
- * @brief Extended IO operation functions
- *
- @verbatim
- ==============================================================================
- ##### Extended features functions #####
- ==============================================================================
- [..] This section provides functions allowing to:
- (+) Start conversion.
- (+) Stop conversion.
- (+) Start conversion and enable DMA transfer.
- (+) Stop conversion and disable DMA transfer.
- (+) Get result of conversion.
- (+) Get result of dual mode conversion.
- @endverbatim
- * @{
- */
- /**
- * @brief Enables DAC and starts conversion of both channels.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_DualStart(DAC_HandleTypeDef *hdac)
- {
- uint32_t tmp_swtrig = 0UL;
- __IO uint32_t wait_loop_index;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, DAC_CHANNEL_2));
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- /* Enable the Peripheral */
- __HAL_DAC_ENABLE(hdac, DAC_CHANNEL_1);
- __HAL_DAC_ENABLE(hdac, DAC_CHANNEL_2);
- /* Ensure minimum wait before using peripheral after enabling it */
- /* Wait loop initialization and execution */
- /* Note: Variable divided by 2 to compensate partially */
- /* CPU processing cycles, scaling in us split to not */
- /* exceed 32 bits register capacity and handle low frequency. */
- wait_loop_index = ((DAC_DELAY_STARTUP_US / 10UL) * ((SystemCoreClock / (100000UL * 2UL)) + 1UL));
- while (wait_loop_index != 0UL)
- {
- wait_loop_index--;
- }
- /* Check if software trigger enabled */
- if ((hdac->Instance->CR & (DAC_CR_TEN1 | DAC_CR_TSEL1)) == DAC_TRIGGER_SOFTWARE)
- {
- tmp_swtrig |= DAC_SWTRIGR_SWTRIG1;
- }
- if ((hdac->Instance->CR & (DAC_CR_TEN2 | DAC_CR_TSEL2)) == (DAC_TRIGGER_SOFTWARE << (DAC_CHANNEL_2 & 0x10UL)))
- {
- tmp_swtrig |= DAC_SWTRIGR_SWTRIG2;
- }
- /* Enable the selected DAC software conversion*/
- SET_BIT(hdac->Instance->SWTRIGR, tmp_swtrig);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Disables DAC and stop conversion of both channels.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_DualStop(DAC_HandleTypeDef *hdac)
- {
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, DAC_CHANNEL_2));
- /* Disable the Peripheral */
- __HAL_DAC_DISABLE(hdac, DAC_CHANNEL_1);
- __HAL_DAC_DISABLE(hdac, DAC_CHANNEL_2);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Enables DAC and starts conversion of both channel 1 and 2 of the same DAC.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The DAC channel that will request data from DMA.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected
- * @param pData The destination peripheral Buffer address.
- * @param Length The length of data to be transferred from memory to DAC peripheral
- * @param Alignment Specifies the data alignment for DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_ALIGN_8B_R: 8bit right data alignment selected
- * @arg DAC_ALIGN_12B_L: 12bit left data alignment selected
- * @arg DAC_ALIGN_12B_R: 12bit right data alignment selected
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_DualStart_DMA(DAC_HandleTypeDef *hdac, uint32_t Channel,
- const uint32_t *pData, uint32_t Length, uint32_t Alignment)
- {
- HAL_StatusTypeDef status;
- uint32_t tmpreg = 0UL;
- __IO uint32_t wait_loop_index;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- /* Ensure Channel 2 exists for this particular DAC instance */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, DAC_CHANNEL_2));
- assert_param(IS_DAC_ALIGN(Alignment));
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- if (Channel == DAC_CHANNEL_1)
- {
- /* Set the DMA transfer complete callback for channel1 */
- hdac->DMA_Handle1->XferCpltCallback = DAC_DMAConvCpltCh1;
- /* Set the DMA half transfer complete callback for channel1 */
- hdac->DMA_Handle1->XferHalfCpltCallback = DAC_DMAHalfConvCpltCh1;
- /* Set the DMA error callback for channel1 */
- hdac->DMA_Handle1->XferErrorCallback = DAC_DMAErrorCh1;
- /* Enable the selected DAC channel1 DMA request */
- SET_BIT(hdac->Instance->CR, DAC_CR_DMAEN1);
- }
- else
- {
- /* Set the DMA transfer complete callback for channel2 */
- hdac->DMA_Handle2->XferCpltCallback = DAC_DMAConvCpltCh2;
- /* Set the DMA half transfer complete callback for channel2 */
- hdac->DMA_Handle2->XferHalfCpltCallback = DAC_DMAHalfConvCpltCh2;
- /* Set the DMA error callback for channel2 */
- hdac->DMA_Handle2->XferErrorCallback = DAC_DMAErrorCh2;
- /* Enable the selected DAC channel2 DMA request */
- SET_BIT(hdac->Instance->CR, DAC_CR_DMAEN2);
- }
- switch (Alignment)
- {
- case DAC_ALIGN_12B_R:
- /* Get DHR12R1 address */
- tmpreg = (uint32_t)&hdac->Instance->DHR12RD;
- break;
- case DAC_ALIGN_12B_L:
- /* Get DHR12L1 address */
- tmpreg = (uint32_t)&hdac->Instance->DHR12LD;
- break;
- case DAC_ALIGN_8B_R:
- /* Get DHR8R1 address */
- tmpreg = (uint32_t)&hdac->Instance->DHR8RD;
- break;
- default:
- break;
- }
- /* Enable the DMA channel */
- if (Channel == DAC_CHANNEL_1)
- {
- /* Enable the DAC DMA underrun interrupt */
- __HAL_DAC_ENABLE_IT(hdac, DAC_IT_DMAUDR1);
- /* Enable the DMA channel */
- status = HAL_DMA_Start_IT(hdac->DMA_Handle1, (uint32_t)pData, tmpreg, Length);
- }
- else
- {
- /* Enable the DAC DMA underrun interrupt */
- __HAL_DAC_ENABLE_IT(hdac, DAC_IT_DMAUDR2);
- /* Enable the DMA channel */
- status = HAL_DMA_Start_IT(hdac->DMA_Handle2, (uint32_t)pData, tmpreg, Length);
- }
- /* Process Unlocked */
- __HAL_UNLOCK(hdac);
- if (status == HAL_OK)
- {
- /* Enable the Peripheral */
- __HAL_DAC_ENABLE(hdac, DAC_CHANNEL_1);
- __HAL_DAC_ENABLE(hdac, DAC_CHANNEL_2);
- /* Ensure minimum wait before using peripheral after enabling it */
- /* Wait loop initialization and execution */
- /* Note: Variable divided by 2 to compensate partially */
- /* CPU processing cycles, scaling in us split to not */
- /* exceed 32 bits register capacity and handle low frequency. */
- wait_loop_index = ((DAC_DELAY_STARTUP_US / 10UL) * ((SystemCoreClock / (100000UL * 2UL)) + 1UL));
- while (wait_loop_index != 0UL)
- {
- wait_loop_index--;
- }
- }
- else
- {
- hdac->ErrorCode |= HAL_DAC_ERROR_DMA;
- }
- /* Return function status */
- return status;
- }
- /**
- * @brief Disables DAC and stop conversion both channel.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The DAC channel that requests data from DMA.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_DualStop_DMA(DAC_HandleTypeDef *hdac, uint32_t Channel)
- {
- HAL_StatusTypeDef status;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Ensure Channel 2 exists for this particular DAC instance */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, DAC_CHANNEL_2));
- /* Disable the selected DAC channel DMA request */
- CLEAR_BIT(hdac->Instance->CR, DAC_CR_DMAEN2 | DAC_CR_DMAEN1);
- /* Disable the Peripheral */
- __HAL_DAC_DISABLE(hdac, DAC_CHANNEL_1);
- __HAL_DAC_DISABLE(hdac, DAC_CHANNEL_2);
- /* Disable the DMA channel */
- /* Channel1 is used */
- if (Channel == DAC_CHANNEL_1)
- {
- /* Disable the DMA channel */
- status = HAL_DMA_Abort(hdac->DMA_Handle1);
- /* Disable the DAC DMA underrun interrupt */
- __HAL_DAC_DISABLE_IT(hdac, DAC_IT_DMAUDR1);
- }
- else
- {
- /* Disable the DMA channel */
- status = HAL_DMA_Abort(hdac->DMA_Handle2);
- /* Disable the DAC DMA underrun interrupt */
- __HAL_DAC_DISABLE_IT(hdac, DAC_IT_DMAUDR2);
- }
- /* Check if DMA Channel effectively disabled */
- if (status != HAL_OK)
- {
- /* Update DAC state machine to error */
- hdac->State = HAL_DAC_STATE_ERROR;
- }
- else
- {
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- }
- /* Return function status */
- return status;
- }
- /**
- * @brief Enable or disable the selected DAC channel wave generation.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @param Amplitude Select max triangle amplitude.
- * This parameter can be one of the following values:
- * @arg DAC_TRIANGLEAMPLITUDE_1: Select max triangle amplitude of 1
- * @arg DAC_TRIANGLEAMPLITUDE_3: Select max triangle amplitude of 3
- * @arg DAC_TRIANGLEAMPLITUDE_7: Select max triangle amplitude of 7
- * @arg DAC_TRIANGLEAMPLITUDE_15: Select max triangle amplitude of 15
- * @arg DAC_TRIANGLEAMPLITUDE_31: Select max triangle amplitude of 31
- * @arg DAC_TRIANGLEAMPLITUDE_63: Select max triangle amplitude of 63
- * @arg DAC_TRIANGLEAMPLITUDE_127: Select max triangle amplitude of 127
- * @arg DAC_TRIANGLEAMPLITUDE_255: Select max triangle amplitude of 255
- * @arg DAC_TRIANGLEAMPLITUDE_511: Select max triangle amplitude of 511
- * @arg DAC_TRIANGLEAMPLITUDE_1023: Select max triangle amplitude of 1023
- * @arg DAC_TRIANGLEAMPLITUDE_2047: Select max triangle amplitude of 2047
- * @arg DAC_TRIANGLEAMPLITUDE_4095: Select max triangle amplitude of 4095
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_TriangleWaveGenerate(DAC_HandleTypeDef *hdac, uint32_t Channel, uint32_t Amplitude)
- {
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- assert_param(IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE(Amplitude));
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- /* Enable the triangle wave generation for the selected DAC channel */
- MODIFY_REG(hdac->Instance->CR, ((DAC_CR_WAVE1) | (DAC_CR_MAMP1)) << (Channel & 0x10UL),
- (DAC_CR_WAVE1_1 | Amplitude) << (Channel & 0x10UL));
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Enable or disable the selected DAC channel wave generation.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @param Amplitude Unmask DAC channel LFSR for noise wave generation.
- * This parameter can be one of the following values:
- * @arg DAC_LFSRUNMASK_BIT0: Unmask DAC channel LFSR bit0 for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS1_0: Unmask DAC channel LFSR bit[1:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS2_0: Unmask DAC channel LFSR bit[2:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS3_0: Unmask DAC channel LFSR bit[3:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS4_0: Unmask DAC channel LFSR bit[4:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS5_0: Unmask DAC channel LFSR bit[5:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS6_0: Unmask DAC channel LFSR bit[6:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS7_0: Unmask DAC channel LFSR bit[7:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS8_0: Unmask DAC channel LFSR bit[8:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS9_0: Unmask DAC channel LFSR bit[9:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS10_0: Unmask DAC channel LFSR bit[10:0] for noise wave generation
- * @arg DAC_LFSRUNMASK_BITS11_0: Unmask DAC channel LFSR bit[11:0] for noise wave generation
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_NoiseWaveGenerate(DAC_HandleTypeDef *hdac, uint32_t Channel, uint32_t Amplitude)
- {
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- assert_param(IS_DAC_LFSR_UNMASK_TRIANGLE_AMPLITUDE(Amplitude));
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- /* Enable the noise wave generation for the selected DAC channel */
- MODIFY_REG(hdac->Instance->CR, ((DAC_CR_WAVE1) | (DAC_CR_MAMP1)) << (Channel & 0x10UL),
- (DAC_CR_WAVE1_0 | Amplitude) << (Channel & 0x10UL));
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Enable or disable the selected DAC channel sawtooth wave generation.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @param Polarity polarity to be used for wave generation.
- * This parameter can be one of the following values:
- * @arg DAC_SAWTOOTH_POLARITY_DECREMENT
- * @arg DAC_SAWTOOTH_POLARITY_INCREMENT
- * @param ResetData Sawtooth wave reset value.
- * Range is from 0 to DAC full range 4095 (0xFFF)
- * @param StepData Sawtooth wave step value.
- * 12.4 bit format, unsigned: 12 bits exponent / 4 bits mantissa
- * Step value step is 1/16 = 0.0625
- * Step value range is 0.0000 to 4095.9375 (0xFFF.F)
- * @note Sawtooth reset and step triggers are configured by calling @ref HAL_DAC_ConfigChannel
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_SawtoothWaveGenerate(DAC_HandleTypeDef *hdac, uint32_t Channel, uint32_t Polarity,
- uint32_t ResetData, uint32_t StepData)
- {
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- assert_param(IS_DAC_SAWTOOTH_POLARITY(Polarity));
- assert_param(IS_DAC_RESET_DATA(ResetData));
- assert_param(IS_DAC_STEP_DATA(StepData));
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- if (Channel == DAC_CHANNEL_1)
- {
- /* Configure the sawtooth wave generation data parameters */
- MODIFY_REG(hdac->Instance->STR1,
- DAC_STR1_STINCDATA1 | DAC_STR1_STDIR1 | DAC_STR1_STRSTDATA1,
- (StepData << DAC_STR1_STINCDATA1_Pos)
- | Polarity
- | (ResetData << DAC_STR1_STRSTDATA1_Pos));
- }
- else
- {
- /* Configure the sawtooth wave generation data parameters */
- MODIFY_REG(hdac->Instance->STR2,
- DAC_STR2_STINCDATA2 | DAC_STR2_STDIR2 | DAC_STR2_STRSTDATA2,
- (StepData << DAC_STR2_STINCDATA2_Pos)
- | Polarity
- | (ResetData << DAC_STR2_STRSTDATA2_Pos));
- }
- /* Enable the sawtooth wave generation for the selected DAC channel */
- MODIFY_REG(hdac->Instance->CR,
- (DAC_CR_WAVE1) << (Channel & 0x10UL),
- (uint32_t)(DAC_CR_WAVE1_1 | DAC_CR_WAVE1_0) << (Channel & 0x10UL));
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Trig sawtooth wave reset
- * @note This function allows to reset sawtooth wave in case of SW trigger
- * has been configured for this usage.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_SawtoothWaveDataReset(DAC_HandleTypeDef *hdac, uint32_t Channel)
- {
- HAL_StatusTypeDef status = HAL_OK;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- /* Process locked */
- __HAL_LOCK(hdac);
- if (((hdac->Instance->STMODR >> (Channel & 0x10UL)) & DAC_STMODR_STRSTTRIGSEL1) == 0UL /* SW TRIGGER */)
- {
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- if (Channel == DAC_CHANNEL_1)
- {
- /* Enable the selected DAC software conversion */
- SET_BIT(hdac->Instance->SWTRIGR, DAC_SWTRIGR_SWTRIG1);
- }
- else
- {
- /* Enable the selected DAC software conversion */
- SET_BIT(hdac->Instance->SWTRIGR, DAC_SWTRIGR_SWTRIG2);
- }
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- }
- else
- {
- status = HAL_ERROR;
- }
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return status;
- }
- /**
- * @brief Trig sawtooth wave step
- * @note This function allows to generate step in sawtooth wave in case of
- * SW trigger has been configured for this usage.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_SawtoothWaveDataStep(DAC_HandleTypeDef *hdac, uint32_t Channel)
- {
- HAL_StatusTypeDef status = HAL_OK;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- /* Process locked */
- __HAL_LOCK(hdac);
- if (((hdac->Instance->STMODR >> (Channel & 0x10UL)) & DAC_STMODR_STINCTRIGSEL1) == 0UL /* SW TRIGGER */)
- {
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_BUSY;
- if (Channel == DAC_CHANNEL_1)
- {
- /* Enable the selected DAC software conversion */
- SET_BIT(hdac->Instance->SWTRIGR, DAC_SWTRIGR_SWTRIGB1);
- }
- else
- {
- /* Enable the selected DAC software conversion */
- SET_BIT(hdac->Instance->SWTRIGR, DAC_SWTRIGR_SWTRIGB2);
- }
- /* Change DAC state */
- hdac->State = HAL_DAC_STATE_READY;
- }
- else
- {
- status = HAL_ERROR;
- }
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- /* Return function status */
- return status;
- }
- /**
- * @brief Set the specified data holding register value for dual DAC channel.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param Alignment Specifies the data alignment for dual channel DAC.
- * This parameter can be one of the following values:
- * DAC_ALIGN_8B_R: 8bit right data alignment selected
- * DAC_ALIGN_12B_L: 12bit left data alignment selected
- * DAC_ALIGN_12B_R: 12bit right data alignment selected
- * @param Data1 Data for DAC Channel1 to be loaded in the selected data holding register.
- * @param Data2 Data for DAC Channel2 to be loaded in the selected data holding register.
- * @note In dual mode, a unique register access is required to write in both
- * DAC channels at the same time.
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_DualSetValue(DAC_HandleTypeDef *hdac, uint32_t Alignment, uint32_t Data1, uint32_t Data2)
- {
- uint32_t data;
- uint32_t tmp;
- /* Check the DAC peripheral handle */
- if (hdac == NULL)
- {
- return HAL_ERROR;
- }
- /* Check the parameters */
- assert_param(IS_DAC_ALIGN(Alignment));
- assert_param(IS_DAC_DATA(Data1));
- assert_param(IS_DAC_DATA(Data2));
- /* Calculate and set dual DAC data holding register value */
- if (Alignment == DAC_ALIGN_8B_R)
- {
- data = ((uint32_t)Data2 << 8U) | Data1;
- }
- else
- {
- data = ((uint32_t)Data2 << 16U) | Data1;
- }
- tmp = (uint32_t)hdac->Instance;
- tmp += DAC_DHR12RD_ALIGNMENT(Alignment);
- /* Set the dual DAC selected data holding register */
- *(__IO uint32_t *)tmp = data;
- /* Return function status */
- return HAL_OK;
- }
- /**
- * @brief Conversion complete callback in non-blocking mode for Channel2.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval None
- */
- __weak void HAL_DACEx_ConvCpltCallbackCh2(DAC_HandleTypeDef *hdac)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hdac);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_DACEx_ConvCpltCallbackCh2 could be implemented in the user file
- */
- }
- /**
- * @brief Conversion half DMA transfer callback in non-blocking mode for Channel2.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval None
- */
- __weak void HAL_DACEx_ConvHalfCpltCallbackCh2(DAC_HandleTypeDef *hdac)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hdac);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_DACEx_ConvHalfCpltCallbackCh2 could be implemented in the user file
- */
- }
- /**
- * @brief Error DAC callback for Channel2.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval None
- */
- __weak void HAL_DACEx_ErrorCallbackCh2(DAC_HandleTypeDef *hdac)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hdac);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_DACEx_ErrorCallbackCh2 could be implemented in the user file
- */
- }
- /**
- * @brief DMA underrun DAC callback for Channel2.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval None
- */
- __weak void HAL_DACEx_DMAUnderrunCallbackCh2(DAC_HandleTypeDef *hdac)
- {
- /* Prevent unused argument(s) compilation warning */
- UNUSED(hdac);
- /* NOTE : This function should not be modified, when the callback is needed,
- the HAL_DACEx_DMAUnderrunCallbackCh2 could be implemented in the user file
- */
- }
- /**
- * @brief Run the self calibration of one DAC channel.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param sConfig DAC channel configuration structure.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @retval Updates DAC_TrimmingValue. , DAC_UserTrimming set to DAC_UserTrimming
- * @retval HAL status
- * @note Calibration runs about 7 ms.
- */
- HAL_StatusTypeDef HAL_DACEx_SelfCalibrate(DAC_HandleTypeDef *hdac, DAC_ChannelConfTypeDef *sConfig, uint32_t Channel)
- {
- HAL_StatusTypeDef status = HAL_OK;
- uint32_t trimmingvalue;
- uint32_t delta;
- __IO uint32_t wait_loop_index;
- /* store/restore channel configuration structure purpose */
- uint32_t oldmodeconfiguration;
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- /* Check the DAC handle allocation */
- /* Check if DAC running */
- if ((hdac == NULL) || (sConfig == NULL))
- {
- status = HAL_ERROR;
- }
- else if (hdac->State == HAL_DAC_STATE_BUSY)
- {
- status = HAL_ERROR;
- }
- else
- {
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Store configuration */
- oldmodeconfiguration = (hdac->Instance->MCR & (DAC_MCR_MODE1 << (Channel & 0x10UL)));
- /* Disable the selected DAC channel */
- CLEAR_BIT((hdac->Instance->CR), (DAC_CR_EN1 << (Channel & 0x10UL)));
- /* Wait for ready bit to be de-asserted */
- HAL_Delay(1);
- /* Set mode in MCR for calibration */
- MODIFY_REG(hdac->Instance->MCR, (DAC_MCR_MODE1 << (Channel & 0x10UL)), 0U);
- /* Enable the selected DAC channel calibration */
- /* i.e. set DAC_CR_CENx bit */
- SET_BIT((hdac->Instance->CR), (DAC_CR_CEN1 << (Channel & 0x10UL)));
- /* Init trimming counter */
- /* Medium value */
- trimmingvalue = 0x10UL;
- delta = 0x08UL;
- while (delta != 0UL)
- {
- /* Set candidate trimming */
- MODIFY_REG(hdac->Instance->CCR, (DAC_CCR_OTRIM1 << (Channel & 0x10UL)), (trimmingvalue << (Channel & 0x10UL)));
- /* Wait minimum time needed between two calibration steps (OTRIM) */
- /* Wait loop initialization and execution */
- /* Note: Variable divided by 2 to compensate partially CPU processing cycles, scaling in us split to not exceed */
- /* 32 bits register capacity and handle low frequency. */
- wait_loop_index = ((DAC_DELAY_TRIM_US / 10UL) * ((SystemCoreClock / (100000UL * 2UL)) + 1UL));
- while (wait_loop_index != 0UL)
- {
- wait_loop_index--;
- }
- if ((hdac->Instance->SR & (DAC_SR_CAL_FLAG1 << (Channel & 0x10UL))) == (DAC_SR_CAL_FLAG1 << (Channel & 0x10UL)))
- {
- /* DAC_SR_CAL_FLAGx is HIGH try higher trimming */
- trimmingvalue -= delta;
- }
- else
- {
- /* DAC_SR_CAL_FLAGx is LOW try lower trimming */
- trimmingvalue += delta;
- }
- delta >>= 1UL;
- }
- /* Still need to check if right calibration is current value or one step below */
- /* Indeed the first value that causes the DAC_SR_CAL_FLAGx bit to change from 0 to 1 */
- /* Set candidate trimming */
- MODIFY_REG(hdac->Instance->CCR, (DAC_CCR_OTRIM1 << (Channel & 0x10UL)), (trimmingvalue << (Channel & 0x10UL)));
- /* Wait minimum time needed between two calibration steps (OTRIM) */
- /* Wait loop initialization and execution */
- /* Note: Variable divided by 2 to compensate partially CPU processing cycles, scaling in us split to not exceed */
- /* 32 bits register capacity and handle low frequency. */
- wait_loop_index = ((DAC_DELAY_TRIM_US / 10UL) * ((SystemCoreClock / (100000UL * 2UL)) + 1UL));
- while (wait_loop_index != 0UL)
- {
- wait_loop_index--;
- }
- if ((hdac->Instance->SR & (DAC_SR_CAL_FLAG1 << (Channel & 0x10UL))) == 0UL)
- {
- /* Check trimming value below maximum */
- if (trimmingvalue < 0x1FU)
- {
- /* Trimming is actually one value more */
- trimmingvalue++;
- }
- /* Set right trimming */
- MODIFY_REG(hdac->Instance->CCR, (DAC_CCR_OTRIM1 << (Channel & 0x10UL)), (trimmingvalue << (Channel & 0x10UL)));
- }
- /* Disable the selected DAC channel calibration */
- /* i.e. clear DAC_CR_CENx bit */
- CLEAR_BIT((hdac->Instance->CR), (DAC_CR_CEN1 << (Channel & 0x10UL)));
- sConfig->DAC_TrimmingValue = trimmingvalue;
- sConfig->DAC_UserTrimming = DAC_TRIMMING_USER;
- /* Restore configuration */
- MODIFY_REG(hdac->Instance->MCR, (DAC_MCR_MODE1 << (Channel & 0x10UL)), oldmodeconfiguration);
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- }
- return status;
- }
- /**
- * @brief Set the trimming mode and trimming value (user trimming mode applied).
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @param sConfig DAC configuration structure updated with new DAC trimming value.
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @param NewTrimmingValue DAC new trimming value
- * @retval HAL status
- */
- HAL_StatusTypeDef HAL_DACEx_SetUserTrimming(DAC_HandleTypeDef *hdac, DAC_ChannelConfTypeDef *sConfig, uint32_t Channel,
- uint32_t NewTrimmingValue)
- {
- HAL_StatusTypeDef status = HAL_OK;
- /* Check the parameters */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- assert_param(IS_DAC_NEWTRIMMINGVALUE(NewTrimmingValue));
- /* Check the DAC handle and channel configuration struct allocation */
- if ((hdac == NULL) || (sConfig == NULL))
- {
- status = HAL_ERROR;
- }
- else
- {
- /* Process locked */
- __HAL_LOCK(hdac);
- /* Set new trimming */
- MODIFY_REG(hdac->Instance->CCR, (DAC_CCR_OTRIM1 << (Channel & 0x10UL)), (NewTrimmingValue << (Channel & 0x10UL)));
- /* Update trimming mode */
- sConfig->DAC_UserTrimming = DAC_TRIMMING_USER;
- sConfig->DAC_TrimmingValue = NewTrimmingValue;
- /* Process unlocked */
- __HAL_UNLOCK(hdac);
- }
- return status;
- }
- /**
- * @brief Return the DAC trimming value.
- * @param hdac DAC handle
- * @param Channel The selected DAC channel.
- * This parameter can be one of the following values:
- * @arg DAC_CHANNEL_1: DAC Channel1 selected
- * @arg DAC_CHANNEL_2: DAC Channel2 selected (1)
- *
- * (1) On this STM32 series, parameter not available on all instances.
- * Refer to device datasheet for channels availability.
- * @retval TrimmingValue Value between Min_Data=0x00 and Max_Data=0x1F
- */
- uint32_t HAL_DACEx_GetTrimOffset(const DAC_HandleTypeDef *hdac, uint32_t Channel)
- {
- /* Check the parameter */
- assert_param(IS_DAC_CHANNEL(hdac->Instance, Channel));
- /* Retrieve trimming */
- return ((hdac->Instance->CCR & (DAC_CCR_OTRIM1 << (Channel & 0x10UL))) >> (Channel & 0x10UL));
- }
- /**
- * @}
- */
- /** @defgroup DACEx_Exported_Functions_Group3 Peripheral Control functions
- * @brief Extended Peripheral Control functions
- *
- @verbatim
- ==============================================================================
- ##### Peripheral Control functions #####
- ==============================================================================
- [..] This section provides functions allowing to:
- (+) Set the specified data holding register value for DAC channel.
- @endverbatim
- * @{
- */
- /**
- * @brief Return the last data output value of the selected DAC channel.
- * @param hdac pointer to a DAC_HandleTypeDef structure that contains
- * the configuration information for the specified DAC.
- * @retval The selected DAC channel data output value.
- */
- uint32_t HAL_DACEx_DualGetValue(const DAC_HandleTypeDef *hdac)
- {
- uint32_t tmp = 0UL;
- tmp |= hdac->Instance->DOR1;
- tmp |= hdac->Instance->DOR2 << 16UL;
- /* Returns the DAC channel data output register value */
- return tmp;
- }
- /**
- * @}
- */
- /**
- * @}
- */
- /* Private functions ---------------------------------------------------------*/
- /** @defgroup DACEx_Private_Functions DACEx private functions
- * @brief Extended private functions
- * @{
- */
- /**
- * @brief DMA conversion complete callback.
- * @param hdma pointer to a DMA_HandleTypeDef structure that contains
- * the configuration information for the specified DMA module.
- * @retval None
- */
- void DAC_DMAConvCpltCh2(DMA_HandleTypeDef *hdma)
- {
- DAC_HandleTypeDef *hdac = (DAC_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent;
- #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1)
- hdac->ConvCpltCallbackCh2(hdac);
- #else
- HAL_DACEx_ConvCpltCallbackCh2(hdac);
- #endif /* USE_HAL_DAC_REGISTER_CALLBACKS */
- hdac->State = HAL_DAC_STATE_READY;
- }
- /**
- * @brief DMA half transfer complete callback.
- * @param hdma pointer to a DMA_HandleTypeDef structure that contains
- * the configuration information for the specified DMA module.
- * @retval None
- */
- void DAC_DMAHalfConvCpltCh2(DMA_HandleTypeDef *hdma)
- {
- DAC_HandleTypeDef *hdac = (DAC_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent;
- /* Conversion complete callback */
- #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1)
- hdac->ConvHalfCpltCallbackCh2(hdac);
- #else
- HAL_DACEx_ConvHalfCpltCallbackCh2(hdac);
- #endif /* USE_HAL_DAC_REGISTER_CALLBACKS */
- }
- /**
- * @brief DMA error callback.
- * @param hdma pointer to a DMA_HandleTypeDef structure that contains
- * the configuration information for the specified DMA module.
- * @retval None
- */
- void DAC_DMAErrorCh2(DMA_HandleTypeDef *hdma)
- {
- DAC_HandleTypeDef *hdac = (DAC_HandleTypeDef *)((DMA_HandleTypeDef *)hdma)->Parent;
- /* Set DAC error code to DMA error */
- hdac->ErrorCode |= HAL_DAC_ERROR_DMA;
- #if (USE_HAL_DAC_REGISTER_CALLBACKS == 1)
- hdac->ErrorCallbackCh2(hdac);
- #else
- HAL_DACEx_ErrorCallbackCh2(hdac);
- #endif /* USE_HAL_DAC_REGISTER_CALLBACKS */
- hdac->State = HAL_DAC_STATE_READY;
- }
- /**
- * @}
- */
- /**
- * @}
- */
- #endif /* DAC1 || DAC2 || DAC3 || DAC4 */
- #endif /* HAL_DAC_MODULE_ENABLED */
- /**
- * @}
- */
|