aboutsummaryrefslogtreecommitdiffstats
path: root/keyboards/massdrop/alt/alt.h
diff options
context:
space:
mode:
authorMechMerlin <30334081+mechmerlin@users.noreply.github.com>2019-09-25 12:55:27 -0700
committerDrashna Jaelre <drashna@live.com>2019-09-25 12:55:27 -0700
commit0850a8cb634febb92314af5a65a11e58b123e86f (patch)
tree34f3a19d2ba9f6c2820aa8cc438b238c16adf707 /keyboards/massdrop/alt/alt.h
parentc61d7d7cb001498e6edf09a9ebc6124c1fe6ed97 (diff)
downloadfirmware-0850a8cb634febb92314af5a65a11e58b123e86f.tar.gz
firmware-0850a8cb634febb92314af5a65a11e58b123e86f.tar.bz2
firmware-0850a8cb634febb92314af5a65a11e58b123e86f.zip
65 ansi blocker everywhere (everywhere I can find) (#6805)
* e6.5 actually already had a 65_ansi_blocker LAYOUT macro, so just had to enable in rules. * Add the 65_ansi_blocker LAYOUT macro and enable in rules.mk * rename LAYOUT macro in .h and in the keymap.c as it was only a default keymap. Also enable in rules.mk * rename but also had to define the existing LAYOUT macro as the new one to prevent breakage of existing keymaps * add 65_ansi_blocker support for vinta * forgot to update the info.json on these * add new default layout 65_ansi_blocker support to alt * add 65_ansi_blocker support * undo changes
Diffstat (limited to 'keyboards/massdrop/alt/alt.h')
-rw-r--r--keyboards/massdrop/alt/alt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/keyboards/massdrop/alt/alt.h b/keyboards/massdrop/alt/alt.h
index 8dfed8d2d..f1adcd67c 100644
--- a/keyboards/massdrop/alt/alt.h
+++ b/keyboards/massdrop/alt/alt.h
@@ -9,7 +9,7 @@
#include "usb/udi_cdc.h"
#include "usb/usb2422.h"
-#define LAYOUT( \
+#define LAYOUT_65_ansi_blocker( \
K01, K02, K03, K04, K05, K06, K07, K08, K09, K10, K11, K12, K13, K14, K15, \
K16, K17, K18, K19, K20, K21, K22, K23, K24, K25, K26, K27, K28, K29, K30, \
K31, K32, K33, K34, K35, K36, K37, K38, K39, K40, K41, K42, K43, K44, K45, \
@@ -32,3 +32,5 @@
dprintf(name " enabled\r\n"); \
} \
}
+
+#define LAYOUT LAYOUT_65_ansi_blocker // Ensure that user made existing keymaps do not break.