|
|
@ -30,7 +30,8 @@ |
|
|
|
static uint16_t timer_freq[TIMER_NUM]; |
|
|
|
|
|
|
|
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; // Don't proceed if no hardware timer
|
|
|
|
const uint16_t duty = invert ? v_size - v : v; |
|
|
|
if (PWM_PIN(pin)) { |
|
|
|
const PinName pin_name = digitalPinToPinName(pin); |
|
|
|
TIM_TypeDef * const Instance = (TIM_TypeDef *)pinmap_peripheral(pin_name, PinMap_PWM); |
|
|
|
|
|
|
@ -50,11 +51,15 @@ void set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size/*=255 |
|
|
|
|
|
|
|
// Note the resolution is sticky here, the input can be upto 16 bits and that would require RESOLUTION_16B_COMPARE_FORMAT (16)
|
|
|
|
// If such a need were to manifest then we would need to calc the resolution based on the v_size parameter and add code for it.
|
|
|
|
const uint16_t value = invert ? v_size - v : v; |
|
|
|
HT->setCaptureCompare(channel, value, RESOLUTION_8B_COMPARE_FORMAT); // Sets the duty, the calc is done in the library :)
|
|
|
|
HT->setCaptureCompare(channel, duty, RESOLUTION_8B_COMPARE_FORMAT); // Set the duty, the calc is done in the library :)
|
|
|
|
pinmap_pinout(pin_name, PinMap_PWM); // Make sure the pin output state is set.
|
|
|
|
if (previousMode != TIMER_OUTPUT_COMPARE_PWM1) HT->resume(); |
|
|
|
} |
|
|
|
else { |
|
|
|
pinMode(pin, OUTPUT); |
|
|
|
digitalWrite(pin, duty < v_size / 2 ? LOW : HIGH); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void set_pwm_frequency(const pin_t pin, const uint16_t f_desired) { |
|
|
|
if (!PWM_PIN(pin)) return; // Don't proceed if no hardware timer
|
|
|
|