🐛 Fix STM32 FastPWM
This commit is contained in:
parent
0f7f709aad
commit
77af48e547
@ -74,6 +74,8 @@ void set_pwm_frequency(const pin_t pin, int f_desired) {
|
||||
PinName pin_name = digitalPinToPinName(pin);
|
||||
TIM_TypeDef *Instance = (TIM_TypeDef *)pinmap_peripheral(pin_name, PinMap_PWM); // Get HAL timer instance
|
||||
|
||||
const PinName pin_name = digitalPinToPinName(pin);
|
||||
TIM_TypeDef * const Instance = (TIM_TypeDef *)pinmap_peripheral(pin_name, PinMap_PWM); // Get HAL timer instance
|
||||
uint32_t index = get_timer_index(Instance);
|
||||
|
||||
// Protect used timers
|
||||
|
Loading…
Reference in New Issue
Block a user