diff options
author | Joel Challis <git@zvecr.com> | 2019-07-23 14:11:37 +0100 |
---|---|---|
committer | Danny <nooges@users.noreply.github.com> | 2019-07-23 09:11:37 -0400 |
commit | b1691ba696db90f0d9143a8e0213a2b93434c9b1 (patch) | |
tree | fc83941cd624f42c7470f2a1816ef7a566e6b912 /quantum | |
parent | 7ec583e5efb276ce90a40a1df985de7d0d0b8f46 (diff) |
Fix MATRIX_X_PINS_RIGHT ARM compilation (#6395)
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/split_common/matrix.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/split_common/matrix.c b/quantum/split_common/matrix.c index 3c3daf3d3b..41a15ace4e 100644 --- a/quantum/split_common/matrix.c +++ b/quantum/split_common/matrix.c @@ -253,13 +253,13 @@ void matrix_init(void) { // Set pinout for right half if pinout for that half is defined if (!isLeftHand) { #ifdef MATRIX_ROW_PINS_RIGHT - const uint8_t row_pins_right[MATRIX_ROWS] = MATRIX_ROW_PINS_RIGHT; + const pin_t row_pins_right[MATRIX_ROWS] = MATRIX_ROW_PINS_RIGHT; for (uint8_t i = 0; i < MATRIX_ROWS; i++) { row_pins[i] = row_pins_right[i]; } #endif #ifdef MATRIX_COL_PINS_RIGHT - const uint8_t col_pins_right[MATRIX_COLS] = MATRIX_COL_PINS_RIGHT; + const pin_t col_pins_right[MATRIX_COLS] = MATRIX_COL_PINS_RIGHT; for (uint8_t i = 0; i < MATRIX_COLS; i++) { col_pins[i] = col_pins_right[i]; } |