103 lines
2.5 KiB
C
103 lines
2.5 KiB
C
/* USER CODE BEGIN Header */
|
|
/**
|
|
******************************************************************************
|
|
* @file dac.c
|
|
* @brief This file provides code for the configuration
|
|
* of the DAC instances.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* Copyright (c) 2026 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.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
/* USER CODE END Header */
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "dac.h"
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
DAC_HandleTypeDef hdac1;
|
|
|
|
/* DAC1 init function */
|
|
void MX_DAC1_Init(void)
|
|
{
|
|
|
|
/* USER CODE BEGIN DAC1_Init 0 */
|
|
|
|
/* USER CODE END DAC1_Init 0 */
|
|
|
|
DAC_ChannelConfTypeDef sConfig = {0};
|
|
|
|
/* USER CODE BEGIN DAC1_Init 1 */
|
|
|
|
/* USER CODE END DAC1_Init 1 */
|
|
|
|
/** DAC Initialization
|
|
*/
|
|
hdac1.Instance = DAC1;
|
|
if (HAL_DAC_Init(&hdac1) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
/** DAC channel OUT2 config
|
|
*/
|
|
sConfig.DAC_SampleAndHold = DAC_SAMPLEANDHOLD_DISABLE;
|
|
sConfig.DAC_Trigger = DAC_TRIGGER_NONE;
|
|
sConfig.DAC_OutputBuffer = DAC_OUTPUTBUFFER_DISABLE;
|
|
sConfig.DAC_ConnectOnChipPeripheral = DAC_CHIPCONNECT_ENABLE;
|
|
sConfig.DAC_UserTrimming = DAC_TRIMMING_FACTORY;
|
|
if (HAL_DAC_ConfigChannel(&hdac1, &sConfig, DAC_CHANNEL_2) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
/* USER CODE BEGIN DAC1_Init 2 */
|
|
|
|
/* USER CODE END DAC1_Init 2 */
|
|
|
|
}
|
|
|
|
void HAL_DAC_MspInit(DAC_HandleTypeDef* dacHandle)
|
|
{
|
|
|
|
if(dacHandle->Instance==DAC1)
|
|
{
|
|
/* USER CODE BEGIN DAC1_MspInit 0 */
|
|
|
|
/* USER CODE END DAC1_MspInit 0 */
|
|
/* DAC1 clock enable */
|
|
__HAL_RCC_DAC12_CLK_ENABLE();
|
|
/* USER CODE BEGIN DAC1_MspInit 1 */
|
|
|
|
/* USER CODE END DAC1_MspInit 1 */
|
|
}
|
|
}
|
|
|
|
void HAL_DAC_MspDeInit(DAC_HandleTypeDef* dacHandle)
|
|
{
|
|
|
|
if(dacHandle->Instance==DAC1)
|
|
{
|
|
/* USER CODE BEGIN DAC1_MspDeInit 0 */
|
|
|
|
/* USER CODE END DAC1_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_DAC12_CLK_DISABLE();
|
|
/* USER CODE BEGIN DAC1_MspDeInit 1 */
|
|
|
|
/* USER CODE END DAC1_MspDeInit 1 */
|
|
}
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|