🐛 [LCP1768] Init PWM in set_pwm_duty (#23110)

This commit is contained in:
Mike La Spina 2021-11-12 12:14:28 -06:00 committed by Scott Lahteine
parent 700cae43ab
commit b662dd1f92

View File

@ -25,7 +25,9 @@
#include <pwm.h>
void set_pwm_duty(const pin_t pin, const uint16_t v, const uint16_t v_size/*=255*/, const bool invert/*=false*/) {
LPC176x::pwm_write_ratio(pin, invert ? 1.0f - (float)v / v_size : (float)v / v_size);
if (!LPC176x::pin_is_valid(pin)) return;
if (LPC176x::pwm_attach_pin(pin))
LPC176x::pwm_write_ratio(pin, invert ? 1.0f - (float)v / v_size : (float)v / v_size); // map 1-254 onto PWM range
}
#if NEEDS_HARDWARE_PWM // Specific meta-flag for features that mandate PWM