diff options
author | Kosuke Adachi <ks@fstn.jp> | 2018-10-20 01:12:55 +0900 |
---|---|---|
committer | Drashna Jaelre <drashna@live.com> | 2018-10-19 09:12:55 -0700 |
commit | 78b48371aac3bc4ba468c9f7efcb742bafb81965 (patch) | |
tree | 95975a9202c821a0518d73acd2da64cc059624c2 /keyboards/crkbd/ssd1306.c | |
parent | efc88a0b16055dc0b2f94da8c46ea8fadeab70f4 (diff) |
Keyboard: Update logo and commonize it (#4151)
* Update logo and commonize it
* Move the glcdfont.c to the lib and add it to the SRC values of the rules.mk in the keymap folders
* Add static
Diffstat (limited to 'keyboards/crkbd/ssd1306.c')
-rw-r--r-- | keyboards/crkbd/ssd1306.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/keyboards/crkbd/ssd1306.c b/keyboards/crkbd/ssd1306.c index b8f9512e3f..205ce67a9e 100644 --- a/keyboards/crkbd/ssd1306.c +++ b/keyboards/crkbd/ssd1306.c @@ -4,7 +4,6 @@ #include "i2c.h" #include <string.h> #include "print.h" -#include "glcdfont.c" #ifdef ADAFRUIT_BLE_ENABLE #include "adafruit_ble.h" #endif @@ -14,6 +13,8 @@ #include "sendchar.h" #include "timer.h" +static 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, // as the latency of printing most of the debug info messes |