Browse Source

Fix keyboard level use of OLED_DRIVER_ENABLE (#15343)

pull/15350/head
Joel Challis 2 years ago
committed by GitHub
parent
commit
4ee33f1ffd
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 7 additions and 7 deletions
  1. +1
    -1
      keyboards/lyra/lyra.c
  2. +1
    -1
      keyboards/plut0nium/0x3e/keymaps/default/keymap.c
  3. +1
    -1
      keyboards/plut0nium/0x3e/rules.mk
  4. +1
    -1
      keyboards/pteron36/keymaps/via/keymap.c
  5. +2
    -2
      keyboards/pteron36/pteron36.c
  6. +1
    -1
      keyboards/pteron36/rules.mk

+ 1
- 1
keyboards/lyra/lyra.c View File

@ -15,7 +15,7 @@
*/
#include "lyra.h"
#ifdef OLED_DRIVER_ENABLE
#ifdef OLED_ENABLE
// 'lyralogooled', 32x128px
oled_rotation_t oled_init_kb(oled_rotation_t rotation) {


+ 1
- 1
keyboards/plut0nium/0x3e/keymaps/default/keymap.c View File

@ -39,7 +39,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
)
};
#ifdef OLED_DRIVER_ENABLE
#ifdef OLED_ENABLE
static void render_logo(void) {
static const char PROGMEM my_logo[] = {
// '0x3E_logo_32x16', 32x16px


+ 1
- 1
keyboards/plut0nium/0x3e/rules.mk View File

@ -15,5 +15,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
NKRO_ENABLE = no # USB Nkey Rollover
BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
OLED_DRIVER_ENABLE = yes
OLED_ENABLE = yes
LTO_ENABLE = yes

+ 1
- 1
keyboards/pteron36/keymaps/via/keymap.c View File

@ -84,7 +84,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
};
#ifdef OLED_DRIVER_ENABLE
#ifdef OLED_ENABLE
static void render_logo(void) {
static const char PROGMEM qmk_logo[] = {


+ 2
- 2
keyboards/pteron36/pteron36.c View File

@ -36,7 +36,7 @@ bool encoder_update_kb(uint8_t index, bool clockwise) {
return true;
}
//common oled support.
#ifdef OLED_DRIVER_ENABLE
#ifdef OLED_ENABLE
bool oled_task_kb(void) {
if (!oled_task_user()) {
return false;
@ -44,7 +44,7 @@ bool oled_task_kb(void) {
if (is_keyboard_master()) {
oled_write_P(PSTR("Layer: "), false);
switch (get_highest_layer(layer_state)) {
case _QWERTY:
case 0:
oled_write_ln_P(PSTR("Default"), false);
break;
default:


+ 1
- 1
keyboards/pteron36/rules.mk View File

@ -19,7 +19,7 @@ NKRO_ENABLE = no # USB Nkey Rollover
BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow
AUDIO_ENABLE = no # Audio output
OLED_DRIVER_ENABLE = yes # OLED display
OLED_ENABLE = yes # OLED display
ENCODER_ENABLE = yes # Encoder support
SPLIT_KEYBOARD = yes # Split enable


Loading…
Cancel
Save