summaryrefslogtreecommitdiff
path: root/keyboards/minidox/rev1
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2020-01-29 22:33:15 +0000
committerGitHub <noreply@github.com>2020-01-29 17:33:15 -0500
commit1249594cf0b09a45f28593c75f9d8f413ccf0424 (patch)
tree9eeba2cfe8ab6f44d5f4323eb42b3adb52eee7c7 /keyboards/minidox/rev1
parente04c5edaaef88a94c3a0fca257fcc3d2e8e50bda (diff)
Refactor minidox to use split_common (#7924)
* Initial refactor of minidox to split_common * post rebase fixes
Diffstat (limited to 'keyboards/minidox/rev1')
-rw-r--r--keyboards/minidox/rev1/config.h12
-rw-r--r--keyboards/minidox/rev1/rev1.h7
2 files changed, 4 insertions, 15 deletions
diff --git a/keyboards/minidox/rev1/config.h b/keyboards/minidox/rev1/config.h
index b7272bdb05..734ca562fd 100644
--- a/keyboards/minidox/rev1/config.h
+++ b/keyboards/minidox/rev1/config.h
@@ -15,10 +15,7 @@ You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef REV1_CONFIG_H
-#define REV1_CONFIG_H
-
-#include "../config.h"
+#pragma once
#define DEVICE_VER 0x0001
@@ -26,11 +23,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define MATRIX_ROW_PINS { B2, B6, B4, B5 }
#define MATRIX_COL_PINS { F4, D3, D2, D1, D4 }
+#define SOFT_SERIAL_PIN D0
+
#define USE_SERIAL
//#define EE_HANDS
-
-#define I2C_MASTER_LEFT
-//#define I2C_MASTER_RIGHT
-
-#endif
diff --git a/keyboards/minidox/rev1/rev1.h b/keyboards/minidox/rev1/rev1.h
index 5d32b05d41..bfa0e5fcc0 100644
--- a/keyboards/minidox/rev1/rev1.h
+++ b/keyboards/minidox/rev1/rev1.h
@@ -1,7 +1,4 @@
-#ifndef REV1_H
-#define REV1_H
-
-#include "../minidox.h"
+#pragma once
#include "quantum.h"
@@ -24,5 +21,3 @@
{ k61, k62, k63, k64, k65 }, \
{ ___, ___, k73, k74, k75 } \
}
-
-#endif