68a3f6b4b7
* Add F5 target, lp5562 driver and api-hal-light. Update api-usage, switch to F5 by default. * API HAL: add i2c and hardware version api. Dolphin: show hardware version. * OTP version generator and flashing utility. * Assets script: fix code formatting * Backport F5 changes to F4 * F4: disable insomnia, prevent damage to BLE RX path * F5 HAL API Light: remove magic delay to fix magic BLE * Dolphin: HW target validation on start * invert RSSI indication in sub-1 * API HAL: rename board to body in version api * Gpio tester: detach and release viewport on exit Co-authored-by: aanper <mail@s3f.ru>
57 lines
2.1 KiB
C
57 lines
2.1 KiB
C
#include "api-hal-pwm.h"
|
|
|
|
void hal_pwm_set(float value, float freq, TIM_HandleTypeDef* tim, uint32_t channel) {
|
|
tim->Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
tim->Init.Period = (uint32_t)((SystemCoreClock / (tim->Init.Prescaler + 1)) / freq);
|
|
tim->Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
|
|
tim->Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
HAL_TIM_PWM_Init(tim);
|
|
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
sConfigOC.Pulse = (uint16_t)(tim->Init.Period * value);
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
sConfigOC.OCNPolarity = TIM_OCNPOLARITY_HIGH;
|
|
sConfigOC.OCFastMode = TIM_OCFAST_DISABLE;
|
|
sConfigOC.OCIdleState = TIM_OCIDLESTATE_RESET;
|
|
sConfigOC.OCNIdleState = TIM_OCNIDLESTATE_RESET;
|
|
HAL_TIM_PWM_ConfigChannel(tim, &sConfigOC, channel);
|
|
HAL_TIM_PWM_Start(tim, channel);
|
|
}
|
|
|
|
void hal_pwmn_set(float value, float freq, TIM_HandleTypeDef* tim, uint32_t channel) {
|
|
tim->Init.CounterMode = TIM_COUNTERMODE_UP;
|
|
tim->Init.Period = (uint32_t)((SystemCoreClock / (tim->Init.Prescaler + 1)) / freq - 1);
|
|
tim->Init.ClockDivision = TIM_CLOCKDIVISION_DIV1;
|
|
tim->Init.AutoReloadPreload = TIM_AUTORELOAD_PRELOAD_DISABLE;
|
|
HAL_TIM_PWM_Init(tim);
|
|
|
|
TIM_OC_InitTypeDef sConfigOC;
|
|
|
|
sConfigOC.OCMode = TIM_OCMODE_PWM1;
|
|
sConfigOC.Pulse = (uint16_t)(tim->Init.Period * value);
|
|
sConfigOC.OCPolarity = TIM_OCPOLARITY_HIGH;
|
|
sConfigOC.OCNPolarity = TIM_OCNPOLARITY_HIGH;
|
|
sConfigOC.OCFastMode = TIM_OCFAST_DISABLE;
|
|
sConfigOC.OCIdleState = TIM_OCIDLESTATE_RESET;
|
|
sConfigOC.OCNIdleState = TIM_OCNIDLESTATE_RESET;
|
|
HAL_TIM_PWM_ConfigChannel(tim, &sConfigOC, channel);
|
|
HAL_TIMEx_PWMN_Start(tim, channel);
|
|
}
|
|
|
|
void hal_pwm_stop(TIM_HandleTypeDef* tim, uint32_t channel) {
|
|
HAL_TIM_PWM_Stop(tim, channel);
|
|
}
|
|
|
|
void hal_pwmn_stop(TIM_HandleTypeDef* tim, uint32_t channel) {
|
|
HAL_TIMEx_PWMN_Stop(tim, channel);
|
|
}
|
|
|
|
void irda_pwm_set(float value, float freq){
|
|
hal_pwmn_set(value, freq, &IRDA_TX_TIM, IRDA_TX_CH);
|
|
}
|
|
|
|
void irda_pwm_stop(){
|
|
hal_pwmn_stop(&IRDA_TX_TIM, IRDA_TX_CH);
|
|
} |