aboutsummaryrefslogtreecommitdiff
path: root/keyboards/redox
diff options
context:
space:
mode:
authorMattia Dal Ben <mattdibi@users.noreply.github.com>2018-11-27 17:59:53 +0100
committerDrashna Jaelre <drashna@live.com>2018-11-27 08:59:53 -0800
commitfaef966a4d66b802babf9332cbf3045edf47c729 (patch)
tree387bd45003132762db5f62288bdec141108bcaf5 /keyboards/redox
parenta054b5a06c00cf148fa416fae8f5a56586a10876 (diff)
downloadqmk_firmware-faef966a4d66b802babf9332cbf3045edf47c729.tar.gz
qmk_firmware-faef966a4d66b802babf9332cbf3045edf47c729.zip
Keymap: Set serial connection as default for the Redox rev1.0 keyboard (#4488)
* Set serial as default for Redox * Updated rules.mk file * Removed unused rule Co-Authored-By: mattdibi <mattdibi@users.noreply.github.com> * Removed unused rule Co-Authored-By: mattdibi <mattdibi@users.noreply.github.com>
Diffstat (limited to 'keyboards/redox')
-rw-r--r--keyboards/redox/keymaps/default/config.h6
-rw-r--r--keyboards/redox/keymaps/finex/config.h2
-rw-r--r--keyboards/redox/keymaps/german/config.h8
-rw-r--r--keyboards/redox/keymaps/italian/config.h6
-rw-r--r--keyboards/redox/keymaps/jeherve/config.h4
-rw-r--r--keyboards/redox/rules.mk4
6 files changed, 9 insertions, 21 deletions
diff --git a/keyboards/redox/keymaps/default/config.h b/keyboards/redox/keymaps/default/config.h
index 0670bf294..a3ef209a0 100644
--- a/keyboards/redox/keymaps/default/config.h
+++ b/keyboards/redox/keymaps/default/config.h
@@ -18,12 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#pragma once 18#pragma once
19 19
20/* Use I2C or Serial, not both */ 20/* Use I2C or Serial, not both */
21 21#define USE_SERIAL
22// #define USE_SERIAL 22// #define USE_I2C
23#define USE_I2C
24 23
25/* Select hand configuration */ 24/* Select hand configuration */
26
27#define MASTER_LEFT 25#define MASTER_LEFT
28// #define MASTER_RIGHT 26// #define MASTER_RIGHT
29// #define EE_HANDS 27// #define EE_HANDS
diff --git a/keyboards/redox/keymaps/finex/config.h b/keyboards/redox/keymaps/finex/config.h
index 9adbcedf4..b23342ce0 100644
--- a/keyboards/redox/keymaps/finex/config.h
+++ b/keyboards/redox/keymaps/finex/config.h
@@ -18,12 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#pragma once 18#pragma once
19 19
20/* Use I2C or Serial, not both */ 20/* Use I2C or Serial, not both */
21
22#define USE_SERIAL 21#define USE_SERIAL
23// #define USE_I2C 22// #define USE_I2C
24 23
25/* Select hand configuration */ 24/* Select hand configuration */
26
27#define MASTER_LEFT 25#define MASTER_LEFT
28// #define MASTER_RIGHT 26// #define MASTER_RIGHT
29// #define EE_HANDS 27// #define EE_HANDS
diff --git a/keyboards/redox/keymaps/german/config.h b/keyboards/redox/keymaps/german/config.h
index 0eb19ab1e..a3ef209a0 100644
--- a/keyboards/redox/keymaps/german/config.h
+++ b/keyboards/redox/keymaps/german/config.h
@@ -18,14 +18,12 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#pragma once 18#pragma once
19 19
20/* Use I2C or Serial, not both */ 20/* Use I2C or Serial, not both */
21 21#define USE_SERIAL
22// #define USE_SERIAL 22// #define USE_I2C
23#define USE_I2C
24 23
25/* Select hand configuration */ 24/* Select hand configuration */
26
27// #define MASTER_LEFT
28#define MASTER_LEFT 25#define MASTER_LEFT
26// #define MASTER_RIGHT
29// #define EE_HANDS 27// #define EE_HANDS
30 28
31#undef RGBLED_NUM 29#undef RGBLED_NUM
diff --git a/keyboards/redox/keymaps/italian/config.h b/keyboards/redox/keymaps/italian/config.h
index 0670bf294..a3ef209a0 100644
--- a/keyboards/redox/keymaps/italian/config.h
+++ b/keyboards/redox/keymaps/italian/config.h
@@ -18,12 +18,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
18#pragma once 18#pragma once
19 19
20/* Use I2C or Serial, not both */ 20/* Use I2C or Serial, not both */
21 21#define USE_SERIAL
22// #define USE_SERIAL 22// #define USE_I2C
23#define USE_I2C
24 23
25/* Select hand configuration */ 24/* Select hand configuration */
26
27#define MASTER_LEFT 25#define MASTER_LEFT
28// #define MASTER_RIGHT 26// #define MASTER_RIGHT
29// #define EE_HANDS 27// #define EE_HANDS
diff --git a/keyboards/redox/keymaps/jeherve/config.h b/keyboards/redox/keymaps/jeherve/config.h
index 939d0c8d8..b9b67c999 100644
--- a/keyboards/redox/keymaps/jeherve/config.h
+++ b/keyboards/redox/keymaps/jeherve/config.h
@@ -17,16 +17,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
17 17
18#pragma once 18#pragma once
19 19
20/* Use I2C or Serial, not both */
21
22/* Change the default tapping toggle value (normally 5) */ 20/* Change the default tapping toggle value (normally 5) */
23#define TAPPING_TOGGLE 2 21#define TAPPING_TOGGLE 2
24 22
23/* Use I2C or Serial, not both */
25#define USE_SERIAL 24#define USE_SERIAL
26//#define USE_I2C 25//#define USE_I2C
27 26
28/* Select hand configuration */ 27/* Select hand configuration */
29
30#define MASTER_LEFT 28#define MASTER_LEFT
31// #define MASTER_RIGHT 29// #define MASTER_RIGHT
32// #define EE_HANDS 30// #define EE_HANDS
diff --git a/keyboards/redox/rules.mk b/keyboards/redox/rules.mk
index 748d89dcf..c0edb5428 100644
--- a/keyboards/redox/rules.mk
+++ b/keyboards/redox/rules.mk
@@ -66,9 +66,7 @@ UNICODE_ENABLE = no # Unicode
66BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 66BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
67AUDIO_ENABLE = no # Audio output on port C6 67AUDIO_ENABLE = no # Audio output on port C6
68FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches 68FAUXCLICKY_ENABLE = no # Use buzzer to emulate clicky switches
69RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. 69RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight.
70SUBPROJECT_rev1 = yes
71USE_I2C = yes
72 70
73SPLIT_KEYBOARD = yes 71SPLIT_KEYBOARD = yes
74 72