aboutsummaryrefslogtreecommitdiff
path: root/layouts/community/ergodox/adam
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/community/ergodox/adam')
-rw-r--r--layouts/community/ergodox/adam/config.h2
-rw-r--r--layouts/community/ergodox/adam/keymap.c20
2 files changed, 1 insertions, 21 deletions
diff --git a/layouts/community/ergodox/adam/config.h b/layouts/community/ergodox/adam/config.h
index 1a8fddb50..62e82d8b2 100644
--- a/layouts/community/ergodox/adam/config.h
+++ b/layouts/community/ergodox/adam/config.h
@@ -1,4 +1,4 @@
1#include QMK_KEYBOARD_CONFIG_H 1#pragma once
2 2
3#undef TAPPING_TERM 3#undef TAPPING_TERM
4#define TAPPING_TERM 300 //At 500 some bad logic takes hold 4#define TAPPING_TERM 300 //At 500 some bad logic takes hold
diff --git a/layouts/community/ergodox/adam/keymap.c b/layouts/community/ergodox/adam/keymap.c
index d17f0b83b..50270838a 100644
--- a/layouts/community/ergodox/adam/keymap.c
+++ b/layouts/community/ergodox/adam/keymap.c
@@ -127,26 +127,6 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
127 ) 127 )
128}; 128};
129 129
130const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
131{
132 // MACRODOWN only works in this function
133 switch(id) {
134 case 0:
135 if (record->event.pressed) {
136 SEND_STRING (QMK_KEYBOARD "/" QMK_KEYMAP " @ " QMK_VERSION);
137 }
138 break;
139 }
140
141 return MACRO_NONE;
142};
143
144// Runs just one time when the keyboard initializes.
145void matrix_init_user(void) {
146
147};
148
149
150// Runs constantly in the background, in a loop. 130// Runs constantly in the background, in a loop.
151void matrix_scan_user(void) { 131void matrix_scan_user(void) {
152 uint8_t layer = biton32(layer_state); 132 uint8_t layer = biton32(layer_state);