7 changed files with 247 additions and 28 deletions
-
26app/.mxproject
-
2app/Core/Inc/stm32l4xx_hal_conf.h
-
52app/Core/Inc/tim.h
-
2app/Core/Src/main.c
-
97app/Core/Src/tim.c
-
80app/MDK-ARM/app.uvprojx
-
16app/app.ioc
26
app/.mxproject
File diff suppressed because it is too large
View File
File diff suppressed because it is too large
View File
@ -0,0 +1,52 @@ |
|||||
|
/* USER CODE BEGIN Header */ |
||||
|
/** |
||||
|
****************************************************************************** |
||||
|
* @file tim.h |
||||
|
* @brief This file contains all the function prototypes for |
||||
|
* the tim.c file |
||||
|
****************************************************************************** |
||||
|
* @attention |
||||
|
* |
||||
|
* Copyright (c) 2023 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 */ |
||||
|
/* Define to prevent recursive inclusion -------------------------------------*/ |
||||
|
#ifndef __TIM_H__ |
||||
|
#define __TIM_H__ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
extern "C" { |
||||
|
#endif |
||||
|
|
||||
|
/* Includes ------------------------------------------------------------------*/ |
||||
|
#include "main.h" |
||||
|
|
||||
|
/* USER CODE BEGIN Includes */ |
||||
|
|
||||
|
/* USER CODE END Includes */ |
||||
|
|
||||
|
extern TIM_HandleTypeDef htim7; |
||||
|
|
||||
|
/* USER CODE BEGIN Private defines */ |
||||
|
|
||||
|
/* USER CODE END Private defines */ |
||||
|
|
||||
|
void MX_TIM7_Init(void); |
||||
|
|
||||
|
/* USER CODE BEGIN Prototypes */ |
||||
|
|
||||
|
/* USER CODE END Prototypes */ |
||||
|
|
||||
|
#ifdef __cplusplus |
||||
|
} |
||||
|
#endif |
||||
|
|
||||
|
#endif /* __TIM_H__ */ |
||||
|
|
@ -0,0 +1,97 @@ |
|||||
|
/* USER CODE BEGIN Header */ |
||||
|
/** |
||||
|
****************************************************************************** |
||||
|
* @file tim.c |
||||
|
* @brief This file provides code for the configuration |
||||
|
* of the TIM instances. |
||||
|
****************************************************************************** |
||||
|
* @attention |
||||
|
* |
||||
|
* Copyright (c) 2023 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 htim7; |
||||
|
|
||||
|
/* TIM7 init function */ |
||||
|
void MX_TIM7_Init(void) |
||||
|
{ |
||||
|
|
||||
|
/* USER CODE BEGIN TIM7_Init 0 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_Init 0 */ |
||||
|
|
||||
|
TIM_MasterConfigTypeDef sMasterConfig = {0}; |
||||
|
|
||||
|
/* USER CODE BEGIN TIM7_Init 1 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_Init 1 */ |
||||
|
htim7.Instance = TIM7; |
||||
|
htim7.Init.Prescaler = 84-1; |
||||
|
htim7.Init.CounterMode = TIM_COUNTERMODE_UP; |
||||
|
htim7.Init.Period = 65535; |
||||
|
htim7.Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE; |
||||
|
if (HAL_TIM_Base_Init(&htim7) != HAL_OK) |
||||
|
{ |
||||
|
Error_Handler(); |
||||
|
} |
||||
|
sMasterConfig.MasterOutputTrigger = TIM_TRGO_RESET; |
||||
|
sMasterConfig.MasterSlaveMode = TIM_MASTERSLAVEMODE_DISABLE; |
||||
|
if (HAL_TIMEx_MasterConfigSynchronization(&htim7, &sMasterConfig) != HAL_OK) |
||||
|
{ |
||||
|
Error_Handler(); |
||||
|
} |
||||
|
/* USER CODE BEGIN TIM7_Init 2 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_Init 2 */ |
||||
|
|
||||
|
} |
||||
|
|
||||
|
void HAL_TIM_Base_MspInit(TIM_HandleTypeDef* tim_baseHandle) |
||||
|
{ |
||||
|
|
||||
|
if(tim_baseHandle->Instance==TIM7) |
||||
|
{ |
||||
|
/* USER CODE BEGIN TIM7_MspInit 0 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_MspInit 0 */ |
||||
|
/* TIM7 clock enable */ |
||||
|
__HAL_RCC_TIM7_CLK_ENABLE(); |
||||
|
/* USER CODE BEGIN TIM7_MspInit 1 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_MspInit 1 */ |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
void HAL_TIM_Base_MspDeInit(TIM_HandleTypeDef* tim_baseHandle) |
||||
|
{ |
||||
|
|
||||
|
if(tim_baseHandle->Instance==TIM7) |
||||
|
{ |
||||
|
/* USER CODE BEGIN TIM7_MspDeInit 0 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_MspDeInit 0 */ |
||||
|
/* Peripheral clock disable */ |
||||
|
__HAL_RCC_TIM7_CLK_DISABLE(); |
||||
|
/* USER CODE BEGIN TIM7_MspDeInit 1 */ |
||||
|
|
||||
|
/* USER CODE END TIM7_MspDeInit 1 */ |
||||
|
} |
||||
|
} |
||||
|
|
||||
|
/* USER CODE BEGIN 1 */ |
||||
|
|
||||
|
/* USER CODE END 1 */ |
Write
Preview
Loading…
Cancel
Save
Reference in new issue