Browse Source

Fix PWM and Analog Pin counts om T3.5 and T3.6

Recent additions did not update these counts.

Seperated T3.5 from T3.6 as PWM and Analog counts are different
teensy4-core
Kurt Eckhardt 8 years ago
parent
commit
8cbf04ccd5
1 changed files with 8 additions and 2 deletions
  1. +8
    -2
      teensy3/core_pins.h

+ 8
- 2
teensy3/core_pins.h View File

#define CORE_NUM_INTERRUPT 24 // really only 18, but 6 "holes" #define CORE_NUM_INTERRUPT 24 // really only 18, but 6 "holes"
#define CORE_NUM_ANALOG 13 #define CORE_NUM_ANALOG 13
#define CORE_NUM_PWM 10 #define CORE_NUM_PWM 10
#elif defined(__MK64FX512__) || defined(__MK66FX1M0__)
#elif defined(__MK64FX512__)
#define CORE_NUM_TOTAL_PINS 64 #define CORE_NUM_TOTAL_PINS 64
#define CORE_NUM_DIGITAL 64 #define CORE_NUM_DIGITAL 64
#define CORE_NUM_INTERRUPT 64 #define CORE_NUM_INTERRUPT 64
#define CORE_NUM_ANALOG 23
#define CORE_NUM_ANALOG 27
#define CORE_NUM_PWM 20 #define CORE_NUM_PWM 20
#elif defined(__MK66FX1M0__)
#define CORE_NUM_TOTAL_PINS 64
#define CORE_NUM_DIGITAL 64
#define CORE_NUM_INTERRUPT 64
#define CORE_NUM_ANALOG 25
#define CORE_NUM_PWM 22
#endif #endif


#if defined(__MK20DX128__) || defined(__MK20DX256__) #if defined(__MK20DX128__) || defined(__MK20DX256__)

Loading…
Cancel
Save