M keyboards/baguette/baguette.c => keyboards/baguette/baguette.c +4 -0
@@ 15,6 15,10 @@
*/
#include "baguette.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
void bootmagic_lite(void)
{
// The lite version of TMK's bootmagic made by Wilba.
M keyboards/bpiphany/pegasushoof/2013/matrix.c => keyboards/bpiphany/pegasushoof/2013/matrix.c +4 -0
@@ 26,6 26,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "util.h"
#include "matrix.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
static matrix_row_t matrix[MATRIX_ROWS];
static matrix_row_t matrix_debouncing[MATRIX_ROWS];
M keyboards/dp60/matrix.c => keyboards/dp60/matrix.c +4 -0
@@ 15,6 15,10 @@
*/
#include "quantum.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
static matrix_row_t matrix[MATRIX_ROWS];
M keyboards/duck/eagle_viper/v2/matrix.c => keyboards/duck/eagle_viper/v2/matrix.c +4 -0
@@ 22,6 22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/jetfire/matrix.c => keyboards/duck/jetfire/matrix.c +4 -0
@@ 21,6 21,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "util.h"
#include "matrix.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/lightsaver/matrix.c => keyboards/duck/lightsaver/matrix.c +4 -0
@@ 22,6 22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/octagon/v1/matrix.c => keyboards/duck/octagon/v1/matrix.c +4 -0
@@ 22,6 22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/octagon/v2/matrix.c => keyboards/duck/octagon/v2/matrix.c +4 -0
@@ 22,6 22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/orion/v3/matrix.c => keyboards/duck/orion/v3/matrix.c +4 -0
@@ 16,6 16,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "quantum.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
M keyboards/duck/tcv3/matrix.c => keyboards/duck/tcv3/matrix.c +5 -1
@@ 22,6 22,10 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
#include "print.h"
#include "debug.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
static uint8_t debouncing = DEBOUNCE;
/* matrix state(1:on, 0:off) */
@@ 277,4 281,4 @@ static void select_col(uint8_t col) {
PORTB |= 0b00100000;
break;
}
-}>
\ No newline at end of file
+}
M keyboards/hs60/v1/v1.c => keyboards/hs60/v1/v1.c +4 -0
@@ 307,6 307,10 @@ led_config_t g_led_config = { {
#endif
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
void bootmagic_lite(void)
{
// The lite version of TMK's bootmagic made by Wilba.
M keyboards/matrix/noah/matrix.c => keyboards/matrix/noah/matrix.c +4 -0
@@ 13,6 13,10 @@
#include "print.h"
#include "matrix.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
/**
*
* Row pins are input with internal pull-down.
M keyboards/planck/rev6_drop/matrix.c => keyboards/planck/rev6_drop/matrix.c +4 -0
@@ 17,6 17,10 @@
#include "quantum.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
/*
* col: { B11, B10, B2, B1, A7, B0 }
* row: { A10, A9, A8, B15, C13, C14, C15, A2 }
M keyboards/preonic/rev3_drop/matrix.c => keyboards/preonic/rev3_drop/matrix.c +4 -0
@@ 17,6 17,10 @@
#include "quantum.h"
+#ifndef DEBOUNCE
+# define DEBOUNCE 5
+#endif
+
typedef uint16_t matrix_col_t;
/*