QUERY · ISSUE
ESP8266: PWM glitches when doing DHT measure
port-esp8266
When using a PWM channel in parallel of a DHT measure, there can be some glitches on the PWM channel at the measure time. This is because the DHT drivers locks interrupts for accurate protocol timing handling, and the PWM driver relies on these interrupts.
CANDIDATE · PULL REQUEST
ESP8266: Always run pwm timer to avoid glitches from full pwm to any …
proposed resolution of #3631
Was simpler that I thought, just always run the timer even if no "active" PWM (non 0 or non full) is present. The glitch after full PWM disapeared, no cross effect on other channel introduced.