Browse Source

Update checking board master function (#12493)

changed is_master to is_keyboard_master()
pull/12684/head
calebchongc 3 years ago
committed by GitHub
parent
commit
5b394e82c9
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      users/ninjonas/oled.c

+ 4
- 4
users/ninjonas/oled.c View File

@ -5,10 +5,10 @@
#if defined(OLED_DRIVER_ENABLE) & !defined(KEYBOARD_kyria_rev1)
static uint32_t oled_timer = 0;
extern uint8_t is_master;
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
if (is_master) {
if (is_keyboard_master()) {
return OLED_ROTATION_0;
}
return OLED_ROTATION_180;
@ -99,7 +99,7 @@ void oled_task_user(void) {
else { oled_on(); }
#endif
if (is_master) {
if (is_keyboard_master()) {
render_status();
} else {
render_logo();
@ -108,4 +108,4 @@ void oled_task_user(void) {
}
}
#endif
#endif

Loading…
Cancel
Save