Apply suggestions from code review
Co-authored-by: Drashna Jaelre <drashna@live.com>
This commit is contained in:
parent
2651edc243
commit
f6cec668c7
2 changed files with 3 additions and 4 deletions
|
@ -4,6 +4,5 @@
|
|||
see https://docs.qmk.fm/#/feature_split_keyboard?id=setting-handedness
|
||||
for more options.
|
||||
*/
|
||||
#define MASTER_LEFT
|
||||
|
||||
#define TAPPING_FORCE_HOLD
|
||||
|
|
|
@ -166,7 +166,7 @@ static void print_status_narrow(void) {
|
|||
oled_write_ln_P(PSTR("Clmk"), false);
|
||||
break;
|
||||
default:
|
||||
oled_write_P(PSTR("Undefined\n"), false);
|
||||
oled_write_P(PSTR("Undef"), false);
|
||||
}
|
||||
oled_write_P(PSTR("\n\n"), false);
|
||||
// Print current layer
|
||||
|
@ -189,8 +189,8 @@ static void print_status_narrow(void) {
|
|||
oled_write_ln_P(PSTR("Undef"), false);
|
||||
}
|
||||
oled_write_P(PSTR("\n\n"), false);
|
||||
uint8_t led_usb_state = host_keyboard_leds();
|
||||
oled_write_ln_P(led_usb_state & (1 << USB_LED_CAPS_LOCK) ? PSTR("CPSLK") : PSTR(" "), false);
|
||||
led_t led_usb_state = host_keyboard_led_state()();
|
||||
oled_write_ln_P(PSTR("CPSLK"), led_usb_state.caps_lock);
|
||||
}
|
||||
|
||||
oled_rotation_t oled_init_user(oled_rotation_t rotation) {
|
||||
|
|
Loading…
Reference in a new issue