]> git.friedersdorff.com Git - max/tmk_keyboard.git/commitdiff
pana_m8: Add debouncing
authortmk <hasu@tmk-kbd.com>
Mon, 21 Aug 2017 14:23:34 +0000 (23:23 +0900)
committertmk <hasu@tmk-kbd.com>
Mon, 21 Aug 2017 14:23:34 +0000 (23:23 +0900)
converter/pana_m8/config.h
converter/pana_m8/pana_m8.c

index 6d626d997b171a8938a35d02aba0e11d27c49e40..4580b834b30f07e75d160a9fc7e24afec6c3d9f6 100644 (file)
@@ -14,6 +14,9 @@
 #define MATRIX_ROWS 8
 #define MATRIX_COLS 8
 
+/* matrix debounce time in ms */
+#define DEBOUNCE 10
+
 
 /* key combination for command */
 #define IS_COMMAND() (keyboard_report->mods == (MOD_BIT(KC_LSHIFT) | MOD_BIT(KC_RSHIFT))) 
index 19f884877a19a3c1df57ebc7cb6fe88ac158f5b4..b455675100eb5cebef0c68c40ecc4ffa7144908b 100644 (file)
@@ -3,16 +3,19 @@
 #include "matrix.h"
 #include "led.h"
 #include "wait.h"
+#include "timer.h"
 #include "debug.h"
 
 #define CLK_HI() (PORTD |=  (1<<0))
 #define CLK_LO() (PORTD &= ~(1<<0))
-#define STATE()  (PIND & (1<<1))
+#define STATE()  (!!(PIND & (1<<1)))
 #define RST_HI() (PORTD |=  (1<<3))
 #define RST_LO() (PORTD &= ~(1<<3))
 #define SENSE()  (PIND & (1<<2))
 
 static matrix_row_t matrix[8] = {};
+static matrix_row_t matrix_debouncing[8] = {};
+static uint16_t debouncing_time = 0;
 
 
 void matrix_init(void)
@@ -48,10 +51,10 @@ uint8_t matrix_scan(void)
             CLK_HI();
             wait_us(10);
 
-            if (STATE()) {
-                matrix[row] |=  (1<<col);
-            } else {
-                matrix[row] &= ~(1<<col);
+            // detect state change and start debounce
+            if ((matrix_debouncing[row] & (1<<col)) ^ (STATE()<<col)) {
+                matrix_debouncing[row] ^= (1<<col);
+                debouncing_time = timer_read() || 1;
             }
             
             // proceed counter - next row
@@ -59,6 +62,14 @@ uint8_t matrix_scan(void)
             wait_us(10);
         }
     }
+
+    // debounced
+    if (debouncing_time && timer_elapsed(debouncing_time) > DEBOUNCE) {
+        for (int row = 0; row < MATRIX_ROWS; row++) {
+            matrix[row] = matrix_debouncing[row];
+        }
+        debouncing_time = 0;
+    }
     return 1;
 }