STM32F1: ignore output check for analogWrite() (#14498)

This commit is contained in:
Tanguy Pruvot 2019-07-06 04:13:32 +02:00 committed by Scott Lahteine
parent 7a42132002
commit 052aa23efe

View File

@ -322,7 +322,7 @@ uint16_t analogRead(pin_t pin) {
// Wrapper to maple unprotected analogWrite
void analogWrite(pin_t pin, int pwm_val8) {
if (PWM_PIN(pin) && IS_OUTPUT(pin))
if (PWM_PIN(pin))
analogWrite(uint8_t(pin), pwm_val8);
}