diff options
author | Joel Challis <git@zvecr.com> | 2021-11-28 21:00:02 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-28 21:00:02 +0000 |
commit | 4ee33f1ffd921d4691207c5c3ab8c12742ddc12d (patch) | |
tree | 349bba10fae8fcefb630d28f67a0339eb0ee0774 /keyboards/plut0nium | |
parent | 097ae9d8172a1d7774e81e98aec8b88c147fa7e2 (diff) | |
download | qmk_firmware-4ee33f1ffd921d4691207c5c3ab8c12742ddc12d.tar.gz qmk_firmware-4ee33f1ffd921d4691207c5c3ab8c12742ddc12d.zip |
Fix keyboard level use of OLED_DRIVER_ENABLE (#15343)
Diffstat (limited to 'keyboards/plut0nium')
-rw-r--r-- | keyboards/plut0nium/0x3e/keymaps/default/keymap.c | 2 | ||||
-rw-r--r-- | keyboards/plut0nium/0x3e/rules.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/keyboards/plut0nium/0x3e/keymaps/default/keymap.c b/keyboards/plut0nium/0x3e/keymaps/default/keymap.c index 8f1a1d196..bca46e991 100644 --- a/keyboards/plut0nium/0x3e/keymaps/default/keymap.c +++ b/keyboards/plut0nium/0x3e/keymaps/default/keymap.c | |||
@@ -39,7 +39,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | |||
39 | ) | 39 | ) |
40 | }; | 40 | }; |
41 | 41 | ||
42 | #ifdef OLED_DRIVER_ENABLE | 42 | #ifdef OLED_ENABLE |
43 | static void render_logo(void) { | 43 | static void render_logo(void) { |
44 | static const char PROGMEM my_logo[] = { | 44 | static const char PROGMEM my_logo[] = { |
45 | // '0x3E_logo_32x16', 32x16px | 45 | // '0x3E_logo_32x16', 32x16px |
diff --git a/keyboards/plut0nium/0x3e/rules.mk b/keyboards/plut0nium/0x3e/rules.mk index c82a7231a..820f08573 100644 --- a/keyboards/plut0nium/0x3e/rules.mk +++ b/keyboards/plut0nium/0x3e/rules.mk | |||
@@ -15,5 +15,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
15 | NKRO_ENABLE = no # USB Nkey Rollover | 15 | NKRO_ENABLE = no # USB Nkey Rollover |
16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
18 | OLED_DRIVER_ENABLE = yes | 18 | OLED_ENABLE = yes |
19 | LTO_ENABLE = yes | 19 | LTO_ENABLE = yes |