From 9c7818582d9f82b1378cfbfb654dbb8e9348b268 Mon Sep 17 00:00:00 2001 From: mogira <7379940+mogira@users.noreply.github.com> Date: Sat, 18 May 2019 04:37:12 +0900 Subject: Fix the modifier of font variable in ssd1306.c (#5880) --- keyboards/claw44/ssd1306.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboards/claw44') diff --git a/keyboards/claw44/ssd1306.c b/keyboards/claw44/ssd1306.c index 781c722638..e32fc091c2 100644 --- a/keyboards/claw44/ssd1306.c +++ b/keyboards/claw44/ssd1306.c @@ -13,7 +13,7 @@ #include "sendchar.h" #include "timer.h" -static const unsigned char font[] PROGMEM; +extern const unsigned char font[] PROGMEM; // Set this to 1 to help diagnose early startup problems // when testing power-on with ble. Turn it off otherwise, -- cgit v1.2.3 From faaaa134fd436be400aa2c7841b38907899d49a6 Mon Sep 17 00:00:00 2001 From: Drashna Jaelre Date: Thu, 6 Jun 2019 12:09:56 -0700 Subject: Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE (#5997) --- keyboards/claw44/rev1/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'keyboards/claw44') diff --git a/keyboards/claw44/rev1/config.h b/keyboards/claw44/rev1/config.h index ba2ed4559e..f3406fee5c 100644 --- a/keyboards/claw44/rev1/config.h +++ b/keyboards/claw44/rev1/config.h @@ -43,7 +43,7 @@ along with this program. If not, see . // #define BACKLIGHT_LEVELS 3 /* Set 0 if debouncing isn't needed */ -#define DEBOUNCING_DELAY 5 +#define DEBOUNCE 5 /* Mechanical locking support. Use KC_LCAP, KC_LNUM or KC_LSCR instead in keymap */ //#define LOCKING_SUPPORT_ENABLE -- cgit v1.2.3