diff --git a/keyboards/sofle_pico/config.h b/keyboards/sofle_pico/config.h index fe5825e9498..0aa7d7b1d94 100644 --- a/keyboards/sofle_pico/config.h +++ b/keyboards/sofle_pico/config.h @@ -9,7 +9,7 @@ #define SERIAL_USART_FULL_DUPLEX #define SERIAL_USART_TX_PIN GP16 #define SERIAL_USART_RX_PIN GP17 -/* Swap TX and RX pins if keyboard is master half. (Only available on some MCUs) */ +/* Swap TX and RX pins if keyboard is master half. Only available on some MCU's. This _is_ available on the RP2040 */ #define SERIAL_USART_PIN_SWAP /* I2C for OLEDs */ diff --git a/keyboards/sofle_pico/keymaps/default/keymap.c b/keyboards/sofle_pico/keymaps/default/keymap.c index 3107a025060..d19bb74a8a9 100644 --- a/keyboards/sofle_pico/keymaps/default/keymap.c +++ b/keyboards/sofle_pico/keymaps/default/keymap.c @@ -218,8 +218,7 @@ bool oled_task_user(void) { /* Display the logo for 5 seconds on boot. */ if (is_keyboard_master()) { render_logo(); - /* Adding text below the partial screen logo requires oled_set_cursor. */ - /* There are 10 chars per line. Subsequent oled_set_cursor simplifies line wraps. */ + /* Adding text below the partial screen logo requires oled_set_cursor. There are 10 chars per line. Subsequent oled_set_cursor simplifies line wraps. */ oled_set_cursor(0, 12); oled_write_ln_P(PSTR("v3.5.4"), false); oled_set_cursor(0, 13); diff --git a/keyboards/sofle_pico/keymaps/via/keymap.c b/keyboards/sofle_pico/keymaps/via/keymap.c index 3107a025060..d19bb74a8a9 100644 --- a/keyboards/sofle_pico/keymaps/via/keymap.c +++ b/keyboards/sofle_pico/keymaps/via/keymap.c @@ -218,8 +218,7 @@ bool oled_task_user(void) { /* Display the logo for 5 seconds on boot. */ if (is_keyboard_master()) { render_logo(); - /* Adding text below the partial screen logo requires oled_set_cursor. */ - /* There are 10 chars per line. Subsequent oled_set_cursor simplifies line wraps. */ + /* Adding text below the partial screen logo requires oled_set_cursor. There are 10 chars per line. Subsequent oled_set_cursor simplifies line wraps. */ oled_set_cursor(0, 12); oled_write_ln_P(PSTR("v3.5.4"), false); oled_set_cursor(0, 13); diff --git a/keyboards/sofle_pico/post_config.h b/keyboards/sofle_pico/post_config.h index a5366734531..32259924650 100644 --- a/keyboards/sofle_pico/post_config.h +++ b/keyboards/sofle_pico/post_config.h @@ -4,8 +4,8 @@ #pragma once /* Bootmagic lite */ -/* Top left for left side - this is default in core */ -/* Top right for right side */ +/* Left hand uses the top left button - this is default in core */ +/* Right hand uses the top right button */ #ifndef BOOTMAGIC_LITE_ROW_RIGHT # define BOOTMAGIC_LITE_ROW_RIGHT 5 #endif