mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-31 22:20:56 +00:00
🐛 Fix STM32 FastPWM
This commit is contained in:
parent
0f7f709aad
commit
77af48e547
1 changed files with 4 additions and 2 deletions
|
@ -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 a new issue