aboutsummaryrefslogtreecommitdiff
path: root/common/keymap.h
diff options
context:
space:
mode:
authorShayne Holmes <simon.snth@xoxy.net>2014-04-09 15:54:16 -0700
committerShayne Holmes <simon.snth@xoxy.net>2014-04-09 15:54:16 -0700
commite5bafff725f7b9cbfc364e64c74ea7f68bfc9900 (patch)
treea83f4e5b6b181f2aed5b12b12f10ba43972aef64 /common/keymap.h
parent894a387d1fd8c823b5339e524e1f9336601ce2ef (diff)
downloadqmk_firmware-e5bafff725f7b9cbfc364e64c74ea7f68bfc9900.tar.gz
qmk_firmware-e5bafff725f7b9cbfc364e64c74ea7f68bfc9900.zip
Adding NKRO virtual dip-switch, using existing bit in keymap byte.
This takes the last, reserved bit there, but doesn't necessitate a revision to the magic number because it doesn't alter byte order. Add reference to NKRO virtual dip-switch to documentation.
Diffstat (limited to 'common/keymap.h')
-rw-r--r--common/keymap.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/keymap.h b/common/keymap.h
index bf32aceda..4c3019a36 100644
--- a/common/keymap.h
+++ b/common/keymap.h
@@ -35,7 +35,7 @@ typedef union {
35 bool no_gui:1; 35 bool no_gui:1;
36 bool swap_grave_esc:1; 36 bool swap_grave_esc:1;
37 bool swap_backslash_backspace:1; 37 bool swap_backslash_backspace:1;
38 bool reserved:1; 38 bool nkro:1;
39 }; 39 };
40} keymap_config_t; 40} keymap_config_t;
41keymap_config_t keymap_config; 41keymap_config_t keymap_config;