use a custom name for custom pins
2 files changed, 4 insertions(+), 4 deletions(-) M keyboards/nek_type_a/config.h M keyboards/nek_type_a/matrix.c
M keyboards/nek_type_a/config.h => keyboards/nek_type_a/config.h +2 -2
@@ 33,8 33,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. /* left columns are all onboard, right columns all on expander */ #define COL_EXPANDED { false, false, false, false, false, false, false, true, true, true, true, true, true, true, true, true, true, true} #define MATRIX_COL_PINS { C6, D7, B5, B6, B7, D6, D3, GPA0, GPA1, GPA2, GPA3, GPA4, GPA5, GPA6, GPA7, GPB0, GPB1, GPB2 } #define MATRIX_ROW_PINS { F7, F6, F5, F4, F1, F0 } #define NEK_MATRIX_COL_PINS { C6, D7, B5, B6, B7, D6, D3, GPA0, GPA1, GPA2, GPA3, GPA4, GPA5, GPA6, GPA7, GPB0, GPB1, GPB2 } #define NEK_MATRIX_ROW_PINS { F7, F6, F5, F4, F1, F0 } #define DIODE_DIRECTION ROW2COL
M keyboards/nek_type_a/matrix.c => keyboards/nek_type_a/matrix.c +2 -2
@@ 69,8 69,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #endif #if (DIODE_DIRECTION == ROW2COL) || (DIODE_DIRECTION == COL2ROW) static const uint8_t row_pins[MATRIX_ROWS] = MATRIX_ROW_PINS; static const uint8_t col_pins[MATRIX_COLS] = MATRIX_COL_PINS; static const uint8_t row_pins[MATRIX_ROWS] = NEK_MATRIX_ROW_PINS; static const uint8_t col_pins[MATRIX_COLS] = NEK_MATRIX_COL_PINS; static const bool col_expanded[MATRIX_COLS] = COL_EXPANDED; #endif