summaryrefslogtreecommitdiff
path: root/keyboards/crkbd/keymaps
diff options
context:
space:
mode:
authorEric Gebhart <e.a.gebhart@gmail.com>2022-01-13 23:40:41 -0500
committerGitHub <noreply@github.com>2022-01-13 20:40:41 -0800
commite865cab48ec25c2fff958b23d89b1f86755d445c (patch)
tree0632ae08d0bfd477469768925ba74bce67087871 /keyboards/crkbd/keymaps
parent0f110737dba362596fcdbebd6c2bd4cc574f344b (diff)
[Keymap] ericgebhart keymap and userspace updates (#15727)
Co-authored-by: Drashna Jaelre <drashna@live.com> Co-authored-by: Dasky <32983009+daskygit@users.noreply.github.com> Co-authored-by: Drashna Jael're <drashna@live.com>
Diffstat (limited to 'keyboards/crkbd/keymaps')
-rwxr-xr-xkeyboards/crkbd/keymaps/ericgebhart/config.h24
-rwxr-xr-xkeyboards/crkbd/keymaps/ericgebhart/keymap.c60
2 files changed, 84 insertions, 0 deletions
diff --git a/keyboards/crkbd/keymaps/ericgebhart/config.h b/keyboards/crkbd/keymaps/ericgebhart/config.h
new file mode 100755
index 0000000000..d1844f6807
--- /dev/null
+++ b/keyboards/crkbd/keymaps/ericgebhart/config.h
@@ -0,0 +1,24 @@
+/*
+This is the c configuration file for the keymap
+
+Copyright 2012 Jun Wako <wakojun@gmail.com>
+Copyright 2015 Jack Humbert
+
+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/>.
+*/
+
+#pragma once
+
+// otherwise the other promicro v3 isn't found
+#define SPLIT_USB_DETECT
diff --git a/keyboards/crkbd/keymaps/ericgebhart/keymap.c b/keyboards/crkbd/keymaps/ericgebhart/keymap.c
new file mode 100755
index 0000000000..e893ec596b
--- /dev/null
+++ b/keyboards/crkbd/keymaps/ericgebhart/keymap.c
@@ -0,0 +1,60 @@
+/*
+ Copyright 2018 Eric Gebhart <e.a.gebhart@gmail.com>
+
+ 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 "ericgebhart.h"
+
+#define Crkbd_base(...) Base_3x6_3(__VA_ARGS__)
+#define Crkbd_bepo(...) Base_bepo_3x6_3(__VA_ARGS__)
+#define Crkbd_bepo6(...) Base_bepo6_3x6_3(__VA_ARGS__)
+#define Crkbd_transient(...) Transient6_3x6_3(__VA_ARGS__)
+
+/*
+ * The `Crkbd_base` macro is a template to allow the use of identical
+ * modifiers for the default layouts (eg QWERTY, Colemak, Dvorak, etc), so
+ * that there is no need to set them up for each layout, and modify all of
+ * them if I want to change them. This helps to keep consistency and ease
+ * of use. K## is a placeholder to pass through the individual keycodes
+ */
+
+const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
+ // Qwerty based Base layers
+ [_DVORAK] = Crkbd_base(___DVORAK___),
+ [_BEAKL] = Crkbd_base(___BEAKL15___),
+ [_COLEMAK] = Crkbd_base(___COLEMAK_DH___),
+ [_QWERTY] = Crkbd_base(___QWERTY___),
+
+ // Bepo base layers
+ [_BEAKL_BP] = Crkbd_bepo(___BEAKL15_FR___),
+ [_DVORAK_BP] = Crkbd_bepo(___DVORAK_FR___),
+ [_BEPO] = Crkbd_bepo6(___BEPO6___),
+
+ // Transient layers.
+ [_SYMB] = Crkbd_transient(___SYMB_BEAKLB_3x12___),
+ [_SYMB_BP] = Crkbd_transient(___SYMB_BEAKLB_BP_3x12___),
+
+ [_KEYPAD] = Crkbd_transient(___KP_C_3x12___),
+ [_KEYPAD_BP] = Crkbd_transient(___KP_C_BP_3x12___),
+
+ [_TOPROWS] = Crkbd_transient(___TOPROWS_3x12___),
+ [_TOPROWS_BP] = Crkbd_transient(___TOPROWS_BP_3x12___),
+
+ [_NAV] = Crkbd_transient(___NAV_3x12___),
+
+ [_LAYERS] = Crkbd_transient(___LAYERS_3x12___),
+ //[_RGB] = Crkbd_transient(___RGB_3x12___),
+ [_ADJUST] = Crkbd_transient(___ADJUST_3x12___),
+ ///HPT_TOG, KC_NUKE, ___, ___, TG_MODS, HPT_FBK
+};