64 lines
1.7 KiB
C
64 lines
1.7 KiB
C
#pragma once
|
||
|
||
#ifdef __cplusplus
|
||
extern "C" {
|
||
#endif
|
||
|
||
/* Includes ----------------------------------------------------------------- */
|
||
#include <stdint.h>
|
||
#include "tim.h"
|
||
#include "bsp.h"
|
||
|
||
/* USER INCLUDE BEGIN */
|
||
|
||
/* USER INCLUDE END */
|
||
|
||
|
||
/* Exported constants ------------------------------------------------------- */
|
||
/* Exported macro ----------------------------------------------------------- */
|
||
/* USER DEFINE BEGIN */
|
||
|
||
/* USER DEFINE END */
|
||
|
||
/* Exported types ----------------------------------------------------------- */
|
||
/* PWM通道 */
|
||
typedef enum {
|
||
BSP_PWM_TIM8_CH1,
|
||
BSP_PWM_LASER,
|
||
BSP_PWM_BUZZER,
|
||
BSP_PWM_TIM1_CH2,
|
||
BSP_PWM_TIM1_CH3,
|
||
BSP_PWM_TIM1_CH4,
|
||
BSP_PWM_TIM1_CH1,
|
||
BSP_PWM_IMU_HEAT_PWM,
|
||
BSP_PWM_LED_B,
|
||
BSP_PWM_LED_G,
|
||
BSP_PWM_LED_R,
|
||
BSP_PWM_TIM8_CH2,
|
||
BSP_PWM_NUM,
|
||
BSP_PWM_ERR,
|
||
} BSP_PWM_Channel_t;
|
||
|
||
/* Exported functions prototypes -------------------------------------------- */
|
||
int8_t BSP_PWM_Start(BSP_PWM_Channel_t ch);
|
||
<<<<<<< HEAD
|
||
int8_t BSP_PWM_SetComp(BSP_PWM_Channel_t ch, float duty_cycle); //设置占空比,范围0.0~1.0
|
||
int8_t BSP_PWM_SetFreq(BSP_PWM_Channel_t ch, float freq); //设置频率,单位Hz
|
||
=======
|
||
int8_t BSP_PWM_SetComp(BSP_PWM_Channel_t ch, float duty_cycle);
|
||
int8_t BSP_PWM_SetFreq(BSP_PWM_Channel_t ch, float freq);
|
||
>>>>>>> main
|
||
int8_t BSP_PWM_Stop(BSP_PWM_Channel_t ch);
|
||
uint32_t BSP_PWM_GetAutoReloadPreload(BSP_PWM_Channel_t ch);
|
||
uint16_t BSP_PWM_GetChannel(BSP_PWM_Channel_t ch);
|
||
TIM_HandleTypeDef* BSP_PWM_GetHandle(BSP_PWM_Channel_t ch);
|
||
int8_t BSP_PWM_Start_DMA(BSP_PWM_Channel_t ch, uint32_t *pData, uint16_t Length);
|
||
int8_t BSP_PWM_Stop_DMA(BSP_PWM_Channel_t ch);
|
||
|
||
/* USER FUNCTION BEGIN */
|
||
|
||
/* USER FUNCTION END */
|
||
|
||
#ifdef __cplusplus
|
||
}
|
||
#endif |