diff options
author | Drashna Jaelre <drashna@live.com> | 2021-07-23 23:38:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-23 23:38:54 -0700 |
commit | 73d4d7dc2bcad7ed7e4d3bdb33aacc18c374c8a9 (patch) | |
tree | c65465e96bde0da50dde34bd98f93a92a7e1099a /keyboards/handwired/swiftrax/astro65/config.h | |
parent | b7fe93c4b809bb82484b242389ff09fe5714716f (diff) | |
download | qmk_firmware-73d4d7dc2bcad7ed7e4d3bdb33aacc18c374c8a9.tar.gz qmk_firmware-73d4d7dc2bcad7ed7e4d3bdb33aacc18c374c8a9.zip |
[Keyboard] Quick hack to fix Astro65 board (#13665)
* [Keyboard] Quick hack to fix Astro65 board
* Use proper pins
Diffstat (limited to 'keyboards/handwired/swiftrax/astro65/config.h')
-rw-r--r-- | keyboards/handwired/swiftrax/astro65/config.h | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/keyboards/handwired/swiftrax/astro65/config.h b/keyboards/handwired/swiftrax/astro65/config.h index 75ab5ee2f7..6f77ba2006 100644 --- a/keyboards/handwired/swiftrax/astro65/config.h +++ b/keyboards/handwired/swiftrax/astro65/config.h @@ -26,13 +26,15 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #define MANUFACTURER Swiftrax #define PRODUCT Astro65 /* key matrix size */ -#define MATRIX_ROWS 5 -#define MATRIX_COLS 15 +#define MATRIX_ROWS 5 +#define MATRIX_COLS 16 // ROWS: Top to bottom, COLS: Left to right -#define MATRIX_ROW_PINS { B0, B3, F7, B1, B2 } -#define MATRIX_COL_PINS { E6, D5, C7, C6, B6, B5, B4, D7, D6, D4, F0, F1, F4, F5, F6 } +#define MATRIX_ROW_PINS \ + { B0, B3, F7, B1, B2 } +#define MATRIX_COL_PINS \ + { E6, D5, D3, D4, D6, D7, B4, B5, B6, C6, C7, F6, F5, F4, F1, F0 } /* COL2ROW or ROW2COL */ #define DIODE_DIRECTION COL2ROW |