summaryrefslogtreecommitdiff
path: root/keyboards
diff options
context:
space:
mode:
authorAlbert Y <76888457+filterpaper@users.noreply.github.com>2021-02-19 13:40:44 +0800
committerGitHub <noreply@github.com>2021-02-18 21:40:44 -0800
commit63f8620d958fea41f4942421114de5762a58f98f (patch)
tree50199f23a01cf810a84234f35a2ad9642fb7dd14 /keyboards
parentbb11e726b843330f3e7e46c805f40e34eb7a3ae3 (diff)
[Keyboard] Add swap-hands array for CRKBD (Corne) (#11915)
Co-authored-by: filterpaper <filterpaper@localhost>
Diffstat (limited to 'keyboards')
-rw-r--r--keyboards/crkbd/crkbd.c17
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
+