summaryrefslogtreecommitdiff
path: root/keyboards/kinesis/alvicstep/config.h
diff options
context:
space:
mode:
authorJack Humbert2017-01-15 01:13:15 -0500
committerGitHub2017-01-15 01:13:15 -0500
commit81b89f8b2b38b9cf74f2b5f0b90af9b1573baf2d (patch)
treea1156b3f1ea8e39b1d93c0196720f4a6893ee5aa /keyboards/kinesis/alvicstep/config.h
parent99d0b54e5ef179f745d92bbb2be945cbad84cb0e (diff)
parent9d4cc2f3f1666fc110506c6a982c53d1df67548b (diff)
Merge pull request #996 from milestogo/master
kinesis keyboard with subdirectories for different hardware - matches pull #911
Diffstat (limited to 'keyboards/kinesis/alvicstep/config.h')
-rw-r--r--keyboards/kinesis/alvicstep/config.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/keyboards/kinesis/alvicstep/config.h b/keyboards/kinesis/alvicstep/config.h
new file mode 100644
index 000000000..88b7e2644
--- /dev/null
+++ b/keyboards/kinesis/alvicstep/config.h
@@ -0,0 +1,35 @@
+#ifndef ALVICSTEP_CONFIG_H
+#define ALVICSTEP_CONFIG_H
+
+#include "../config.h"
+
+/* USB Device descriptor parameter */
+#define PRODUCT_ID 0x6060
+#define DEVICE_VER 0x0001
+
+/* key matrix size */
+#define MATRIX_ROWS 16
+#define MATRIX_COLS 8
+
+/*
+ * Keyboard Matrix Assignments
+ *
+ * Change this to how you wired your keyboard
+ * COLS: AVR pins used for columns, left to right
+ * ROWS: AVR pins used for rows, top to bottom
+ * DIODE_DIRECTION: COL2ROW = COL = Anode (+), ROW = Cathode (-, marked on diode)
+ * ROW2COL = ROW = Anode (+), COL = Cathode (-, marked on diode)
+ *
+*/
+//Passed through the port multipler, so 4 pins =16
+#define MATRIX_ROW_PINS { F0,F1, F2, F3 }
+
+// May be upside down.
+#define MATRIX_COL_PINS { B0,B1, B2, B3, B4, B5, B6, B7 }
+#define UNUSED_PINS
+
+/* COL2ROW or ROW2COL */
+#define DIODE_DIRECTION COL2ROW
+
+
+#endif