aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--quantum/process_keycode/process_audio.c2
-rw-r--r--quantum/process_keycode/process_audio.h2
-rw-r--r--quantum/process_keycode/process_midi.c2
-rw-r--r--quantum/process_keycode/process_midi.h2
-rw-r--r--quantum/process_keycode/process_music.c4
-rw-r--r--quantum/template/keymaps/default/Makefile2
6 files changed, 7 insertions, 7 deletions
diff --git a/quantum/process_keycode/process_audio.c b/quantum/process_keycode/process_audio.c
index 71c0297ee..0b6380ed3 100644
--- a/quantum/process_keycode/process_audio.c
+++ b/quantum/process_keycode/process_audio.c
@@ -54,7 +54,7 @@ void process_audio_noteoff(uint8_t note) {
54 stop_note(compute_freq_for_midi_note(note)); 54 stop_note(compute_freq_for_midi_note(note));
55} 55}
56 56
57void process_audio_stop_all_notes(void) { 57void process_audio_all_notes_off(void) {
58 stop_all_notes(); 58 stop_all_notes();
59} 59}
60 60
diff --git a/quantum/process_keycode/process_audio.h b/quantum/process_keycode/process_audio.h
index 59a17725a..7ac15b733 100644
--- a/quantum/process_keycode/process_audio.h
+++ b/quantum/process_keycode/process_audio.h
@@ -4,7 +4,7 @@
4bool process_audio(uint16_t keycode, keyrecord_t *record); 4bool process_audio(uint16_t keycode, keyrecord_t *record);
5void process_audio_noteon(uint8_t note); 5void process_audio_noteon(uint8_t note);
6void process_audio_noteoff(uint8_t note); 6void process_audio_noteoff(uint8_t note);
7void process_audio_stop_all_notes(void); 7void process_audio_all_notes_off(void);
8 8
9void audio_on_user(void); 9void audio_on_user(void);
10 10
diff --git a/quantum/process_keycode/process_midi.c b/quantum/process_keycode/process_midi.c
index 214bba902..700c6ce8e 100644
--- a/quantum/process_keycode/process_midi.c
+++ b/quantum/process_keycode/process_midi.c
@@ -15,7 +15,7 @@ void process_midi_basic_noteoff(uint8_t note)
15 midi_send_noteoff(&midi_device, 0, note, 0); 15 midi_send_noteoff(&midi_device, 0, note, 0);
16} 16}
17 17
18void process_midi_basic_stop_all_notes(void) 18void process_midi_all_notes_off(void)
19{ 19{
20 midi_send_cc(&midi_device, 0, 0x7B, 0); 20 midi_send_cc(&midi_device, 0, 0x7B, 0);
21} 21}
diff --git a/quantum/process_keycode/process_midi.h b/quantum/process_keycode/process_midi.h
index 0f559ec23..58b7650c6 100644
--- a/quantum/process_keycode/process_midi.h
+++ b/quantum/process_keycode/process_midi.h
@@ -8,7 +8,7 @@
8#ifdef MIDI_BASIC 8#ifdef MIDI_BASIC
9void process_midi_basic_noteon(uint8_t note); 9void process_midi_basic_noteon(uint8_t note);
10void process_midi_basic_noteoff(uint8_t note); 10void process_midi_basic_noteoff(uint8_t note);
11void process_midi_basic_stop_all_notes(void); 11void process_midi_all_notes_off(void);
12#endif 12#endif
13 13
14#ifdef MIDI_ADVANCED 14#ifdef MIDI_ADVANCED
diff --git a/quantum/process_keycode/process_music.c b/quantum/process_keycode/process_music.c
index 4b86b91f0..f89a04ee3 100644
--- a/quantum/process_keycode/process_music.c
+++ b/quantum/process_keycode/process_music.c
@@ -44,10 +44,10 @@ static void music_noteoff(uint8_t note) {
44 44
45void music_all_notes_off(void) { 45void music_all_notes_off(void) {
46 #ifdef AUDIO_ENABLE 46 #ifdef AUDIO_ENABLE
47 process_audio_stop_all_notes(); 47 process_audio_all_notes_off();
48 #endif 48 #endif
49 #if defined(MIDI_ENABLE) && defined(MIDI_BASIC) 49 #if defined(MIDI_ENABLE) && defined(MIDI_BASIC)
50 process_midi_basic_stop_all_notes(); 50 process_midi_all_notes_off();
51 #endif 51 #endif
52} 52}
53 53
diff --git a/quantum/template/keymaps/default/Makefile b/quantum/template/keymaps/default/Makefile
index 24442db37..29f11bbc7 100644
--- a/quantum/template/keymaps/default/Makefile
+++ b/quantum/template/keymaps/default/Makefile
@@ -9,7 +9,7 @@ CONSOLE_ENABLE = no # Console for debug(+400)
9COMMAND_ENABLE = yes # Commands for debug and configuration 9COMMAND_ENABLE = yes # Commands for debug and configuration
10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work 10NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work
11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality 11BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality
12MIDI_ENABLE = no # MIDI support (+3800) 12MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config)
13AUDIO_ENABLE = no # Audio output on port C6 13AUDIO_ENABLE = no # Audio output on port C6
14UNICODE_ENABLE = no # Unicode 14UNICODE_ENABLE = no # Unicode
15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID 15BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID