15 lines
233 B
C
15 lines
233 B
C
![]() |
#ifndef __TIM1_PWM__H__
|
||
|
#define __TIM1_PWM__H__
|
||
|
|
||
|
#include "stm32f4xx_hal.h"
|
||
|
|
||
|
extern TIM_HandleTypeDef htim2;
|
||
|
|
||
|
void MX_TIM2_Init(uint32_t Psc, uint32_t Arr, uint32_t Pls);
|
||
|
|
||
|
void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim);
|
||
|
|
||
|
|
||
|
|
||
|
#endif
|