99 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			99 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /* USER CODE BEGIN Header */
 | |
| /**
 | |
|   ******************************************************************************
 | |
|   * @file    tim.c
 | |
|   * @brief   This file provides code for the configuration
 | |
|   *          of the TIM instances.
 | |
|   ******************************************************************************
 | |
|   * @attention
 | |
|   *
 | |
|   * Copyright (c) 2024 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 htim17;
 | |
| 
 | |
| /* TIM17 init function */
 | |
| void MX_TIM17_Init(void)
 | |
| {
 | |
| 
 | |
|   /* USER CODE BEGIN TIM17_Init 0 */
 | |
| 
 | |
|   /* USER CODE END TIM17_Init 0 */
 | |
| 
 | |
|   /* USER CODE BEGIN TIM17_Init 1 */
 | |
| 
 | |
|   /* USER CODE END TIM17_Init 1 */
 | |
|   htim17.Instance = TIM17;
 | |
|   htim17.Init.Prescaler = 15;
 | |
|   htim17.Init.CounterMode = TIM_COUNTERMODE_UP;
 | |
|   htim17.Init.Period = 999;
 | |
|   htim17.Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
 | |
|   htim17.Init.RepetitionCounter = 0;
 | |
|   htim17.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_ENABLE;
 | |
|   if (HAL_TIM_Base_Init(&htim17) != HAL_OK)
 | |
|   {
 | |
|     Error_Handler();
 | |
|   }
 | |
|   /* USER CODE BEGIN TIM17_Init 2 */
 | |
| 
 | |
|   /* USER CODE END TIM17_Init 2 */
 | |
| 
 | |
| }
 | |
| 
 | |
| void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle)
 | |
| {
 | |
| 
 | |
|   if(tim_baseHandle->Instance==TIM17)
 | |
|   {
 | |
|   /* USER CODE BEGIN TIM17_MspInit 0 */
 | |
| 
 | |
|   /* USER CODE END TIM17_MspInit 0 */
 | |
|     /* TIM17 clock enable */
 | |
|     __HAL_RCC_TIM17_CLK_ENABLE();
 | |
| 
 | |
|     /* TIM17 interrupt Init */
 | |
|     HAL_NVIC_SetPriority(TIM1_TRG_COM_TIM17_IRQn, 0, 0);
 | |
|     HAL_NVIC_EnableIRQ(TIM1_TRG_COM_TIM17_IRQn);
 | |
|   /* USER CODE BEGIN TIM17_MspInit 1 */
 | |
| 
 | |
|   /* USER CODE END TIM17_MspInit 1 */
 | |
|   }
 | |
| }
 | |
| 
 | |
| void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle)
 | |
| {
 | |
| 
 | |
|   if(tim_baseHandle->Instance==TIM17)
 | |
|   {
 | |
|   /* USER CODE BEGIN TIM17_MspDeInit 0 */
 | |
| 
 | |
|   /* USER CODE END TIM17_MspDeInit 0 */
 | |
|     /* Peripheral clock disable */
 | |
|     __HAL_RCC_TIM17_CLK_DISABLE();
 | |
| 
 | |
|     /* TIM17 interrupt Deinit */
 | |
|     HAL_NVIC_DisableIRQ(TIM1_TRG_COM_TIM17_IRQn);
 | |
|   /* USER CODE BEGIN TIM17_MspDeInit 1 */
 | |
| 
 | |
|   /* USER CODE END TIM17_MspDeInit 1 */
 | |
|   }
 | |
| }
 | |
| 
 | |
| /* USER CODE BEGIN 1 */
 | |
| 
 | |
| /* USER CODE END 1 */
 |