diff options
author | QMK Bot <hello@qmk.fm> | 2021-02-19 05:41:36 +0000 |
---|---|---|
committer | QMK Bot <hello@qmk.fm> | 2021-02-19 05:41:36 +0000 |
commit | 7713f8f820efc97c696ac20a82753f956934651d (patch) | |
tree | 2e09e9122a2ae8621d1b627a3cb604d37dd4e54c /keyboards/crkbd | |
parent | 6136cd3cd9dbcbe7a1381b36b639d057633f1d2c (diff) | |
parent | 63f8620d958fea41f4942421114de5762a58f98f (diff) |
Merge remote-tracking branch 'origin/master' into develop
Diffstat (limited to 'keyboards/crkbd')
-rw-r--r-- | keyboards/crkbd/crkbd.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/keyboards/crkbd/crkbd.c b/keyboards/crkbd/crkbd.c index af0ef8a345..ab1381a39b 100644 --- a/keyboards/crkbd/crkbd.c +++ b/keyboards/crkbd/crkbd.c @@ -17,3 +17,20 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ #include "crkbd.h" + +#ifdef SWAP_HANDS_ENABLE +__attribute__ ((weak)) +const keypos_t hand_swap_config[MATRIX_ROWS][MATRIX_COLS] = { + // Left + {{0, 4}, {1, 4}, {2, 4}, {3, 4}, {4, 4}, {5, 4}}, + {{0, 5}, {1, 5}, {2, 5}, {3, 5}, {4, 5}, {5, 5}}, + {{0, 6}, {1, 6}, {2, 6}, {3, 6}, {4, 6}, {5, 6}}, + {{0, 7}, {1, 7}, {2, 7}, {3, 7}, {4, 7}, {5, 7}}, + // Right + {{0, 0}, {1, 0}, {2, 0}, {3, 0}, {4, 0}, {5, 0}}, + {{0, 1}, {1, 1}, {2, 1}, {3, 1}, {4, 1}, {5, 1}}, + {{0, 2}, {1, 2}, {2, 2}, {3, 2}, {4, 2}, {5, 2}}, + {{0, 3}, {1, 3}, {2, 3}, {3, 3}, {4, 3}, {5, 3}} +}; +#endif + |