summaryrefslogtreecommitdiff
path: root/ferris/keymap.c
diff options
context:
space:
mode:
authorChristoph Cullmann <christoph@cullmann.io>2024-07-30 18:11:10 +0200
committerChristoph Cullmann <christoph@cullmann.io>2024-07-30 18:11:10 +0200
commitbe26af998ee7cbcfeb5b52a366fbd2e6e0bd1017 (patch)
treec39b4ff4d3b2782f6acc80a6098683f21c525811 /ferris/keymap.c
parentfb365546149bd42111fdda1df72ab067d2836559 (diff)
42 keys layout atm
Diffstat (limited to 'ferris/keymap.c')
-rw-r--r--ferris/keymap.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/ferris/keymap.c b/ferris/keymap.c
deleted file mode 100644
index 0dd36fb..0000000
--- a/ferris/keymap.c
+++ /dev/null
@@ -1,26 +0,0 @@
-/* Copyright 2022 Christoph Cullmann
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
-
-#include QMK_KEYBOARD_H
-
-// Returns true if `pos` on the left hand of the keyboard, false if right.
-static bool on_left_hand(keypos_t pos) {
- // works not really on planck for bottom row, but we handle that differently
- return pos.row < MATRIX_ROWS / 2;
-}
-
-// our shared 34 keys keymap
-#include "../common/keymap.h"