123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- /* USER CODE BEGIN Header */
- /**
- ******************************************************************************
- * @file tim.c
- * @brief This file provides code for the configuration
- * of the TIM instances.
- ******************************************************************************
- * @attention
- *
- * Copyright (c) 2025 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 htim15;
- /* TIM15 init function */
- void MX_TIM15_Init(void)
- {
- /* USER CODE BEGIN TIM15_Init 0 */
- /* USER CODE END TIM15_Init 0 */
- TIM_ClockConfigTypeDef sClockSourceConfig = {0};
- TIM_MasterConfigTypeDef sMasterConfig = {0};
- /* USER CODE BEGIN TIM15_Init 1 */
- /* USER CODE END TIM15_Init 1 */
- htim15.Instance = TIM15;
- htim15.Init.Prescaler = 16-1;
- htim15.Init.CounterMode = TIM_COUNTERMODE_UP;
- htim15.Init.Period = 65535;
- htim15.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
- htim15.Init.RepetitionCounter = 0;
- htim15.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
- if (HAL_TIM_Base_Init(&htim15) != HAL_OK)
- {
- Error_Handler();
- }
- sClockSourceConfig.ClockSource = TIM_CLOCKSOURCE_INTERNAL;
- if (HAL_TIM_ConfigClockSource(&htim15, &sClockSourceConfig) != HAL_OK)
- {
- Error_Handler();
- }
- sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET;
- sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE;
- if (HAL_TIMEx_MasterConfigSynchronization(&htim15, &sMasterConfig) != HAL_OK)
- {
- Error_Handler();
- }
- /* USER CODE BEGIN TIM15_Init 2 */
- /* USER CODE END TIM15_Init 2 */
- }
- void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
- {
- if(tim_baseHandle->Instance==TIM15)
- {
- /* USER CODE BEGIN TIM15_MspInit 0 */
- /* USER CODE END TIM15_MspInit 0 */
- /* TIM15 clock enable */
- __HAL_RCC_TIM15_CLK_ENABLE();
- /* USER CODE BEGIN TIM15_MspInit 1 */
- /* USER CODE END TIM15_MspInit 1 */
- }
- }
- void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle)
- {
- if(tim_baseHandle->Instance==TIM15)
- {
- /* USER CODE BEGIN TIM15_MspDeInit 0 */
- /* USER CODE END TIM15_MspDeInit 0 */
- /* Peripheral clock disable */
- __HAL_RCC_TIM15_CLK_DISABLE();
- /* USER CODE BEGIN TIM15_MspDeInit 1 */
- /* USER CODE END TIM15_MspDeInit 1 */
- }
- }
- /* USER CODE BEGIN 1 */
- /* USER CODE END 1 */
|