|
|
@ -27,21 +27,35 @@
|
|
|
|
#include "HAL.h"
|
|
|
|
#include "HAL.h"
|
|
|
|
#include "timers.h"
|
|
|
|
#include "timers.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define NR_TIMERS TERN(STM32_XL_DENSITY, 14, 8) // Maple timers, 14 for STM32_XL_DENSITY (F/G chips), 8 for HIGH density (C D E)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static uint16_t timer_freq[NR_TIMERS];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline uint8_t timer_and_index_for_pin(const pin_t pin, timer_dev **timer_ptr) {
|
|
|
|
|
|
|
|
*timer_ptr = PIN_MAP[pin].timer_device;
|
|
|
|
|
|
|
|
for (uint8_t i = 0; i < NR_TIMERS; i++) if (*timer_ptr == HAL_get_timer_dev(i))
|
|
|
|
|
|
|
|
return i;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size/*=255*/, const bool invert/*=false*/) {
|
|
|
|
void set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size/*=255*/, const bool invert/*=false*/) {
|
|
|
|
if (!PWM_PIN(pin)) return;
|
|
|
|
if (!PWM_PIN(pin)) return;
|
|
|
|
timer_dev *timer = PIN_MAP[pin].timer_device;
|
|
|
|
|
|
|
|
if (!(timer->regs.bas->SR & TIMER_CR1_CEN)) // Ensure the timer is enabled
|
|
|
|
timer_dev *timer; UNUSED(timer);
|
|
|
|
|
|
|
|
if (timer_freq[timer_and_index_for_pin(pin, &timer)] == 0)
|
|
|
|
set_pwm_frequency(pin, PWM_FREQUENCY);
|
|
|
|
set_pwm_frequency(pin, PWM_FREQUENCY);
|
|
|
|
uint16_t max_val = timer->regs.bas->ARR * v / v_size;
|
|
|
|
|
|
|
|
if (invert) max_val = v_size - max_val;
|
|
|
|
const uint8_t channel = PIN_MAP[pin].timer_channel;
|
|
|
|
pwmWrite(pin, max_val);
|
|
|
|
const uint16_t duty = invert ? v_size - v : v;
|
|
|
|
|
|
|
|
timer_set_compare(timer, channel, duty);
|
|
|
|
|
|
|
|
timer_set_mode(timer, channel, TIMER_PWM); // PWM Output Mode
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void set_pwm_frequency(const pin_t pin, int f_desired) {
|
|
|
|
void set_pwm_frequency(const pin_t pin, int f_desired) {
|
|
|
|
if (!PWM_PIN(pin)) return; // Don't proceed if no hardware timer
|
|
|
|
if (!PWM_PIN(pin)) return; // Don't proceed if no hardware timer
|
|
|
|
|
|
|
|
|
|
|
|
timer_dev *timer = PIN_MAP[pin].timer_device;
|
|
|
|
timer_dev *timer; UNUSED(timer);
|
|
|
|
uint8_t channel = PIN_MAP[pin].timer_channel;
|
|
|
|
timer_freq[timer_and_index_for_pin(pin, &timer)] = f_desired;
|
|
|
|
|
|
|
|
|
|
|
|
// Protect used timers
|
|
|
|
// Protect used timers
|
|
|
|
if (timer == HAL_get_timer_dev(MF_TIMER_TEMP)) return;
|
|
|
|
if (timer == HAL_get_timer_dev(MF_TIMER_TEMP)) return;
|
|
|
@ -53,8 +67,10 @@ void set_pwm_frequency(const pin_t pin, int f_desired) {
|
|
|
|
if (!(timer->regs.bas->SR & TIMER_CR1_CEN)) // Ensure the timer is enabled
|
|
|
|
if (!(timer->regs.bas->SR & TIMER_CR1_CEN)) // Ensure the timer is enabled
|
|
|
|
timer_init(timer);
|
|
|
|
timer_init(timer);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const uint8_t channel = PIN_MAP[pin].timer_channel;
|
|
|
|
timer_set_mode(timer, channel, TIMER_PWM);
|
|
|
|
timer_set_mode(timer, channel, TIMER_PWM);
|
|
|
|
uint16_t preload = 255; // Lock 255 PWM resolution for high frequencies
|
|
|
|
// Preload (resolution) cannot be equal to duty of 255 otherwise it may not result in digital off or on.
|
|
|
|
|
|
|
|
uint16_t preload = 254;
|
|
|
|
int32_t prescaler = (HAL_TIMER_RATE) / (preload + 1) / f_desired - 1;
|
|
|
|
int32_t prescaler = (HAL_TIMER_RATE) / (preload + 1) / f_desired - 1;
|
|
|
|
if (prescaler > 65535) { // For low frequencies increase prescaler
|
|
|
|
if (prescaler > 65535) { // For low frequencies increase prescaler
|
|
|
|
prescaler = 65535;
|
|
|
|
prescaler = 65535;
|
|
|
|