aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2020-03-09 15:36:40 +1100
committerGitHub <noreply@github.com>2020-03-09 15:36:40 +1100
commit2271da00bc246c0791ec7c54bc496691ede71784 (patch)
tree0c9e1db2ce3b860bcef2c354f3e4c486209c65ac
parent6e28ff24baf50373acdc43fd6b2173af5e5e96c7 (diff)
downloadqmk_firmware-2271da00bc246c0791ec7c54bc496691ede71784.tar.gz
qmk_firmware-2271da00bc246c0791ec7c54bc496691ede71784.zip
Move splittest I2C (#8346)
-rw-r--r--keyboards/handwired/splittest/keymaps/default/config.h23
-rw-r--r--keyboards/handwired/splittest/promicro/config.h3
-rw-r--r--keyboards/handwired/splittest/teensy_2/config.h3
3 files changed, 6 insertions, 23 deletions
diff --git a/keyboards/handwired/splittest/keymaps/default/config.h b/keyboards/handwired/splittest/keymaps/default/config.h
deleted file mode 100644
index ecebd3658..000000000
--- a/keyboards/handwired/splittest/keymaps/default/config.h
+++ /dev/null
@@ -1,23 +0,0 @@
1/*
2This is the c configuration file for the keymap
3
4Copyright 2012 Jun Wako <wakojun@gmail.com>
5Copyright 2015 Jack Humbert
6
7This program is free software: you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
9the Free Software Foundation, either version 2 of the License, or
10(at your option) any later version.
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
17You should have received a copy of the GNU General Public License
18along with this program. If not, see <http://www.gnu.org/licenses/>.
19*/
20
21#pragma once
22
23#define USE_I2C
diff --git a/keyboards/handwired/splittest/promicro/config.h b/keyboards/handwired/splittest/promicro/config.h
index c2a9c6002..de2414cb7 100644
--- a/keyboards/handwired/splittest/promicro/config.h
+++ b/keyboards/handwired/splittest/promicro/config.h
@@ -18,6 +18,9 @@
18 18
19#include "config_common.h" 19#include "config_common.h"
20 20
21// use I2C on AVR
22#define USE_I2C
23
21// wiring of each half 24// wiring of each half
22#define MATRIX_ROW_PINS { B3 } 25#define MATRIX_ROW_PINS { B3 }
23#define MATRIX_COL_PINS { B6 } 26#define MATRIX_COL_PINS { B6 }
diff --git a/keyboards/handwired/splittest/teensy_2/config.h b/keyboards/handwired/splittest/teensy_2/config.h
index 7c092db30..eadd42fb7 100644
--- a/keyboards/handwired/splittest/teensy_2/config.h
+++ b/keyboards/handwired/splittest/teensy_2/config.h
@@ -18,6 +18,9 @@
18 18
19#include "config_common.h" 19#include "config_common.h"
20 20
21// use I2C on AVR
22#define USE_I2C
23
21// wiring of each half 24// wiring of each half
22#define MATRIX_ROW_PINS { F5 } 25#define MATRIX_ROW_PINS { F5 }
23#define MATRIX_COL_PINS { F7 } 26#define MATRIX_COL_PINS { F7 }