From c6e01ebd52aa875325ba9af57fc58b4d0b541699 Mon Sep 17 00:00:00 2001 From: Bob-the-Kuhn Date: Thu, 25 Jan 2018 22:13:32 -0600 Subject: [PATCH] never mind ... --- Marlin/src/HAL/HAL_DUE/fastio_Due.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/HAL/HAL_DUE/fastio_Due.h b/Marlin/src/HAL/HAL_DUE/fastio_Due.h index ad547c818b..2371587255 100644 --- a/Marlin/src/HAL/HAL_DUE/fastio_Due.h +++ b/Marlin/src/HAL/HAL_DUE/fastio_Due.h @@ -45,7 +45,7 @@ // Due has 12 PWMs assigned to logical pins 2-13. // 6, 7, 8 & 9 come from the PWM controller. The others come from the timers. -#define USEABLE_HARDWARE_PWM(p) ((2 >= p) && (p <= 13)) +#define USEABLE_HARDWARE_PWM(p) ((2 <= p) && (p <= 13)) #ifndef MASK #define MASK(PIN) (1 << PIN)