aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIBNobody <ibnobody@gmail.com>2016-08-25 00:15:41 -0500
committerIBNobody <ibnobody@gmail.com>2016-08-25 00:15:41 -0500
commit936a26d04ffa12801031c058f27e221174e3fabd (patch)
tree1a8390f8b239ef2adf5b21b5c98b57545660765e
parenta902206735972a15063d8d9852a87041d82d6e7b (diff)
downloadqmk_firmware-936a26d04ffa12801031c058f27e221174e3fabd.tar.gz
qmk_firmware-936a26d04ffa12801031c058f27e221174e3fabd.zip
Added pin support for A0-A7
Vision Division - It works!
-rw-r--r--keyboards/vision_division/config.h2
-rw-r--r--keyboards/vision_division/keymaps/default/Makefile2
-rw-r--r--keyboards/vision_division/keymaps/default/config.h6
-rw-r--r--quantum/config_common.h16
4 files changed, 13 insertions, 13 deletions
diff --git a/keyboards/vision_division/config.h b/keyboards/vision_division/config.h
index 37b834973..f50378ffa 100644
--- a/keyboards/vision_division/config.h
+++ b/keyboards/vision_division/config.h
@@ -24,7 +24,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
24 24
25 25
26/* COL2ROW or ROW2COL */ 26/* COL2ROW or ROW2COL */
27#define DIODE_DIRECTION COL2ROW 27#define DIODE_DIRECTION ROW2COL
28 28
29// #define BACKLIGHT_PIN B7 29// #define BACKLIGHT_PIN B7
30// #define BACKLIGHT_BREATHING 30// #define BACKLIGHT_BREATHING
diff --git a/keyboards/vision_division/keymaps/default/Makefile b/keyboards/vision_division/keymaps/default/Makefile
index 393a9e23a..ecbe7e1ab 100644
--- a/keyboards/vision_division/keymaps/default/Makefile
+++ b/keyboards/vision_division/keymaps/default/Makefile
@@ -10,7 +10,7 @@ COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work 10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality 11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI controls 12MIDI_ENABLE = no # MIDI controls
13AUDIO_ENABLE = no # Audio output on port C6 13AUDIO_ENABLE = yes # Audio output on port C6
14UNICODE_ENABLE = no # Unicode 14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. 16RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time.
diff --git a/keyboards/vision_division/keymaps/default/config.h b/keyboards/vision_division/keymaps/default/config.h
index 34eaaff5b..16740fb15 100644
--- a/keyboards/vision_division/keymaps/default/config.h
+++ b/keyboards/vision_division/keymaps/default/config.h
@@ -7,7 +7,7 @@
7 7
8/* USB Device descriptor parameter */ 8/* USB Device descriptor parameter */
9#define VENDOR_ID 0xFEED 9#define VENDOR_ID 0xFEED
10#define PRODUCT_ID GET_PID(NUMERIC_MAX_TEENSY, NUMERIC_MAX) 10#define PRODUCT_ID GET_PID(NUMERIC_NORMAL, HOMING_MAX_TEENSY)
11#define DEVICE_VER 0x0001 11#define DEVICE_VER 0x0001
12#define MANUFACTURER IBNobody 12#define MANUFACTURER IBNobody
13#define PRODUCT Vision Division 13#define PRODUCT Vision Division
@@ -17,8 +17,8 @@
17#define MATRIX_ROWS 6 17#define MATRIX_ROWS 6
18#define MATRIX_ROW_PINS { C2, C3, F4, F5, F6, F7 } 18#define MATRIX_ROW_PINS { C2, C3, F4, F5, F6, F7 }
19 19
20#define MATRIX_COLS GET_MATRIX_COLS(NUMERIC_MAX_TEENSY, NUMERIC_MAX) 20#define MATRIX_COLS GET_MATRIX_COLS(NUMERIC_NORMAL, HOMING_MAX_TEENSY)
21#define MATRIX_COL_PINS GET_MATRIX_COL_PINS(NUMERIC_MAX_TEENSY, NUMERIC_MAX) 21#define MATRIX_COL_PINS GET_MATRIX_COL_PINS(NUMERIC_NORMAL, HOMING_MAX_TEENSY)
22 22
23#define UNUSED_PINS 23#define UNUSED_PINS
24 24
diff --git a/quantum/config_common.h b/quantum/config_common.h
index 7ef4b23d4..8ed5f4a10 100644
--- a/quantum/config_common.h
+++ b/quantum/config_common.h
@@ -45,14 +45,14 @@
45#define F5 0xF5 45#define F5 0xF5
46#define F6 0xF6 46#define F6 0xF6
47#define F7 0xF7 47#define F7 0xF7
48#define A0 0xA0 48#define A0 0x00
49#define A1 0xA1 49#define A1 0x01
50#define A2 0xA2 50#define A2 0x02
51#define A3 0xA3 51#define A3 0x03
52#define A4 0xA4 52#define A4 0x04
53#define A5 0xA5 53#define A5 0x05
54#define A6 0xA6 54#define A6 0x06
55#define A7 0xA7 55#define A7 0x07
56 56
57 57
58/* USART configuration */ 58/* USART configuration */