We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e4b076 commit d089af8Copy full SHA for d089af8
keyboards/moonlander/moonlander.c
@@ -358,6 +358,7 @@ void keyboard_post_init_kb(void) {
358
359
#if defined(AUDIO_ENABLE) && defined(MUSIC_MAP)
360
// clang-format off
361
+__attribute__ ((weak))
362
const uint8_t music_map[MATRIX_ROWS][MATRIX_COLS] = LAYOUT_moonlander(
363
58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71,
364
44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57,
keyboards/moonlander/moonlander.h
@@ -55,9 +55,9 @@ extern bool mcp23018_leds[];
55
{ k60, k61, k62, k63, k64, k65, k66 }, \
56
{ k70, k71, k72, k73, k74, k75, k76 }, \
57
{ k80, k81, k82, k83, k84, k85, k86 }, \
58
- { KC_NO,k91, k92, k93, k94, k95, k96 }, \
+ { KC_NO, k91, k92, k93, k94, k95, k96 }, \
59
{ KC_NO, KC_NO, ka2, ka3, ka4, ka5, ka6 }, \
60
- { KC_NO, KC_NO, KC_NO, kb3, kb4, kb5, kb6 } \
+ { KC_NO, KC_NO, KC_NO, kb3, kb4, kb5, kb6 } \
61
}
62
// clang-format on
63
@@ -83,4 +83,4 @@ typedef union {
83
84
extern keyboard_config_t keyboard_config;
85
86
-bool is_transport_connected(void);
+bool is_transport_connected(void);
0 commit comments