diff options
author | skullY <skullydazed@gmail.com> | 2017-12-14 23:02:49 -0800 |
---|---|---|
committer | skullY <skullydazed@gmail.com> | 2017-12-22 09:49:14 -0800 |
commit | 4932f9566af126bf98c36856856180a1532ff837 (patch) | |
tree | f49b5bc6bb7be55347ecd234a1985c597467a313 /keyboards/clueboard | |
parent | 97c6b8143cf495624ede76500c9c6140ccca1400 (diff) | |
download | firmware-4932f9566af126bf98c36856856180a1532ff837.tar.gz firmware-4932f9566af126bf98c36856856180a1532ff837.tar.bz2 firmware-4932f9566af126bf98c36856856180a1532ff837.zip |
capslock led fix for clueboard 60
Diffstat (limited to 'keyboards/clueboard')
-rw-r--r-- | keyboards/clueboard/60/boards/GENERIC_STM32_F303XC/board.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/clueboard/60/boards/GENERIC_STM32_F303XC/board.h b/keyboards/clueboard/60/boards/GENERIC_STM32_F303XC/board.h index 145d569f0..7405c0ea9 100644 --- a/keyboards/clueboard/60/boards/GENERIC_STM32_F303XC/board.h +++ b/keyboards/clueboard/60/boards/GENERIC_STM32_F303XC/board.h @@ -416,7 +416,7 @@ PIN_PUPDR_PULLUP(GPIOB_PIN4) | \ PIN_PUPDR_PULLUP(GPIOB_PIN5) | \ PIN_PUPDR_FLOATING(GPIOB_PIN6) | \ - PIN_PUPDR_PULLUP(GPIOB_PIN7) | \ + PIN_PUPDR_PULLDOWN(GPIOB_PIN7) | \ PIN_PUPDR_PULLUP(GPIOB_PIN8) | \ PIN_PUPDR_PULLUP(GPIOB_PIN9) | \ PIN_PUPDR_PULLUP(GPIOB_PIN10) | \ @@ -432,7 +432,7 @@ PIN_ODR_HIGH(GPIOB_PIN4) | \ PIN_ODR_HIGH(GPIOB_PIN5) | \ PIN_ODR_HIGH(GPIOB_PIN6) | \ - PIN_ODR_HIGH(GPIOB_PIN7) | \ + PIN_ODR_LOW(GPIOB_PIN7) | \ PIN_ODR_HIGH(GPIOB_PIN8) | \ PIN_ODR_HIGH(GPIOB_PIN9) | \ PIN_ODR_HIGH(GPIOB_PIN10) | \ |