Format code according to conventions (#16322)

This commit is contained in:
QMK Bot 2022-02-12 10:29:31 -08:00 committed by GitHub
parent afcdd7079c
commit 63646e8906
Failed to generate hash of commit
345 changed files with 4916 additions and 3229 deletions

View file

@ -26,7 +26,9 @@ void enable_printing(void) {
uart_init(19200);
}
void disable_printing(void) { printing_enabled = false; }
void disable_printing(void) {
printing_enabled = false;
}
uint8_t shifted_numbers[10] = {0x21, 0x40, 0x23, 0x24, 0x25, 0x5E, 0x26, 0x2A, 0x28, 0x29};
@ -41,7 +43,8 @@ void print_char(char c) {
}
void print_string(char c[]) {
for (uint8_t i = 0; i < strlen(c); i++) print_char(c[i]);
for (uint8_t i = 0; i < strlen(c); i++)
print_char(c[i]);
}
void print_box_string(const char text[]) {