Add additional pins for Teensy 3.x and LC (#72)

This commit is contained in:
Drashna Jaelre
2019-06-05 18:37:35 -07:00
committed by Florian Didron
parent 61d1932f7c
commit dc13f5f518
2 changed files with 3 additions and 0 deletions

View File

@@ -28,6 +28,7 @@
05-29-2019 - Fixing matrix_scan so it properly returns changed status 05-29-2019 - Fixing matrix_scan so it properly returns changed status
05-29-2019 - Add belgian layour for sendstring (qmk#6008) 05-29-2019 - Add belgian layour for sendstring (qmk#6008)
06-03-2019 - Overhaul of AutoShift feature (qmk#6067) 06-03-2019 - Overhaul of AutoShift feature (qmk#6067)
06-05-2019 - Add additional pins for Teensy 3.x and LC
06-05-2019 - Parameterize STM32 I2C pin modes and timing parameters. (qmk#5671) 06-05-2019 - Parameterize STM32 I2C pin modes and timing parameters. (qmk#5671)
06-05-2019 - Fix compiler error for ATSAM based keyboards 06-05-2019 - Fix compiler error for ATSAM based keyboards
06-05-2019 - Move RGB typedef's into a unified location 06-05-2019 - Move RGB typedef's into a unified location

View File

@@ -204,6 +204,8 @@
#define B13 PAL_LINE(GPIOB, 13) #define B13 PAL_LINE(GPIOB, 13)
#define B14 PAL_LINE(GPIOB, 14) #define B14 PAL_LINE(GPIOB, 14)
#define B15 PAL_LINE(GPIOB, 15) #define B15 PAL_LINE(GPIOB, 15)
#define B16 PAL_LINE(GPIOB, 16)
#define B17 PAL_LINE(GPIOB, 17)
#define C0 PAL_LINE(GPIOC, 0) #define C0 PAL_LINE(GPIOC, 0)
#define C1 PAL_LINE(GPIOC, 1) #define C1 PAL_LINE(GPIOC, 1)
#define C2 PAL_LINE(GPIOC, 2) #define C2 PAL_LINE(GPIOC, 2)