Browse Source

never mind ...

Bob-the-Kuhn 6 years ago
parent
commit
c6e01ebd52
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/HAL/HAL_DUE/fastio_Due.h

+ 1
- 1
Marlin/src/HAL/HAL_DUE/fastio_Due.h View File

@@ -45,7 +45,7 @@
45 45
 
46 46
 // Due has 12 PWMs assigned to logical pins 2-13.
47 47
 // 6, 7, 8 & 9 come from the PWM controller. The others come from the timers.
48
-#define USEABLE_HARDWARE_PWM(p) ((2 >= p) && (p <= 13))
48
+#define USEABLE_HARDWARE_PWM(p) ((2 <= p) && (p <= 13))
49 49
 
50 50
 #ifndef MASK
51 51
   #define MASK(PIN)  (1 << PIN)

Loading…
Cancel
Save