/** ****************************************************************************** * File Name : TIM.h * Description : This file provides code for the configuration * of the TIM instances. ****************************************************************************** * @attention * *

© Copyright (c) 2020 STMicroelectronics. * All rights reserved.

* * This software component is licensed by ST under Ultimate Liberty license * SLA0044, the "License"; You may not use this file except in compliance with * the License. You may obtain a copy of the License at: * www.st.com/SLA0044 * ****************************************************************************** */ /* 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 htim1; extern TIM_HandleTypeDef htim4; extern TIM_HandleTypeDef htim5; extern TIM_HandleTypeDef htim6; extern TIM_HandleTypeDef htim9; extern TIM_HandleTypeDef htim10; extern TIM_HandleTypeDef htim11; extern TIM_HandleTypeDef htim12; extern TIM_HandleTypeDef htim13; extern TIM_HandleTypeDef htim14; /* USER CODE BEGIN Private defines */ #define PWM_CH_CP 0 #define PWM_CH_LED_R 1 #define PWM_CH_LED_G 2 #define PWM_CH_LED_B 3 #define PWM_CH_LED_W 4 #define PWM_CH_GFCI_TEST 5 #define PWM_DUTY_FULL 1000 #define PWM_DUTY_OFF 0 #define PWM_DUTY_5 50 /* USER CODE END Private defines */ void MX_TIM1_Init(void); void MX_TIM4_Init(void); void MX_TIM5_Init(void); void MX_TIM6_Init(void); void MX_TIM9_Init(void); void MX_TIM10_Init(void); void MX_TIM11_Init(void); void MX_TIM12_Init(void); void MX_TIM13_Init(void); void MX_TIM14_Init(void); void HAL_TIM_MspPostInit(TIM_HandleTypeDef *htim); /* USER CODE BEGIN Prototypes */ extern void user_pwm_setvalue(uint8_t ch, uint16_t value); extern void SPWM_Switch(uint8_t isOn); extern uint16_t ICP_Leak_Duty; extern uint16_t ICP_Leak_Period; extern uint16_t ICP_rising[2]; extern uint16_t ICP_falling; extern uint8_t ICP_rising_idx; extern uint16_t SPWM_idx; /* USER CODE END Prototypes */ #ifdef __cplusplus } #endif #endif /*__ tim_H */ /** * @} */ /** * @} */ /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/