]> git.donarmstrong.com Git - qmk_firmware.git/commitdiff
adds debouncing to sixkeyboard
authorJack Humbert <jack.humb@gmail.com>
Wed, 22 Mar 2017 18:24:04 +0000 (14:24 -0400)
committerJack Humbert <jack.humb@gmail.com>
Fri, 30 Jun 2017 20:33:49 +0000 (16:33 -0400)
keyboards/sixkeyboard/config.h
keyboards/sixkeyboard/keymaps/default/keymap.c
keyboards/sixkeyboard/matrix.c

index bf58bb2b7c8487e1bd79a58b443372a668e4a958..4ce25c67091727915afd3d6e3cf0a7ffe53167fc 100644 (file)
@@ -107,8 +107,8 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 /* disable action features */
 //#define NO_ACTION_LAYER
-//#define NO_ACTION_TAPPING
-//#define NO_ACTION_ONESHOT
+#define NO_ACTION_TAPPING
+#define NO_ACTION_ONESHOT
 //#define NO_ACTION_MACRO
 //#define NO_ACTION_FUNCTION
 
index 641ed790e892ba78b3828c85fae406b793d981be..74ce6f036966ffd5b05b55866569d4cbce380ccc 100644 (file)
@@ -17,16 +17,6 @@ const uint16_t PROGMEM fn_actions[] = {
 
 const macro_t *action_get_macro(keyrecord_t *record, uint8_t id, uint8_t opt)
 {
-  // MACRODOWN only works in this function
-      switch(id) {
-        case 0:
-          if (record->event.pressed) {
-            register_code(KC_RSFT);
-          } else {
-            unregister_code(KC_RSFT);
-          }
-        break;
-      }
     return MACRO_NONE;
 };
 
index ed1b70e286f5b2e3743a806a7f958eb64fcbfd7c..37cc68a21975020b6899defb156583bcf43b8f2f 100644 (file)
@@ -37,6 +37,11 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 /* matrix state(1:on, 0:off) */
 static matrix_row_t matrix[MATRIX_ROWS];
+static matrix_row_t matrix_stage[MATRIX_ROWS];
+static matrix_row_t matrix_debouncing[MATRIX_ROWS];
+
+static uint16_t debouncing_time;
+static bool debouncing = false;
 
 __attribute__ ((weak))
 void matrix_init_kb(void) {
@@ -78,14 +83,35 @@ void matrix_init(void)
     DDRD  &= ~(1<<6 | 1<<4 | 1<<1);
     PORTD |=  (1<<6 | 1<<4 | 1<<1);
 
-    matrix_init_kb();
+    for (uint8_t i=0; i < MATRIX_ROWS; i++) {
+        matrix[i] = 0;
+        matrix_debouncing[i] = 0;
+        matrix_stage[i] = 0;
+    }
+
+    matrix_init_quantum();
 
 }
 
 uint8_t matrix_scan(void)
 {
-    matrix[0] = (PINC&(1<<7) ? 0 : (1<<0)) | (PINB&(1<<7) ? 0 : (1<<1)) | (PINB&(1<<5) ? 0 : (1<<2));
-    matrix[1] = (PIND&(1<<6) ? 0 : (1<<0)) | (PIND&(1<<1) ? 0 : (1<<1)) | (PIND&(1<<4) ? 0 : (1<<2));
+    matrix_stage[0] = (PINC&(1<<7) ? 0 : (1<<0)) | (PINB&(1<<7) ? 0 : (1<<1)) | (PINB&(1<<5) ? 0 : (1<<2));
+    matrix_stage[1] = (PIND&(1<<6) ? 0 : (1<<0)) | (PIND&(1<<1) ? 0 : (1<<1)) | (PIND&(1<<4) ? 0 : (1<<2));
+
+    if (memcmp(matrix_debouncing, matrix_stage, sizeof(matrix)) != 0) {
+        debouncing = true;
+        debouncing_time = timer_read();
+    }
+
+    matrix_debouncing[0] = matrix_stage[0];
+    matrix_debouncing[1] = matrix_stage[1];
+
+    if (debouncing && (timer_elapsed(debouncing_time) > 20)) {
+        for (uint8_t i = 0; i < MATRIX_ROWS; i++) {
+            matrix[i] = matrix_debouncing[i];
+        }
+        debouncing = false;
+    }
 
     matrix_scan_quantum();
 
@@ -111,12 +137,6 @@ matrix_row_t matrix_get_row(uint8_t row)
 
 void matrix_print(void)
 {
-    print("\nr/c 0123456789ABCDEF\n");
-    for (uint8_t row = 0; row < MATRIX_ROWS; row++) {
-        phex(row); print(": ");
-        pbin_reverse16(matrix_get_row(row));
-        print("\n");
-    }
 }
 
 uint8_t matrix_key_count(void)