never mind ...

This commit is contained in:
Bob-the-Kuhn 2018-01-25 22:13:32 -06:00
parent 571ca72824
commit c6e01ebd52

View File

@ -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)