Fixes long comment styling

This commit is contained in:
Ryan Neff 2024-03-24 12:00:59 -07:00
parent 6d8cfe8133
commit c0e7f063c9
4 changed files with 5 additions and 7 deletions

View File

@ -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 */

View File

@ -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);

View File

@ -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);

View File

@ -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