Browse Source

use a custom name for custom pins

Zach White 5 years ago
parent
commit
7e78699e79
2 changed files with 4 additions and 4 deletions
  1. 2 2
      keyboards/nek_type_a/config.h
  2. 2 2
      keyboards/nek_type_a/matrix.c

+ 2 - 2
keyboards/nek_type_a/config.h

@@ -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
 

+ 2 - 2
keyboards/nek_type_a/matrix.c

@@ -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