teensy 3.6 pins 30, 36, 38 documentation error

Status
Not open for further replies.

RichardFerraro

Well-known member
The 3.6 pinout shows pins 30, 36, 40 to be PWM, however, the PWM list does not include these pins for the Teensy 3.6 ?

Which is correct?

thanks
 
Not sure of the reference used for p#1?

The code shows this - ...\hardware\teensy\avr\cores\teensy3\pins_arduino.h::
Code:
#elif defined(__MK66FX1M0__)
  #define digitalPinHasPWM(p) (((p) >= 2 && (p) <= 10) || (p) == 14 || (p) == 16 || (p) == 17 || ((p) >= 20 && (p) <= 23) || (p) == 29 || (p) == 30 || ((p) >= 35 && (p) <= 38))
#endif

That matches the T_3.6 card here.

Does include pins 30 and 36, but not 40.
 
Status
Not open for further replies.
Back
Top