aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/gergo
diff options
context:
space:
mode:
Diffstat (limited to 'keyboards/gergo')
-rw-r--r--keyboards/gergo/config.h10
-rw-r--r--keyboards/gergo/gergo.c18
-rw-r--r--keyboards/gergo/gergo.h2
3 files changed, 24 insertions, 6 deletions
diff --git a/keyboards/gergo/config.h b/keyboards/gergo/config.h
index a795f8dba..e4c61ecb0 100644
--- a/keyboards/gergo/config.h
+++ b/keyboards/gergo/config.h
@@ -24,11 +24,11 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* Defaults */
#ifndef BALLSTEP
#define BALLSTEP 20
-#endif
+#endif
#ifndef SCROLLSTEP
#define SCROLLSTEP 1
-#endif
+#endif
#define VERBOSE
@@ -36,7 +36,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#define VENDOR_ID 0xFEED
#define PRODUCT_ID 0x1307
#define DEVICE_VER 0x0001
-#define MANUFACTURER g Heavy Industries
+#define MANUFACTURER g Heavy Industries
#define PRODUCT Gergo
#define DESCRIPTION QMK keyboard firmware for Gergo
@@ -65,8 +65,8 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
/* key combination for command */
#define IS_COMMAND() ( \
- keyboard_report->mods == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
- keyboard_report->mods == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
+ get_mods() == (MOD_BIT(KC_LCTL) | MOD_BIT(KC_RCTL)) || \
+ get_mods() == (MOD_BIT(KC_LSFT) | MOD_BIT(KC_RSFT)) \
)
#define DEBOUNCE 5
diff --git a/keyboards/gergo/gergo.c b/keyboards/gergo/gergo.c
index c6ba91bb2..d32792e2a 100644
--- a/keyboards/gergo/gergo.c
+++ b/keyboards/gergo/gergo.c
@@ -64,3 +64,21 @@ out:
//uprintf("Init %x\n", mcp23018_status);
return mcp23018_status;
}
+
+const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = {
+ { {0,0}, {0,7}, {2,7}, {3,7} },
+ { {0,8}, {1,8}, {2,8}, {3,8} },
+ { {0,9}, {1,9}, {2,9}, {3,9} },
+ { {0,10}, {1,10}, {2,10}, {3,10} },
+ { {0,11}, {1,11}, {2,11}, {3,11} },
+ { {0,12}, {1,12}, {2,12}, {0,0} },
+ { {0,13}, {1,13}, {2,13}, {0,0} },
+
+ { {1,0}, {0,0}, {2,0}, {3,0} },
+ { {0,1}, {1,1}, {2,1}, {3,1} },
+ { {0,2}, {1,2}, {2,2}, {3,2} },
+ { {0,3}, {1,3}, {2,3}, {3,3} },
+ { {0,4}, {1,4}, {2,4}, {3,4} },
+ { {0,5}, {1,5}, {2,5}, {3,5} },
+ { {0,6}, {1,6}, {2,6}, {3,6} }
+};
diff --git a/keyboards/gergo/gergo.h b/keyboards/gergo/gergo.h
index c0d885029..0292c512a 100644
--- a/keyboards/gergo/gergo.h
+++ b/keyboards/gergo/gergo.h
@@ -48,7 +48,7 @@ uint8_t init_mcp23018(void);
{ L01, L11, L21, KC_NO}, \
{ L00, L10, L20, KC_NO}, \
\
- { R10, KC_NO, R20, R30}, \
+ { KC_NO, R10, R20, R30}, \
{ R00, R11, R21, R31}, \
{ R01, R12, R22, R32}, \
{ R02, R13, R23, R33}, \