mirror of
https://github.com/qmk/qmk_firmware.git
synced 2024-11-24 20:32:58 +00:00
Fixes long comment styling
This commit is contained in:
parent
6d8cfe8133
commit
c0e7f063c9
@ -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 */
|
||||
|
@ -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);
|
||||
|
@ -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);
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user