1
0

[CI] Format code according to conventions (#25827)

Format code according to conventions
This commit is contained in:
QMK Bot
2025-12-01 06:25:13 +11:00
committed by GitHub
parent 330a8597f8
commit 6ed61c65dd
92 changed files with 307 additions and 348 deletions

View File

@@ -21,12 +21,10 @@
// in beats-per-minute
#endif
#define SONG(notes...) \
{ notes }
#define SONG(notes...) {notes}
// Note Types
#define MUSICAL_NOTE(note, duration) \
{ (NOTE##note), duration }
#define MUSICAL_NOTE(note, duration) {(NOTE##note), duration}
#define BREVE_NOTE(note) MUSICAL_NOTE(note, 128)
#define WHOLE_NOTE(note) MUSICAL_NOTE(note, 64)