103 lines
2.7 KiB
C
103 lines
2.7 KiB
C
/**
|
|
******************************************************************************
|
|
* File Name : TIM.c
|
|
* Description : This file provides code for the configuration
|
|
* of the TIM instances.
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© Copyright (c) 2020 STMicroelectronics.
|
|
* All rights reserved.</center></h2>
|
|
*
|
|
* This software component is licensed by ST under BSD 3-Clause license,
|
|
* the "License"; You may not use this file except in compliance with the
|
|
* License. You may obtain a copy of the License at:
|
|
* opensource.org/licenses/BSD-3-Clause
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* Includes ------------------------------------------------------------------*/
|
|
#include "tim.h"
|
|
|
|
/* USER CODE BEGIN 0 */
|
|
|
|
/* USER CODE END 0 */
|
|
|
|
TIM_HandleTypeDef htim6;
|
|
|
|
/* TIM6 init function */
|
|
void MX_TIM6_Init(void)
|
|
{
|
|
TIM_MasterConfigTypeDef sMasterConfig = {0};
|
|
|
|
htim6.Instance = TIM6;
|
|
htim6.Init.Prescaler = 0;
|
|
htim6.Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
htim6.Init.Period = 0;
|
|
htim6.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
if (HAL_TIM_Base_Init(&htim6) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET;
|
|
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
|
|
if (HAL_TIMEx_MasterConfigSynchronization(&htim6, &sMasterConfig) != HAL_OK)
|
|
{
|
|
Error_Handler();
|
|
}
|
|
|
|
}
|
|
|
|
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
|
|
{
|
|
|
|
if(tim_baseHandle->Instance==TIM6)
|
|
{
|
|
/* USER CODE BEGIN TIM6_MspInit 0 */
|
|
|
|
/* USER CODE END TIM6_MspInit 0 */
|
|
/* TIM6 clock enable */
|
|
__HAL_RCC_TIM6_CLK_ENABLE();
|
|
|
|
/* TIM6 interrupt Init */
|
|
HAL_NVIC_SetPriority(TIM6_DAC_IRQn, 0, 0);
|
|
HAL_NVIC_EnableIRQ(TIM6_DAC_IRQn);
|
|
/* USER CODE BEGIN TIM6_MspInit 1 */
|
|
|
|
/* USER CODE END TIM6_MspInit 1 */
|
|
}
|
|
}
|
|
|
|
void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle)
|
|
{
|
|
|
|
if(tim_baseHandle->Instance==TIM6)
|
|
{
|
|
/* USER CODE BEGIN TIM6_MspDeInit 0 */
|
|
|
|
/* USER CODE END TIM6_MspDeInit 0 */
|
|
/* Peripheral clock disable */
|
|
__HAL_RCC_TIM6_CLK_DISABLE();
|
|
|
|
/* TIM6 interrupt Deinit */
|
|
/* USER CODE BEGIN TIM6:TIM6_DAC_IRQn disable */
|
|
/**
|
|
* Uncomment the line below to disable the "TIM6_DAC_IRQn" interrupt
|
|
* Be aware, disabling shared interrupt may affect other IPs
|
|
*/
|
|
/* HAL_NVIC_DisableIRQ(TIM6_DAC_IRQn); */
|
|
/* USER CODE END TIM6:TIM6_DAC_IRQn disable */
|
|
|
|
/* USER CODE BEGIN TIM6_MspDeInit 1 */
|
|
|
|
/* USER CODE END TIM6_MspDeInit 1 */
|
|
}
|
|
}
|
|
|
|
/* USER CODE BEGIN 1 */
|
|
|
|
/* USER CODE END 1 */
|
|
|
|
/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
|