You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
105 lines
2.8 KiB
105 lines
2.8 KiB
/* USER CODE BEGIN Header */ |
|
/** |
|
****************************************************************************** |
|
* @file tim.c |
|
* @brief This file provides code for the configuration |
|
* of the TIM instances. |
|
****************************************************************************** |
|
* @attention |
|
* |
|
* Copyright (c) 2022 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 "tim.h" |
|
|
|
/* USER CODE BEGIN 0 */ |
|
|
|
/* USER CODE END 0 */ |
|
|
|
TIM_HandleTypeDef htim1; |
|
|
|
/* TIM1 init function */ |
|
void MX_TIM1_Init(void) |
|
{ |
|
|
|
/* USER CODE BEGIN TIM1_Init 0 */ |
|
|
|
/* USER CODE END TIM1_Init 0 */ |
|
|
|
TIM_ClockConfigTypeDef sClockSourceConfig = {0}; |
|
TIM_MasterConfigTypeDef sMasterConfig = {0}; |
|
|
|
/* USER CODE BEGIN TIM1_Init 1 */ |
|
|
|
/* USER CODE END TIM1_Init 1 */ |
|
htim1.Instance = TIM1; |
|
htim1.Init.Prescaler = 0; |
|
htim1.Init.CounterMode = TIM_COUNTERMODE_UP; |
|
htim1.Init.Period = 65535; |
|
htim1.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1; |
|
htim1.Init.RepetitionCounter = 0; |
|
htim1.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; |
|
if (HAL_TIM_Base_Init(&htim1) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL; |
|
if (HAL_TIM_ConfigClockSource(&htim1, &sClockSourceConfig) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; |
|
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; |
|
if (HAL_TIMEx_MasterConfigSynchronization(&htim1, &sMasterConfig) != HAL_OK) |
|
{ |
|
Error_Handler(); |
|
} |
|
/* USER CODE BEGIN TIM1_Init 2 */ |
|
|
|
/* USER CODE END TIM1_Init 2 */ |
|
|
|
} |
|
|
|
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) |
|
{ |
|
|
|
if(tim_baseHandle->Instance==TIM1) |
|
{ |
|
/* USER CODE BEGIN TIM1_MspInit 0 */ |
|
|
|
/* USER CODE END TIM1_MspInit 0 */ |
|
/* TIM1 clock enable */ |
|
__HAL_RCC_TIM1_CLK_ENABLE(); |
|
/* USER CODE BEGIN TIM1_MspInit 1 */ |
|
|
|
/* USER CODE END TIM1_MspInit 1 */ |
|
} |
|
} |
|
|
|
void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle) |
|
{ |
|
|
|
if(tim_baseHandle->Instance==TIM1) |
|
{ |
|
/* USER CODE BEGIN TIM1_MspDeInit 0 */ |
|
|
|
/* USER CODE END TIM1_MspDeInit 0 */ |
|
/* Peripheral clock disable */ |
|
__HAL_RCC_TIM1_CLK_DISABLE(); |
|
/* USER CODE BEGIN TIM1_MspDeInit 1 */ |
|
|
|
/* USER CODE END TIM1_MspDeInit 1 */ |
|
} |
|
} |
|
|
|
/* USER CODE BEGIN 1 */ |
|
|
|
/* USER CODE END 1 */
|
|
|