diff options
author | James Young <18669334+noroadsleft@users.noreply.github.com> | 2021-08-15 20:51:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-08-16 06:51:13 +1000 |
commit | 4b453dca92f87899d98b5340b16677bd78a52beb (patch) | |
tree | a40b8e53964520762946e0c63bfc0a83cb2a3428 | |
parent | fd340f8957055d74b26a5ddc490253fcc8a3a2f7 (diff) | |
download | qmk_firmware-4b453dca92f87899d98b5340b16677bd78a52beb.tar.gz qmk_firmware-4b453dca92f87899d98b5340b16677bd78a52beb.zip |
Remove MIDI Configuration boilerplate (#11151)
* remove keyboard-level instances of `MIDI_ENABLE = no`
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e '/^[ #]*MIDI_ENABLE[ \t]*=[ \t]*no/d' {} +
```
Co-Authored-By: Nick Brassel <nick@tzarc.org>
* fix case-sensitivity issues on MIDI_ENABLE
Change instances of `MIDI_ENABLE = YES` to `MIDI_ENABLE = yes`.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;MIDI_ENABLE[ \t]*=[ \t]*[Yy][Ee][Ss];MIDI_ENABLE = yes;g' {} +
```
* replace `# MIDI controls` with `# MIDI support`
Replace `# MIDI controls` with `# MIDI support` in keyboard-level `rules.mk` files.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#[ \t]*MIDI[ \t]*\(controls\|support\).*;# MIDI support;g' {} +
```
* align inline comments
Aligns the inline comments to the length used by the QMK AVR rules.mk template.
Command:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;MIDI_ENABLE *= *yes.*;MIDI_ENABLE = yes # MIDI support;g' {} +
```
* remove commented instances of `MIDI_ENABLE` from keyboard `rules.mk` files
Commands:
```
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;#\([ \t]*MIDI_ENABLE\) = yes; \1 = no ;' {} +
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e 's;^\([ \t]*\)\(MIDI_ENABLE = no\);\2\1;' {} +
find keyboards/ -type f -name 'rules.mk' -and -not -path '*/keymaps/*' -exec sed -i -e '/^[ #]\+MIDI_ENABLE *= *no/d' {} +
```
* remove MIDI configuration boilerplate from keyboard config.h files
Co-authored-by: Nick Brassel <nick@tzarc.org>
879 files changed, 23 insertions, 5365 deletions
diff --git a/keyboards/1upkeyboards/1up60hse/config.h b/keyboards/1upkeyboards/1up60hse/config.h index 9d4ac3eed..a38ccf383 100644 --- a/keyboards/1upkeyboards/1up60hse/config.h +++ b/keyboards/1upkeyboards/1up60hse/config.h | |||
@@ -165,23 +165,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_ONESHOT | 165 | //#define NO_ACTION_ONESHOT |
166 | //#define NO_ACTION_MACRO | 166 | //#define NO_ACTION_MACRO |
167 | //#define NO_ACTION_FUNCTION | 167 | //#define NO_ACTION_FUNCTION |
168 | |||
169 | /* | ||
170 | * MIDI options | ||
171 | */ | ||
172 | |||
173 | /* enable basic MIDI features: | ||
174 | - MIDI notes can be sent when in Music mode is on | ||
175 | */ | ||
176 | //#define MIDI_BASIC | ||
177 | |||
178 | /* enable advanced MIDI features: | ||
179 | - MIDI notes can be added to the keymap | ||
180 | - Octave shift and transpose | ||
181 | - Virtual sustain, portamento, and modulation wheel | ||
182 | - etc. | ||
183 | */ | ||
184 | //#define MIDI_ADVANCED | ||
185 | |||
186 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
187 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/1upkeyboards/1up60hse/rules.mk b/keyboards/1upkeyboards/1up60hse/rules.mk index 51cadd9a6..2c7392c6e 100644 --- a/keyboards/1upkeyboards/1up60hse/rules.mk +++ b/keyboards/1upkeyboards/1up60hse/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/1upkeyboards/super16/config.h b/keyboards/1upkeyboards/super16/config.h index 4d12f2edc..f943fed54 100644 --- a/keyboards/1upkeyboards/super16/config.h +++ b/keyboards/1upkeyboards/super16/config.h | |||
@@ -195,26 +195,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
195 | //#define NO_ACTION_MACRO | 195 | //#define NO_ACTION_MACRO |
196 | //#define NO_ACTION_FUNCTION | 196 | //#define NO_ACTION_FUNCTION |
197 | 197 | ||
198 | /* | ||
199 | * MIDI options | ||
200 | */ | ||
201 | |||
202 | /* enable basic MIDI features: | ||
203 | - MIDI notes can be sent when in Music mode is on | ||
204 | */ | ||
205 | //#define MIDI_BASIC | ||
206 | |||
207 | /* enable advanced MIDI features: | ||
208 | - MIDI notes can be added to the keymap | ||
209 | - Octave shift and transpose | ||
210 | - Virtual sustain, portamento, and modulation wheel | ||
211 | - etc. | ||
212 | */ | ||
213 | //#define MIDI_ADVANCED | ||
214 | |||
215 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
216 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
217 | |||
218 | /* Bootmagic Lite key configuration */ | 198 | /* Bootmagic Lite key configuration */ |
219 | // #define BOOTMAGIC_LITE_ROW 0 | 199 | // #define BOOTMAGIC_LITE_ROW 0 |
220 | // #define BOOTMAGIC_LITE_COLUMN 0 | 200 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/1upkeyboards/super16/rules.mk b/keyboards/1upkeyboards/super16/rules.mk index d535eb4c3..4cd0ce009 100644 --- a/keyboards/1upkeyboards/super16/rules.mk +++ b/keyboards/1upkeyboards/super16/rules.mk | |||
@@ -27,7 +27,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by d | |||
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | RGB_MATRIX_ENABLE = yes | 28 | RGB_MATRIX_ENABLE = yes |
29 | RGB_MATRIX_DRIVER = WS2812 | 29 | RGB_MATRIX_DRIVER = WS2812 |
30 | MIDI_ENABLE = no # MIDI support | ||
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | AUDIO_ENABLE = no # Audio output on port C6 | 32 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/30wer/rules.mk b/keyboards/30wer/rules.mk index 6c223352e..9732be1c2 100644 --- a/keyboards/30wer/rules.mk +++ b/keyboards/30wer/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output | 25 | AUDIO_ENABLE = no # Audio output |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/40percentclub/25/config.h b/keyboards/40percentclub/25/config.h index 4a927110c..d43c59e06 100644 --- a/keyboards/40percentclub/25/config.h +++ b/keyboards/40percentclub/25/config.h | |||
@@ -173,23 +173,3 @@ | |||
173 | //#define NO_ACTION_ONESHOT | 173 | //#define NO_ACTION_ONESHOT |
174 | //#define NO_ACTION_MACRO | 174 | //#define NO_ACTION_MACRO |
175 | //#define NO_ACTION_FUNCTION | 175 | //#define NO_ACTION_FUNCTION |
176 | |||
177 | /* | ||
178 | * MIDI options | ||
179 | */ | ||
180 | |||
181 | /* enable basic MIDI features: | ||
182 | - MIDI notes can be sent when in Music mode is on | ||
183 | */ | ||
184 | //#define MIDI_BASIC | ||
185 | |||
186 | /* enable advanced MIDI features: | ||
187 | - MIDI notes can be added to the keymap | ||
188 | - Octave shift and transpose | ||
189 | - Virtual sustain, portamento, and modulation wheel | ||
190 | - etc. | ||
191 | */ | ||
192 | //#define MIDI_ADVANCED | ||
193 | |||
194 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
195 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/25/rules.mk b/keyboards/40percentclub/25/rules.mk index 75f9ebc74..53bc1a707 100644 --- a/keyboards/40percentclub/25/rules.mk +++ b/keyboards/40percentclub/25/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/4pack/config.h b/keyboards/40percentclub/4pack/config.h index b1101484c..00f0d3e57 100644 --- a/keyboards/40percentclub/4pack/config.h +++ b/keyboards/40percentclub/4pack/config.h | |||
@@ -200,26 +200,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
200 | //#define NO_ACTION_MACRO | 200 | //#define NO_ACTION_MACRO |
201 | //#define NO_ACTION_FUNCTION | 201 | //#define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | // #define BOOTMAGIC_LITE_ROW 0 | 204 | // #define BOOTMAGIC_LITE_ROW 0 |
225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 205 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/40percentclub/4pack/rules.mk b/keyboards/40percentclub/4pack/rules.mk index 814376203..f684c650c 100644 --- a/keyboards/40percentclub/4pack/rules.mk +++ b/keyboards/40percentclub/4pack/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/4x4/config.h b/keyboards/40percentclub/4x4/config.h index cfb5257b1..f3ed8ed22 100644 --- a/keyboards/40percentclub/4x4/config.h +++ b/keyboards/40percentclub/4x4/config.h | |||
@@ -140,23 +140,3 @@ | |||
140 | //#define NO_ACTION_ONESHOT | 140 | //#define NO_ACTION_ONESHOT |
141 | //#define NO_ACTION_MACRO | 141 | //#define NO_ACTION_MACRO |
142 | //#define NO_ACTION_FUNCTION | 142 | //#define NO_ACTION_FUNCTION |
143 | |||
144 | /* | ||
145 | * MIDI options | ||
146 | */ | ||
147 | |||
148 | /* enable basic MIDI features: | ||
149 | - MIDI notes can be sent when in Music mode is on | ||
150 | */ | ||
151 | //#define MIDI_BASIC | ||
152 | |||
153 | /* enable advanced MIDI features: | ||
154 | - MIDI notes can be added to the keymap | ||
155 | - Octave shift and transpose | ||
156 | - Virtual sustain, portamento, and modulation wheel | ||
157 | - etc. | ||
158 | */ | ||
159 | //#define MIDI_ADVANCED | ||
160 | |||
161 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
162 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/4x4/rules.mk b/keyboards/40percentclub/4x4/rules.mk index beb610976..4409d64b6 100644 --- a/keyboards/40percentclub/4x4/rules.mk +++ b/keyboards/40percentclub/4x4/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/5x5/config.h b/keyboards/40percentclub/5x5/config.h index 809e0a9e1..6f098a80b 100644 --- a/keyboards/40percentclub/5x5/config.h +++ b/keyboards/40percentclub/5x5/config.h | |||
@@ -149,23 +149,3 @@ | |||
149 | //#define NO_ACTION_ONESHOT | 149 | //#define NO_ACTION_ONESHOT |
150 | //#define NO_ACTION_MACRO | 150 | //#define NO_ACTION_MACRO |
151 | //#define NO_ACTION_FUNCTION | 151 | //#define NO_ACTION_FUNCTION |
152 | |||
153 | /* | ||
154 | * MIDI options | ||
155 | */ | ||
156 | |||
157 | /* enable basic MIDI features: | ||
158 | - MIDI notes can be sent when in Music mode is on | ||
159 | */ | ||
160 | //#define MIDI_BASIC | ||
161 | |||
162 | /* enable advanced MIDI features: | ||
163 | - MIDI notes can be added to the keymap | ||
164 | - Octave shift and transpose | ||
165 | - Virtual sustain, portamento, and modulation wheel | ||
166 | - etc. | ||
167 | */ | ||
168 | //#define MIDI_ADVANCED | ||
169 | |||
170 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
171 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/5x5/rules.mk b/keyboards/40percentclub/5x5/rules.mk index bcbc31c00..d9edf4284 100644 --- a/keyboards/40percentclub/5x5/rules.mk +++ b/keyboards/40percentclub/5x5/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard RGB underglow | 26 | BACKLIGHT_ENABLE = no # Enable keyboard RGB underglow |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/6lit/config.h b/keyboards/40percentclub/6lit/config.h index 4d21542d1..a7a68fc73 100644 --- a/keyboards/40percentclub/6lit/config.h +++ b/keyboards/40percentclub/6lit/config.h | |||
@@ -174,23 +174,3 @@ | |||
174 | //#define NO_ACTION_ONESHOT | 174 | //#define NO_ACTION_ONESHOT |
175 | //#define NO_ACTION_MACRO | 175 | //#define NO_ACTION_MACRO |
176 | //#define NO_ACTION_FUNCTION | 176 | //#define NO_ACTION_FUNCTION |
177 | |||
178 | /* | ||
179 | * MIDI options | ||
180 | */ | ||
181 | |||
182 | /* enable basic MIDI features: | ||
183 | - MIDI notes can be sent when in Music mode is on | ||
184 | */ | ||
185 | //#define MIDI_BASIC | ||
186 | |||
187 | /* enable advanced MIDI features: | ||
188 | - MIDI notes can be added to the keymap | ||
189 | - Octave shift and transpose | ||
190 | - Virtual sustain, portamento, and modulation wheel | ||
191 | - etc. | ||
192 | */ | ||
193 | //#define MIDI_ADVANCED | ||
194 | |||
195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/6lit/rules.mk b/keyboards/40percentclub/6lit/rules.mk index 9d1f539da..e6d7079db 100644 --- a/keyboards/40percentclub/6lit/rules.mk +++ b/keyboards/40percentclub/6lit/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/foobar/config.h b/keyboards/40percentclub/foobar/config.h index 46f1248f2..203ebd77f 100644 --- a/keyboards/40percentclub/foobar/config.h +++ b/keyboards/40percentclub/foobar/config.h | |||
@@ -174,23 +174,3 @@ | |||
174 | //#define NO_ACTION_ONESHOT | 174 | //#define NO_ACTION_ONESHOT |
175 | //#define NO_ACTION_MACRO | 175 | //#define NO_ACTION_MACRO |
176 | //#define NO_ACTION_FUNCTION | 176 | //#define NO_ACTION_FUNCTION |
177 | |||
178 | /* | ||
179 | * MIDI options | ||
180 | */ | ||
181 | |||
182 | /* enable basic MIDI features: | ||
183 | - MIDI notes can be sent when in Music mode is on | ||
184 | */ | ||
185 | //#define MIDI_BASIC | ||
186 | |||
187 | /* enable advanced MIDI features: | ||
188 | - MIDI notes can be added to the keymap | ||
189 | - Octave shift and transpose | ||
190 | - Virtual sustain, portamento, and modulation wheel | ||
191 | - etc. | ||
192 | */ | ||
193 | //#define MIDI_ADVANCED | ||
194 | |||
195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/foobar/rules.mk b/keyboards/40percentclub/foobar/rules.mk index 5228d0a2a..86368f3bd 100644 --- a/keyboards/40percentclub/foobar/rules.mk +++ b/keyboards/40percentclub/foobar/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/half_n_half/config.h b/keyboards/40percentclub/half_n_half/config.h index e226c7291..ca099d476 100644 --- a/keyboards/40percentclub/half_n_half/config.h +++ b/keyboards/40percentclub/half_n_half/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/40percentclub/half_n_half/rules.mk b/keyboards/40percentclub/half_n_half/rules.mk index b01e496ae..5ab178e8b 100644 --- a/keyboards/40percentclub/half_n_half/rules.mk +++ b/keyboards/40percentclub/half_n_half/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/i75/config.h b/keyboards/40percentclub/i75/config.h index 776f4abb6..0f478b516 100644 --- a/keyboards/40percentclub/i75/config.h +++ b/keyboards/40percentclub/i75/config.h | |||
@@ -130,26 +130,6 @@ | |||
130 | //#define NO_ACTION_MACRO | 130 | //#define NO_ACTION_MACRO |
131 | //#define NO_ACTION_FUNCTION | 131 | //#define NO_ACTION_FUNCTION |
132 | 132 | ||
133 | /* | ||
134 | * MIDI options | ||
135 | */ | ||
136 | |||
137 | /* enable basic MIDI features: | ||
138 | - MIDI notes can be sent when in Music mode is on | ||
139 | */ | ||
140 | //#define MIDI_BASIC | ||
141 | |||
142 | /* enable advanced MIDI features: | ||
143 | - MIDI notes can be added to the keymap | ||
144 | - Octave shift and transpose | ||
145 | - Virtual sustain, portamento, and modulation wheel | ||
146 | - etc. | ||
147 | */ | ||
148 | //#define MIDI_ADVANCED | ||
149 | |||
150 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
151 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
152 | |||
153 | /* Bootmagic Lite key configuration */ | 133 | /* Bootmagic Lite key configuration */ |
154 | // #define BOOTMAGIC_LITE_ROW 0 | 134 | // #define BOOTMAGIC_LITE_ROW 0 |
155 | // #define BOOTMAGIC_LITE_COLUMN 0 | 135 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/40percentclub/i75/rules.mk b/keyboards/40percentclub/i75/rules.mk index 221c4a5e1..402bf5c30 100644 --- a/keyboards/40percentclub/i75/rules.mk +++ b/keyboards/40percentclub/i75/rules.mk | |||
@@ -12,7 +12,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
12 | NKRO_ENABLE = no # USB Nkey Rollover | 12 | NKRO_ENABLE = no # USB Nkey Rollover |
13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
15 | MIDI_ENABLE = no # MIDI support | ||
16 | UNICODE_ENABLE = no # Unicode | 15 | UNICODE_ENABLE = no # Unicode |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | AUDIO_ENABLE = no # Audio output on port C6 | 17 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/mf68/rules.mk b/keyboards/40percentclub/mf68/rules.mk index ad58b42e3..48ad075a0 100644 --- a/keyboards/40percentclub/mf68/rules.mk +++ b/keyboards/40percentclub/mf68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/nano/rules.mk b/keyboards/40percentclub/nano/rules.mk index 105e977f9..cb6b0b389 100644 --- a/keyboards/40percentclub/nano/rules.mk +++ b/keyboards/40percentclub/nano/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/40percentclub/nein/config.h b/keyboards/40percentclub/nein/config.h index ec088d443..3532c8258 100644 --- a/keyboards/40percentclub/nein/config.h +++ b/keyboards/40percentclub/nein/config.h | |||
@@ -184,26 +184,6 @@ | |||
184 | //#define NO_ACTION_MACRO | 184 | //#define NO_ACTION_MACRO |
185 | //#define NO_ACTION_FUNCTION | 185 | //#define NO_ACTION_FUNCTION |
186 | 186 | ||
187 | /* | ||
188 | * MIDI options | ||
189 | */ | ||
190 | |||
191 | /* enable basic MIDI features: | ||
192 | - MIDI notes can be sent when in Music mode is on | ||
193 | */ | ||
194 | //#define MIDI_BASIC | ||
195 | |||
196 | /* enable advanced MIDI features: | ||
197 | - MIDI notes can be added to the keymap | ||
198 | - Octave shift and transpose | ||
199 | - Virtual sustain, portamento, and modulation wheel | ||
200 | - etc. | ||
201 | */ | ||
202 | //#define MIDI_ADVANCED | ||
203 | |||
204 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
205 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
206 | |||
207 | /* Bootmagic Lite key configuration */ | 187 | /* Bootmagic Lite key configuration */ |
208 | // #define BOOTMAGIC_LITE_ROW 0 | 188 | // #define BOOTMAGIC_LITE_ROW 0 |
209 | // #define BOOTMAGIC_LITE_COLUMN 0 | 189 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/40percentclub/nein/rules.mk b/keyboards/40percentclub/nein/rules.mk index 534623a4c..87eb47e4c 100644 --- a/keyboards/40percentclub/nein/rules.mk +++ b/keyboards/40percentclub/nein/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/nori/config.h b/keyboards/40percentclub/nori/config.h index e9bbe487a..1c1d8f0fb 100644 --- a/keyboards/40percentclub/nori/config.h +++ b/keyboards/40percentclub/nori/config.h | |||
@@ -162,23 +162,3 @@ | |||
162 | //#define NO_ACTION_ONESHOT | 162 | //#define NO_ACTION_ONESHOT |
163 | //#define NO_ACTION_MACRO | 163 | //#define NO_ACTION_MACRO |
164 | //#define NO_ACTION_FUNCTION | 164 | //#define NO_ACTION_FUNCTION |
165 | |||
166 | /* | ||
167 | * MIDI options | ||
168 | */ | ||
169 | |||
170 | /* enable basic MIDI features: | ||
171 | - MIDI notes can be sent when in Music mode is on | ||
172 | */ | ||
173 | //#define MIDI_BASIC | ||
174 | |||
175 | /* enable advanced MIDI features: | ||
176 | - MIDI notes can be added to the keymap | ||
177 | - Octave shift and transpose | ||
178 | - Virtual sustain, portamento, and modulation wheel | ||
179 | - etc. | ||
180 | */ | ||
181 | //#define MIDI_ADVANCED | ||
182 | |||
183 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
184 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/40percentclub/nori/rules.mk b/keyboards/40percentclub/nori/rules.mk index 963838ac6..e173f397f 100644 --- a/keyboards/40percentclub/nori/rules.mk +++ b/keyboards/40percentclub/nori/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/40percentclub/ut47/rules.mk b/keyboards/40percentclub/ut47/rules.mk index 1b9cf300e..82900cac3 100644 --- a/keyboards/40percentclub/ut47/rules.mk +++ b/keyboards/40percentclub/ut47/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/4pplet/aekiso60/rev_a/rules.mk b/keyboards/4pplet/aekiso60/rev_a/rules.mk index 559c5ddfc..9ded2ef9b 100644 --- a/keyboards/4pplet/aekiso60/rev_a/rules.mk +++ b/keyboards/4pplet/aekiso60/rev_a/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/4pplet/steezy60/rev_a/rules.mk b/keyboards/4pplet/steezy60/rev_a/rules.mk index 559c5ddfc..9ded2ef9b 100644 --- a/keyboards/4pplet/steezy60/rev_a/rules.mk +++ b/keyboards/4pplet/steezy60/rev_a/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/4pplet/waffling60/rev_a/rules.mk b/keyboards/4pplet/waffling60/rev_a/rules.mk index 559c5ddfc..9ded2ef9b 100644 --- a/keyboards/4pplet/waffling60/rev_a/rules.mk +++ b/keyboards/4pplet/waffling60/rev_a/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/6ball/rules.mk b/keyboards/6ball/rules.mk index 0322045c8..6f7587051 100644 --- a/keyboards/6ball/rules.mk +++ b/keyboards/6ball/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/7c8/framework/rules.mk b/keyboards/7c8/framework/rules.mk index 471be64a6..b308c5b8e 100644 --- a/keyboards/7c8/framework/rules.mk +++ b/keyboards/7c8/framework/rules.mk | |||
@@ -10,7 +10,6 @@ SLEEP_LED_ENABLE = no | |||
10 | NKRO_ENABLE = no | 10 | NKRO_ENABLE = no |
11 | BACKLIGHT_ENABLE = no | 11 | BACKLIGHT_ENABLE = no |
12 | RGBLIGHT_ENABLE = no | 12 | RGBLIGHT_ENABLE = no |
13 | MIDI_ENABLE = no | ||
14 | UNICODE_ENABLE = no | 13 | UNICODE_ENABLE = no |
15 | BLUETOOTH_ENABLE = no | 14 | BLUETOOTH_ENABLE = no |
16 | AUDIO_ENABLE = no | 15 | AUDIO_ENABLE = no |
diff --git a/keyboards/7skb/rules.mk b/keyboards/7skb/rules.mk index 6bb4d87e0..df6d10c0f 100644 --- a/keyboards/7skb/rules.mk +++ b/keyboards/7skb/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/9key/rules.mk b/keyboards/9key/rules.mk index 2c6cc24cf..bf6bc8a18 100644 --- a/keyboards/9key/rules.mk +++ b/keyboards/9key/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/abacus/config.h b/keyboards/abacus/config.h index 70ef55494..eee2f3f91 100644 --- a/keyboards/abacus/config.h +++ b/keyboards/abacus/config.h | |||
@@ -106,23 +106,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
106 | /* disable these deprecated features by default */ | 106 | /* disable these deprecated features by default */ |
107 | #define NO_ACTION_MACRO | 107 | #define NO_ACTION_MACRO |
108 | #define NO_ACTION_FUNCTION | 108 | #define NO_ACTION_FUNCTION |
109 | |||
110 | /* | ||
111 | * MIDI options | ||
112 | */ | ||
113 | |||
114 | /* enable basic MIDI features: | ||
115 | - MIDI notes can be sent when in Music mode is on | ||
116 | */ | ||
117 | //#define MIDI_BASIC | ||
118 | |||
119 | /* enable advanced MIDI features: | ||
120 | - MIDI notes can be added to the keymap | ||
121 | - Octave shift and transpose | ||
122 | - Virtual sustain, portamento, and modulation wheel | ||
123 | - etc. | ||
124 | */ | ||
125 | //#define MIDI_ADVANCED | ||
126 | |||
127 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
128 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/abacus/rules.mk b/keyboards/abacus/rules.mk index 2152bc65f..af4042fd9 100644 --- a/keyboards/abacus/rules.mk +++ b/keyboards/abacus/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | ENCODER_ENABLE = yes | 30 | ENCODER_ENABLE = yes |
diff --git a/keyboards/absinthe/rules.mk b/keyboards/absinthe/rules.mk index 5e7169d2a..c71d23e8d 100644 --- a/keyboards/absinthe/rules.mk +++ b/keyboards/absinthe/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | ENCODER_ENABLE = yes | 30 | ENCODER_ENABLE = yes |
diff --git a/keyboards/abstract/ellipse/rev1/config.h b/keyboards/abstract/ellipse/rev1/config.h index 57c9456fe..fe3687480 100644 --- a/keyboards/abstract/ellipse/rev1/config.h +++ b/keyboards/abstract/ellipse/rev1/config.h | |||
@@ -178,26 +178,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
178 | //#define NO_ACTION_MACRO | 178 | //#define NO_ACTION_MACRO |
179 | //#define NO_ACTION_FUNCTION | 179 | //#define NO_ACTION_FUNCTION |
180 | 180 | ||
181 | /* | ||
182 | * MIDI options | ||
183 | */ | ||
184 | |||
185 | /* enable basic MIDI features: | ||
186 | - MIDI notes can be sent when in Music mode is on | ||
187 | */ | ||
188 | //#define MIDI_BASIC | ||
189 | |||
190 | /* enable advanced MIDI features: | ||
191 | - MIDI notes can be added to the keymap | ||
192 | - Octave shift and transpose | ||
193 | - Virtual sustain, portamento, and modulation wheel | ||
194 | - etc. | ||
195 | */ | ||
196 | //#define MIDI_ADVANCED | ||
197 | |||
198 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
199 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
200 | |||
201 | /* Bootmagic Lite key configuration */ | 181 | /* Bootmagic Lite key configuration */ |
202 | // #define BOOTMAGIC_LITE_ROW 0 | 182 | // #define BOOTMAGIC_LITE_ROW 0 |
203 | // #define BOOTMAGIC_LITE_COLUMN 0 | 183 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/abstract/ellipse/rev1/rules.mk b/keyboards/abstract/ellipse/rev1/rules.mk index 4719b470e..cb241b2c0 100644 --- a/keyboards/abstract/ellipse/rev1/rules.mk +++ b/keyboards/abstract/ellipse/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/acheron/austin/rules.mk b/keyboards/acheron/austin/rules.mk index 61051ade8..b7d446119 100644 --- a/keyboards/acheron/austin/rules.mk +++ b/keyboards/acheron/austin/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | # Enter lower-power sleep mode when on the ChibiOS idle thread | 23 | # Enter lower-power sleep mode when on the ChibiOS idle thread |
diff --git a/keyboards/acheron/elongate/config.h b/keyboards/acheron/elongate/config.h index cc94d5f02..c51c7a821 100644 --- a/keyboards/acheron/elongate/config.h +++ b/keyboards/acheron/elongate/config.h | |||
@@ -193,25 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | /* disable these deprecated features by default */ | 193 | /* disable these deprecated features by default */ |
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | 196 | ||
216 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/acheron/elongate/rules.mk b/keyboards/acheron/elongate/rules.mk index ac67d4df4..09dd01ea9 100644 --- a/keyboards/acheron/elongate/rules.mk +++ b/keyboards/acheron/elongate/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | LTO_ENABLE = yes | 30 | LTO_ENABLE = yes |
diff --git a/keyboards/acheron/keebspcb/rules.mk b/keyboards/acheron/keebspcb/rules.mk index 8d964a163..cb43e7ab2 100644 --- a/keyboards/acheron/keebspcb/rules.mk +++ b/keyboards/acheron/keebspcb/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | # Enter lower-power sleep mode when on the ChibiOS idle thread | 23 | # Enter lower-power sleep mode when on the ChibiOS idle thread |
diff --git a/keyboards/acheron/shark/config.h b/keyboards/acheron/shark/config.h index e45b69b62..3adcb060d 100644 --- a/keyboards/acheron/shark/config.h +++ b/keyboards/acheron/shark/config.h | |||
@@ -204,26 +204,6 @@ B0, which is unconnected on the PCB | |||
204 | //#define NO_ACTION_MACRO | 204 | //#define NO_ACTION_MACRO |
205 | //#define NO_ACTION_FUNCTION | 205 | //#define NO_ACTION_FUNCTION |
206 | 206 | ||
207 | /* | ||
208 | * MIDI options | ||
209 | */ | ||
210 | |||
211 | /* enable basic MIDI features: | ||
212 | - MIDI notes can be sent when in Music mode is on | ||
213 | */ | ||
214 | //#define MIDI_BASIC | ||
215 | |||
216 | /* enable advanced MIDI features: | ||
217 | - MIDI notes can be added to the keymap | ||
218 | - Octave shift and transpose | ||
219 | - Virtual sustain, portamento, and modulation wheel | ||
220 | - etc. | ||
221 | */ | ||
222 | //#define MIDI_ADVANCED | ||
223 | |||
224 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
225 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
226 | |||
227 | /* Bootmagic Lite key configuration */ | 207 | /* Bootmagic Lite key configuration */ |
228 | // #define BOOTMAGIC_LITE_ROW 0 | 208 | // #define BOOTMAGIC_LITE_ROW 0 |
229 | // #define BOOTMAGIC_LITE_COLUMN 0 | 209 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/acheron/shark/rules.mk b/keyboards/acheron/shark/rules.mk index fb9ebbb81..38031a1bf 100644 --- a/keyboards/acheron/shark/rules.mk +++ b/keyboards/acheron/shark/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = no # USB Nkey Rollover | 19 | NKRO_ENABLE = no # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/adelheid/config.h b/keyboards/adelheid/config.h index 1d944949b..fb57c3956 100644 --- a/keyboards/adelheid/config.h +++ b/keyboards/adelheid/config.h | |||
@@ -182,23 +182,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
182 | //#define NO_ACTION_ONESHOT | 182 | //#define NO_ACTION_ONESHOT |
183 | //#define NO_ACTION_MACRO | 183 | //#define NO_ACTION_MACRO |
184 | //#define NO_ACTION_FUNCTION | 184 | //#define NO_ACTION_FUNCTION |
185 | |||
186 | /* | ||
187 | * MIDI options | ||
188 | */ | ||
189 | |||
190 | /* enable basic MIDI features: | ||
191 | - MIDI notes can be sent when in Music mode is on | ||
192 | */ | ||
193 | //#define MIDI_BASIC | ||
194 | |||
195 | /* enable advanced MIDI features: | ||
196 | - MIDI notes can be added to the keymap | ||
197 | - Octave shift and transpose | ||
198 | - Virtual sustain, portamento, and modulation wheel | ||
199 | - etc. | ||
200 | */ | ||
201 | //#define MIDI_ADVANCED | ||
202 | |||
203 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
204 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/adkb96/rules.mk b/keyboards/adkb96/rules.mk index c7ba9c553..acec579a2 100644 --- a/keyboards/adkb96/rules.mk +++ b/keyboards/adkb96/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/aeboards/aegis/rules.mk b/keyboards/aeboards/aegis/rules.mk index 296a74162..826fc8aec 100644 --- a/keyboards/aeboards/aegis/rules.mk +++ b/keyboards/aeboards/aegis/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/aeboards/ext65/rev1/rules.mk b/keyboards/aeboards/ext65/rev1/rules.mk index 296a74162..826fc8aec 100644 --- a/keyboards/aeboards/ext65/rev1/rules.mk +++ b/keyboards/aeboards/ext65/rev1/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ai03/equinox/rev0/rules.mk b/keyboards/ai03/equinox/rev0/rules.mk index e108ca136..023312ee3 100644 --- a/keyboards/ai03/equinox/rev0/rules.mk +++ b/keyboards/ai03/equinox/rev0/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ai03/equinox/rev1/rules.mk b/keyboards/ai03/equinox/rev1/rules.mk index e108ca136..023312ee3 100644 --- a/keyboards/ai03/equinox/rev1/rules.mk +++ b/keyboards/ai03/equinox/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ai03/lunar/config.h b/keyboards/ai03/lunar/config.h index 0af48b8c0..499176d39 100644 --- a/keyboards/ai03/lunar/config.h +++ b/keyboards/ai03/lunar/config.h | |||
@@ -187,26 +187,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
187 | //#define NO_ACTION_MACRO | 187 | //#define NO_ACTION_MACRO |
188 | //#define NO_ACTION_FUNCTION | 188 | //#define NO_ACTION_FUNCTION |
189 | 189 | ||
190 | /* | ||
191 | * MIDI options | ||
192 | */ | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* Bootmagic Lite key configuration */ | 190 | /* Bootmagic Lite key configuration */ |
211 | // #define BOOTMAGIC_LITE_ROW 0 | 191 | // #define BOOTMAGIC_LITE_ROW 0 |
212 | // #define BOOTMAGIC_LITE_COLUMN 0 | 192 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ai03/lunar/rules.mk b/keyboards/ai03/lunar/rules.mk index 74394e383..13a82136b 100644 --- a/keyboards/ai03/lunar/rules.mk +++ b/keyboards/ai03/lunar/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ai03/orbit/config.h b/keyboards/ai03/orbit/config.h index ee907081a..410f63f66 100644 --- a/keyboards/ai03/orbit/config.h +++ b/keyboards/ai03/orbit/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
217 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ai03/orbit/rules.mk b/keyboards/ai03/orbit/rules.mk index cda026fa7..12418dbdd 100644 --- a/keyboards/ai03/orbit/rules.mk +++ b/keyboards/ai03/orbit/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ai03/orbit_x/rules.mk b/keyboards/ai03/orbit_x/rules.mk index b1abdfdd2..e85961eee 100644 --- a/keyboards/ai03/orbit_x/rules.mk +++ b/keyboards/ai03/orbit_x/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | SPLIT_KEYBOARD = yes # Split keyboard | 30 | SPLIT_KEYBOARD = yes # Split keyboard |
diff --git a/keyboards/ai03/polaris/rules.mk b/keyboards/ai03/polaris/rules.mk index ab68e83ba..c4b1c6dc7 100644 --- a/keyboards/ai03/polaris/rules.mk +++ b/keyboards/ai03/polaris/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/ai03/quasar/config.h b/keyboards/ai03/quasar/config.h index f34de690b..0679a45f3 100644 --- a/keyboards/ai03/quasar/config.h +++ b/keyboards/ai03/quasar/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ai03/quasar/rules.mk b/keyboards/ai03/quasar/rules.mk index a52bae0bc..8b8b094a3 100644 --- a/keyboards/ai03/quasar/rules.mk +++ b/keyboards/ai03/quasar/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/akb/eb46/rules.mk b/keyboards/akb/eb46/rules.mk index 30134c24d..fc6b297de 100644 --- a/keyboards/akb/eb46/rules.mk +++ b/keyboards/akb/eb46/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/akb/raine/rules.mk b/keyboards/akb/raine/rules.mk index 30134c24d..fc6b297de 100644 --- a/keyboards/akb/raine/rules.mk +++ b/keyboards/akb/raine/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/alf/dc60/config.h b/keyboards/alf/dc60/config.h index 42c3ebee2..0064da01f 100644 --- a/keyboards/alf/dc60/config.h +++ b/keyboards/alf/dc60/config.h | |||
@@ -167,23 +167,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
167 | //#define NO_ACTION_ONESHOT | 167 | //#define NO_ACTION_ONESHOT |
168 | //#define NO_ACTION_MACRO | 168 | //#define NO_ACTION_MACRO |
169 | //#define NO_ACTION_FUNCTION | 169 | //#define NO_ACTION_FUNCTION |
170 | |||
171 | /* | ||
172 | * MIDI options | ||
173 | */ | ||
174 | |||
175 | /* enable basic MIDI features: | ||
176 | - MIDI notes can be sent when in Music mode is on | ||
177 | */ | ||
178 | //#define MIDI_BASIC | ||
179 | |||
180 | /* enable advanced MIDI features: | ||
181 | - MIDI notes can be added to the keymap | ||
182 | - Octave shift and transpose | ||
183 | - Virtual sustain, portamento, and modulation wheel | ||
184 | - etc. | ||
185 | */ | ||
186 | //#define MIDI_ADVANCED | ||
187 | |||
188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/alf/dc60/rules.mk b/keyboards/alf/dc60/rules.mk index 3b5d80f43..ac57f9939 100644 --- a/keyboards/alf/dc60/rules.mk +++ b/keyboards/alf/dc60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/alf/x11/config.h b/keyboards/alf/x11/config.h index fdc7d72e0..d643cb29a 100644 --- a/keyboards/alf/x11/config.h +++ b/keyboards/alf/x11/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/alf/x11/rules.mk b/keyboards/alf/x11/rules.mk index 1179ba5e1..b6b687afb 100644 --- a/keyboards/alf/x11/rules.mk +++ b/keyboards/alf/x11/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/allison/config.h b/keyboards/allison/config.h index f5ec5d90a..450ec893f 100644 --- a/keyboards/allison/config.h +++ b/keyboards/allison/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | #define BOOTMAGIC_LITE_ROW 0 | 198 | #define BOOTMAGIC_LITE_ROW 0 |
219 | #define BOOTMAGIC_LITE_COLUMN 0 | 199 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/allison/rules.mk b/keyboards/allison/rules.mk index 8434eb4b9..d98f8cd9a 100644 --- a/keyboards/allison/rules.mk +++ b/keyboards/allison/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/allison_numpad/config.h b/keyboards/allison_numpad/config.h index b0d53c132..46a9d1d44 100644 --- a/keyboards/allison_numpad/config.h +++ b/keyboards/allison_numpad/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | #define BOOTMAGIC_LITE_ROW 0 | 198 | #define BOOTMAGIC_LITE_ROW 0 |
219 | #define BOOTMAGIC_LITE_COLUMN 0 | 199 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/allison_numpad/rules.mk b/keyboards/allison_numpad/rules.mk index 557355405..d4b734601 100644 --- a/keyboards/allison_numpad/rules.mk +++ b/keyboards/allison_numpad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/amj96/config.h b/keyboards/amj96/config.h index 123bc618b..eaa33f628 100644 --- a/keyboards/amj96/config.h +++ b/keyboards/amj96/config.h | |||
@@ -151,26 +151,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
151 | #define NO_ACTION_MACRO | 151 | #define NO_ACTION_MACRO |
152 | #define NO_ACTION_FUNCTION | 152 | #define NO_ACTION_FUNCTION |
153 | 153 | ||
154 | /* | ||
155 | * MIDI options | ||
156 | */ | ||
157 | |||
158 | /* enable basic MIDI features: | ||
159 | - MIDI notes can be sent when in Music mode is on | ||
160 | */ | ||
161 | //#define MIDI_BASIC | ||
162 | |||
163 | /* enable advanced MIDI features: | ||
164 | - MIDI notes can be added to the keymap | ||
165 | - Octave shift and transpose | ||
166 | - Virtual sustain, portamento, and modulation wheel | ||
167 | - etc. | ||
168 | */ | ||
169 | //#define MIDI_ADVANCED | ||
170 | |||
171 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
172 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
173 | |||
174 | #define RGBLIGHT_ANIMATIONS | 154 | #define RGBLIGHT_ANIMATIONS |
175 | #define RGBLED_NUM 16 | 155 | #define RGBLED_NUM 16 |
176 | #define RGB_DI_PIN D3 | 156 | #define RGB_DI_PIN D3 |
diff --git a/keyboards/amj96/rules.mk b/keyboards/amj96/rules.mk index 8b819265f..725e5a884 100644 --- a/keyboards/amj96/rules.mk +++ b/keyboards/amj96/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes | 27 | RGBLIGHT_ENABLE = yes |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/amjkeyboard/amj66/rules.mk b/keyboards/amjkeyboard/amj66/rules.mk index e92239c63..dd4b5e0de 100644 --- a/keyboards/amjkeyboard/amj66/rules.mk +++ b/keyboards/amjkeyboard/amj66/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/amjpad/rules.mk b/keyboards/amjpad/rules.mk index 9f2298ac0..81aaacd2c 100644 --- a/keyboards/amjpad/rules.mk +++ b/keyboards/amjpad/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/anavi/macropad8/rules.mk b/keyboards/anavi/macropad8/rules.mk index 539a25545..961ed63e0 100644 --- a/keyboards/anavi/macropad8/rules.mk +++ b/keyboards/anavi/macropad8/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 26 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
diff --git a/keyboards/angel17/alpha/config.h b/keyboards/angel17/alpha/config.h index a6d1fed8a..3a2455327 100644 --- a/keyboards/angel17/alpha/config.h +++ b/keyboards/angel17/alpha/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
217 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/angel17/alpha/rules.mk b/keyboards/angel17/alpha/rules.mk index 363dfd84a..6ce1e4f3a 100644 --- a/keyboards/angel17/alpha/rules.mk +++ b/keyboards/angel17/alpha/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/angel17/rev1/config.h b/keyboards/angel17/rev1/config.h index 2364428c5..2d5baa81d 100644 --- a/keyboards/angel17/rev1/config.h +++ b/keyboards/angel17/rev1/config.h | |||
@@ -187,26 +187,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
187 | //#define NO_ACTION_MACRO | 187 | //#define NO_ACTION_MACRO |
188 | //#define NO_ACTION_FUNCTION | 188 | //#define NO_ACTION_FUNCTION |
189 | 189 | ||
190 | /* | ||
191 | * MIDI options | ||
192 | */ | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* Bootmagic Lite key configuration */ | 190 | /* Bootmagic Lite key configuration */ |
211 | // #define BOOTMAGIC_LITE_ROW 0 | 191 | // #define BOOTMAGIC_LITE_ROW 0 |
212 | // #define BOOTMAGIC_LITE_COLUMN 0 | 192 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/angel17/rev1/rules.mk b/keyboards/angel17/rev1/rules.mk index 8a84ab002..fb35bf08a 100644 --- a/keyboards/angel17/rev1/rules.mk +++ b/keyboards/angel17/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/angel17/rules.mk b/keyboards/angel17/rules.mk index 0ad54ce91..4dc8b62c0 100644 --- a/keyboards/angel17/rules.mk +++ b/keyboards/angel17/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/angel64/alpha/config.h b/keyboards/angel64/alpha/config.h index 2e4430912..bb6820729 100644 --- a/keyboards/angel64/alpha/config.h +++ b/keyboards/angel64/alpha/config.h | |||
@@ -185,26 +185,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
185 | //#define NO_ACTION_MACRO | 185 | //#define NO_ACTION_MACRO |
186 | //#define NO_ACTION_FUNCTION | 186 | //#define NO_ACTION_FUNCTION |
187 | 187 | ||
188 | /* | ||
189 | * MIDI options | ||
190 | */ | ||
191 | |||
192 | /* enable basic MIDI features: | ||
193 | - MIDI notes can be sent when in Music mode is on | ||
194 | */ | ||
195 | //#define MIDI_BASIC | ||
196 | |||
197 | /* enable advanced MIDI features: | ||
198 | - MIDI notes can be added to the keymap | ||
199 | - Octave shift and transpose | ||
200 | - Virtual sustain, portamento, and modulation wheel | ||
201 | - etc. | ||
202 | */ | ||
203 | //#define MIDI_ADVANCED | ||
204 | |||
205 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
206 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
207 | |||
208 | /* Bootmagic Lite key configuration */ | 188 | /* Bootmagic Lite key configuration */ |
209 | // #define BOOTMAGIC_LITE_ROW 0 | 189 | // #define BOOTMAGIC_LITE_ROW 0 |
210 | // #define BOOTMAGIC_LITE_COLUMN 0 | 190 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/angel64/rev1/config.h b/keyboards/angel64/rev1/config.h index 2e4430912..bb6820729 100644 --- a/keyboards/angel64/rev1/config.h +++ b/keyboards/angel64/rev1/config.h | |||
@@ -185,26 +185,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
185 | //#define NO_ACTION_MACRO | 185 | //#define NO_ACTION_MACRO |
186 | //#define NO_ACTION_FUNCTION | 186 | //#define NO_ACTION_FUNCTION |
187 | 187 | ||
188 | /* | ||
189 | * MIDI options | ||
190 | */ | ||
191 | |||
192 | /* enable basic MIDI features: | ||
193 | - MIDI notes can be sent when in Music mode is on | ||
194 | */ | ||
195 | //#define MIDI_BASIC | ||
196 | |||
197 | /* enable advanced MIDI features: | ||
198 | - MIDI notes can be added to the keymap | ||
199 | - Octave shift and transpose | ||
200 | - Virtual sustain, portamento, and modulation wheel | ||
201 | - etc. | ||
202 | */ | ||
203 | //#define MIDI_ADVANCED | ||
204 | |||
205 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
206 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
207 | |||
208 | /* Bootmagic Lite key configuration */ | 188 | /* Bootmagic Lite key configuration */ |
209 | // #define BOOTMAGIC_LITE_ROW 0 | 189 | // #define BOOTMAGIC_LITE_ROW 0 |
210 | // #define BOOTMAGIC_LITE_COLUMN 0 | 190 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/angel64/rules.mk b/keyboards/angel64/rules.mk index cb36418e3..04b3bf082 100644 --- a/keyboards/angel64/rules.mk +++ b/keyboards/angel64/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/aos/tkl/rules.mk b/keyboards/aos/tkl/rules.mk index 5ac7c601f..cecbc3896 100644 --- a/keyboards/aos/tkl/rules.mk +++ b/keyboards/aos/tkl/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/aplyard/aplx6/rev1/rules.mk b/keyboards/aplyard/aplx6/rev1/rules.mk index f31640d2e..19db5e93d 100644 --- a/keyboards/aplyard/aplx6/rev1/rules.mk +++ b/keyboards/aplyard/aplx6/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/arabica37/rev1/rules.mk b/keyboards/arabica37/rev1/rules.mk index 194406698..2fcce7f3b 100644 --- a/keyboards/arabica37/rev1/rules.mk +++ b/keyboards/arabica37/rev1/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = no # USB Nkey Rollover | 24 | NKRO_ENABLE = no # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 26 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | 29 | ||
diff --git a/keyboards/arisu/config.h b/keyboards/arisu/config.h index b1f9cf86d..227b71419 100644 --- a/keyboards/arisu/config.h +++ b/keyboards/arisu/config.h | |||
@@ -182,23 +182,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
182 | //#define NO_ACTION_ONESHOT | 182 | //#define NO_ACTION_ONESHOT |
183 | //#define NO_ACTION_MACRO | 183 | //#define NO_ACTION_MACRO |
184 | //#define NO_ACTION_FUNCTION | 184 | //#define NO_ACTION_FUNCTION |
185 | |||
186 | /* | ||
187 | * MIDI options | ||
188 | */ | ||
189 | |||
190 | /* enable basic MIDI features: | ||
191 | - MIDI notes can be sent when in Music mode is on | ||
192 | */ | ||
193 | //#define MIDI_BASIC | ||
194 | |||
195 | /* enable advanced MIDI features: | ||
196 | - MIDI notes can be added to the keymap | ||
197 | - Octave shift and transpose | ||
198 | - Virtual sustain, portamento, and modulation wheel | ||
199 | - etc. | ||
200 | */ | ||
201 | //#define MIDI_ADVANCED | ||
202 | |||
203 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
204 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/arisu/rules.mk b/keyboards/arisu/rules.mk index cb8901759..7eff22648 100644 --- a/keyboards/arisu/rules.mk +++ b/keyboards/arisu/rules.mk | |||
@@ -18,6 +18,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/ash1800/config.h b/keyboards/ash1800/config.h index fe839e47f..b1f5182b0 100644 --- a/keyboards/ash1800/config.h +++ b/keyboards/ash1800/config.h | |||
@@ -196,26 +196,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
196 | //#define NO_ACTION_MACRO | 196 | //#define NO_ACTION_MACRO |
197 | //#define NO_ACTION_FUNCTION | 197 | //#define NO_ACTION_FUNCTION |
198 | 198 | ||
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | |||
219 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 201 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ash1800/rules.mk b/keyboards/ash1800/rules.mk index 54ca46b9e..0a0c18a08 100644 --- a/keyboards/ash1800/rules.mk +++ b/keyboards/ash1800/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ashpil/modelm_usbc/rules.mk b/keyboards/ashpil/modelm_usbc/rules.mk index 9eff90564..4ea75ce5b 100644 --- a/keyboards/ashpil/modelm_usbc/rules.mk +++ b/keyboards/ashpil/modelm_usbc/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/atreus/rules.mk b/keyboards/atreus/rules.mk index 048c82ee6..a9a3e2e71 100644 --- a/keyboards/atreus/rules.mk +++ b/keyboards/atreus/rules.mk | |||
@@ -12,7 +12,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
12 | NKRO_ENABLE = yes # USB Nkey Rollover | 12 | NKRO_ENABLE = yes # USB Nkey Rollover |
13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
15 | MIDI_ENABLE = no # MIDI support | ||
16 | UNICODE_ENABLE = yes # Unicode | 15 | UNICODE_ENABLE = yes # Unicode |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | AUDIO_ENABLE = no # Audio output on port C6 | 17 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/atreus62/rules.mk b/keyboards/atreus62/rules.mk index c75e094bd..10bacba0a 100644 --- a/keyboards/atreus62/rules.mk +++ b/keyboards/atreus62/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | #MIDI_ENABLE = no # MIDI controls | ||
26 | UNICODE_ENABLE = yes # Unicode | 25 | UNICODE_ENABLE = yes # Unicode |
27 | #BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | #BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | 27 | ||
diff --git a/keyboards/atxkb/1894/rules.mk b/keyboards/atxkb/1894/rules.mk index dac926c57..8cddc866b 100644 --- a/keyboards/atxkb/1894/rules.mk +++ b/keyboards/atxkb/1894/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | LTO_ENABLE = yes | 30 | LTO_ENABLE = yes |
diff --git a/keyboards/baguette/config.h b/keyboards/baguette/config.h index 7ec18109c..153260947 100644 --- a/keyboards/baguette/config.h +++ b/keyboards/baguette/config.h | |||
@@ -164,23 +164,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
164 | //#define NO_ACTION_ONESHOT | 164 | //#define NO_ACTION_ONESHOT |
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | |||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/baguette/rules.mk b/keyboards/baguette/rules.mk index 8e31392c5..316dce7bc 100644 --- a/keyboards/baguette/rules.mk +++ b/keyboards/baguette/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bakeneko80/config.h b/keyboards/bakeneko80/config.h index bda679f5c..8daafeeca 100644 --- a/keyboards/bakeneko80/config.h +++ b/keyboards/bakeneko80/config.h | |||
@@ -193,25 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | /* disable these deprecated features by default */ | 193 | /* disable these deprecated features by default */ |
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | 196 | ||
216 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/bakeneko80/rules.mk b/keyboards/bakeneko80/rules.mk index 9fa05eb3b..b5d7a7300 100644 --- a/keyboards/bakeneko80/rules.mk +++ b/keyboards/bakeneko80/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/bantam44/rules.mk b/keyboards/bantam44/rules.mk index 436c3f2d9..88533bacb 100644 --- a/keyboards/bantam44/rules.mk +++ b/keyboards/bantam44/rules.mk | |||
@@ -23,6 +23,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 23 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
24 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | # MIDI_ENABLE = YES # MIDI controls | 26 | MIDI_ENABLE = no # MIDI support |
27 | # UNICODE_ENABLE = YES # Unicode | 27 | # UNICODE_ENABLE = YES # Unicode |
28 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/bat43/config.h b/keyboards/bat43/config.h index 645509e43..08eac7661 100644 --- a/keyboards/bat43/config.h +++ b/keyboards/bat43/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/bat43/rules.mk b/keyboards/bat43/rules.mk index caa5a3e96..e2082d224 100644 --- a/keyboards/bat43/rules.mk +++ b/keyboards/bat43/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/bear_face/rules.mk b/keyboards/bear_face/rules.mk index 0bc598a3e..285f6cf42 100644 --- a/keyboards/bear_face/rules.mk +++ b/keyboards/bear_face/rules.mk | |||
@@ -17,7 +17,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
17 | NKRO_ENABLE = yes # USB Nkey Rollover | 17 | NKRO_ENABLE = yes # USB Nkey Rollover |
18 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
20 | MIDI_ENABLE = no # MIDI controls | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
22 | AUDIO_ENABLE = no # Audio output6 | 21 | AUDIO_ENABLE = no # Audio output6 |
23 | 22 | ||
diff --git a/keyboards/beatervan/rules.mk b/keyboards/beatervan/rules.mk index 800753539..20c018d95 100644 --- a/keyboards/beatervan/rules.mk +++ b/keyboards/beatervan/rules.mk | |||
@@ -17,7 +17,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
20 | MIDI_ENABLE = no # MIDI controls | ||
21 | UNICODE_ENABLE = yes # Unicode | 20 | UNICODE_ENABLE = yes # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bigseries/1key/rules.mk b/keyboards/bigseries/1key/rules.mk index b0a74e973..2957feb55 100755 --- a/keyboards/bigseries/1key/rules.mk +++ b/keyboards/bigseries/1key/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/bigseries/2key/rules.mk b/keyboards/bigseries/2key/rules.mk index b0a74e973..2957feb55 100755 --- a/keyboards/bigseries/2key/rules.mk +++ b/keyboards/bigseries/2key/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/bigseries/3key/rules.mk b/keyboards/bigseries/3key/rules.mk index b0a74e973..2957feb55 100755 --- a/keyboards/bigseries/3key/rules.mk +++ b/keyboards/bigseries/3key/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/bigseries/4key/rules.mk b/keyboards/bigseries/4key/rules.mk index b0a74e973..2957feb55 100755 --- a/keyboards/bigseries/4key/rules.mk +++ b/keyboards/bigseries/4key/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/blockey/config.h b/keyboards/blockey/config.h index 44a3f0a55..c79c58398 100644 --- a/keyboards/blockey/config.h +++ b/keyboards/blockey/config.h | |||
@@ -162,24 +162,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
162 | //#define NO_ACTION_MACRO | 162 | //#define NO_ACTION_MACRO |
163 | //#define NO_ACTION_FUNCTION | 163 | //#define NO_ACTION_FUNCTION |
164 | 164 | ||
165 | /* | ||
166 | * MIDI options | ||
167 | */ | ||
168 | |||
169 | /* enable basic MIDI features: | ||
170 | - MIDI notes can be sent when in Music mode is on | ||
171 | */ | ||
172 | //#define MIDI_BASIC | ||
173 | |||
174 | /* enable advanced MIDI features: | ||
175 | - MIDI notes can be added to the keymap | ||
176 | - Octave shift and transpose | ||
177 | - Virtual sustain, portamento, and modulation wheel | ||
178 | - etc. | ||
179 | */ | ||
180 | //#define MIDI_ADVANCED | ||
181 | |||
182 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
183 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
184 | |||
185 | #endif | 165 | #endif |
diff --git a/keyboards/blockey/rules.mk b/keyboards/blockey/rules.mk index 1704d2290..7a27e26b7 100644 --- a/keyboards/blockey/rules.mk +++ b/keyboards/blockey/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bm16a/config.h b/keyboards/bm16a/config.h index 496ac4a74..16bc83827 100644 --- a/keyboards/bm16a/config.h +++ b/keyboards/bm16a/config.h | |||
@@ -189,26 +189,6 @@ | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/bm16a/rules.mk b/keyboards/bm16a/rules.mk index 1fda72a9b..5b4383394 100644 --- a/keyboards/bm16a/rules.mk +++ b/keyboards/bm16a/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bm43a/rules.mk b/keyboards/bm43a/rules.mk index 4d10e5f8e..e28da405c 100644 --- a/keyboards/bm43a/rules.mk +++ b/keyboards/bm43a/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bm60rgb/rules.mk b/keyboards/bm60rgb/rules.mk index e3fb3ba8c..e4e6b4ea1 100644 --- a/keyboards/bm60rgb/rules.mk +++ b/keyboards/bm60rgb/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/boardsource/3x4/config.h b/keyboards/boardsource/3x4/config.h index 32a0b3d29..a07968a44 100644 --- a/keyboards/boardsource/3x4/config.h +++ b/keyboards/boardsource/3x4/config.h | |||
@@ -118,23 +118,3 @@ | |||
118 | //#define NO_ACTION_ONESHOT | 118 | //#define NO_ACTION_ONESHOT |
119 | //#define NO_ACTION_MACRO | 119 | //#define NO_ACTION_MACRO |
120 | //#define NO_ACTION_FUNCTION | 120 | //#define NO_ACTION_FUNCTION |
121 | |||
122 | /* | ||
123 | * MIDI options | ||
124 | */ | ||
125 | |||
126 | /* enable basic MIDI features: | ||
127 | - MIDI notes can be sent when in Music mode is on | ||
128 | */ | ||
129 | //#define MIDI_BASIC | ||
130 | |||
131 | /* enable advanced MIDI features: | ||
132 | - MIDI notes can be added to the keymap | ||
133 | - Octave shift and transpose | ||
134 | - Virtual sustain, portamento, and modulation wheel | ||
135 | - etc. | ||
136 | */ | ||
137 | //#define MIDI_ADVANCED | ||
138 | |||
139 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
140 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/boardsource/4x12/config.h b/keyboards/boardsource/4x12/config.h index 6125260cd..2ba19356d 100644 --- a/keyboards/boardsource/4x12/config.h +++ b/keyboards/boardsource/4x12/config.h | |||
@@ -116,23 +116,3 @@ | |||
116 | //#define NO_ACTION_ONESHOT | 116 | //#define NO_ACTION_ONESHOT |
117 | //#define NO_ACTION_MACRO | 117 | //#define NO_ACTION_MACRO |
118 | //#define NO_ACTION_FUNCTION | 118 | //#define NO_ACTION_FUNCTION |
119 | |||
120 | /* | ||
121 | * MIDI options | ||
122 | */ | ||
123 | |||
124 | /* enable basic MIDI features: | ||
125 | - MIDI notes can be sent when in Music mode is on | ||
126 | */ | ||
127 | //#define MIDI_BASIC | ||
128 | |||
129 | /* enable advanced MIDI features: | ||
130 | - MIDI notes can be added to the keymap | ||
131 | - Octave shift and transpose | ||
132 | - Virtual sustain, portamento, and modulation wheel | ||
133 | - etc. | ||
134 | */ | ||
135 | //#define MIDI_ADVANCED | ||
136 | |||
137 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
138 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/boardsource/4x12/rules.mk b/keyboards/boardsource/4x12/rules.mk index c0b4814f6..42a4bba7c 100644 --- a/keyboards/boardsource/4x12/rules.mk +++ b/keyboards/boardsource/4x12/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/boardsource/5x12/config.h b/keyboards/boardsource/5x12/config.h index 3628431d7..80ac30072 100644 --- a/keyboards/boardsource/5x12/config.h +++ b/keyboards/boardsource/5x12/config.h | |||
@@ -117,23 +117,3 @@ | |||
117 | //#define NO_ACTION_ONESHOT | 117 | //#define NO_ACTION_ONESHOT |
118 | //#define NO_ACTION_MACRO | 118 | //#define NO_ACTION_MACRO |
119 | //#define NO_ACTION_FUNCTION | 119 | //#define NO_ACTION_FUNCTION |
120 | |||
121 | /* | ||
122 | * MIDI options | ||
123 | */ | ||
124 | |||
125 | /* enable basic MIDI features: | ||
126 | - MIDI notes can be sent when in Music mode is on | ||
127 | */ | ||
128 | //#define MIDI_BASIC | ||
129 | |||
130 | /* enable advanced MIDI features: | ||
131 | - MIDI notes can be added to the keymap | ||
132 | - Octave shift and transpose | ||
133 | - Virtual sustain, portamento, and modulation wheel | ||
134 | - etc. | ||
135 | */ | ||
136 | //#define MIDI_ADVANCED | ||
137 | |||
138 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
139 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/boardsource/5x12/rules.mk b/keyboards/boardsource/5x12/rules.mk index 0e5118c78..8dc8fe1cc 100644 --- a/keyboards/boardsource/5x12/rules.mk +++ b/keyboards/boardsource/5x12/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/boardwalk/rules.mk b/keyboards/boardwalk/rules.mk index 02b29b8ee..f861731c2 100644 --- a/keyboards/boardwalk/rules.mk +++ b/keyboards/boardwalk/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/boston_meetup/2019/config.h b/keyboards/boston_meetup/2019/config.h index d9fd93da6..a1f4fc456 100644 --- a/keyboards/boston_meetup/2019/config.h +++ b/keyboards/boston_meetup/2019/config.h | |||
@@ -113,26 +113,6 @@ | |||
113 | //#define NO_ACTION_ONESHOT | 113 | //#define NO_ACTION_ONESHOT |
114 | //#define NO_ACTION_MACRO | 114 | //#define NO_ACTION_MACRO |
115 | //#define NO_ACTION_FUNCTION | 115 | //#define NO_ACTION_FUNCTION |
116 | /* | ||
117 | * MIDI options | ||
118 | */ | ||
119 | |||
120 | /* enable basic MIDI features: | ||
121 | - MIDI notes can be sent when in Music mode is on | ||
122 | */ | ||
123 | |||
124 | #define MIDI_BASIC | ||
125 | |||
126 | /* enable advanced MIDI features: | ||
127 | - MIDI notes can be added to the keymap | ||
128 | - Octave shift and transpose | ||
129 | - Virtual sustain, portamento, and modulation wheel | ||
130 | - etc. | ||
131 | */ | ||
132 | //#define MIDI_ADVANCED | ||
133 | |||
134 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
135 | //#define MIDI_TONE_KEYCODE_OCTAVES 2 | ||
136 | 116 | ||
137 | /* Haptic Driver initialization settings | 117 | /* Haptic Driver initialization settings |
138 | * Feedback Control Settings */ | 118 | * Feedback Control Settings */ |
diff --git a/keyboards/botanicalkeyboards/fm2u/rules.mk b/keyboards/botanicalkeyboards/fm2u/rules.mk index e19943d6a..7b528f558 100644 --- a/keyboards/botanicalkeyboards/fm2u/rules.mk +++ b/keyboards/botanicalkeyboards/fm2u/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bpiphany/frosty_flake/rules.mk b/keyboards/bpiphany/frosty_flake/rules.mk index 799d63996..05aa3dcc7 100644 --- a/keyboards/bpiphany/frosty_flake/rules.mk +++ b/keyboards/bpiphany/frosty_flake/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bpiphany/kitten_paw/rules.mk b/keyboards/bpiphany/kitten_paw/rules.mk index 8c0c0d846..9fe5e488f 100644 --- a/keyboards/bpiphany/kitten_paw/rules.mk +++ b/keyboards/bpiphany/kitten_paw/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bpiphany/pegasushoof/rules.mk b/keyboards/bpiphany/pegasushoof/rules.mk index 970b7d5c4..4dd5a8908 100644 --- a/keyboards/bpiphany/pegasushoof/rules.mk +++ b/keyboards/bpiphany/pegasushoof/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/bpiphany/sixshooter/rules.mk b/keyboards/bpiphany/sixshooter/rules.mk index b6005253a..10d7086bb 100644 --- a/keyboards/bpiphany/sixshooter/rules.mk +++ b/keyboards/bpiphany/sixshooter/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bpiphany/tiger_lily/rules.mk b/keyboards/bpiphany/tiger_lily/rules.mk index 8c0c0d846..9fe5e488f 100644 --- a/keyboards/bpiphany/tiger_lily/rules.mk +++ b/keyboards/bpiphany/tiger_lily/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bpiphany/unloved_bastard/config.h b/keyboards/bpiphany/unloved_bastard/config.h index 5bd8e532a..61a86d723 100644 --- a/keyboards/bpiphany/unloved_bastard/config.h +++ b/keyboards/bpiphany/unloved_bastard/config.h | |||
@@ -141,24 +141,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
141 | //#define NO_ACTION_MACRO | 141 | //#define NO_ACTION_MACRO |
142 | //#define NO_ACTION_FUNCTION | 142 | //#define NO_ACTION_FUNCTION |
143 | 143 | ||
144 | /* | ||
145 | * MIDI options | ||
146 | */ | ||
147 | |||
148 | /* enable basic MIDI features: | ||
149 | - MIDI notes can be sent when in Music mode is on | ||
150 | */ | ||
151 | //#define MIDI_BASIC | ||
152 | |||
153 | /* enable advanced MIDI features: | ||
154 | - MIDI notes can be added to the keymap | ||
155 | - Octave shift and transpose | ||
156 | - Virtual sustain, portamento, and modulation wheel | ||
157 | - etc. | ||
158 | */ | ||
159 | //#define MIDI_ADVANCED | ||
160 | |||
161 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
162 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
163 | |||
164 | #endif | 144 | #endif |
diff --git a/keyboards/bpiphany/unloved_bastard/rules.mk b/keyboards/bpiphany/unloved_bastard/rules.mk index c8cd1a2e8..fbe74c644 100644 --- a/keyboards/bpiphany/unloved_bastard/rules.mk +++ b/keyboards/bpiphany/unloved_bastard/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/bthlabs/geekpad/config.h b/keyboards/bthlabs/geekpad/config.h index 85fa2f00b..411930a24 100644 --- a/keyboards/bthlabs/geekpad/config.h +++ b/keyboards/bthlabs/geekpad/config.h | |||
@@ -165,26 +165,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
188 | /* Bootmagic Lite key configuration */ | 168 | /* Bootmagic Lite key configuration */ |
189 | // #define BOOTMAGIC_LITE_ROW 0 | 169 | // #define BOOTMAGIC_LITE_ROW 0 |
190 | // #define BOOTMAGIC_LITE_COLUMN 0 | 170 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/bthlabs/geekpad/rules.mk b/keyboards/bthlabs/geekpad/rules.mk index f4aa9f414..5555eede6 100644 --- a/keyboards/bthlabs/geekpad/rules.mk +++ b/keyboards/bthlabs/geekpad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/business_card/alpha/config.h b/keyboards/business_card/alpha/config.h index b9bb67f05..239a6c8cc 100644 --- a/keyboards/business_card/alpha/config.h +++ b/keyboards/business_card/alpha/config.h | |||
@@ -186,26 +186,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
186 | //#define NO_ACTION_MACRO | 186 | //#define NO_ACTION_MACRO |
187 | //#define NO_ACTION_FUNCTION | 187 | //#define NO_ACTION_FUNCTION |
188 | 188 | ||
189 | /* | ||
190 | * MIDI options | ||
191 | */ | ||
192 | |||
193 | /* enable basic MIDI features: | ||
194 | - MIDI notes can be sent when in Music mode is on | ||
195 | */ | ||
196 | //#define MIDI_BASIC | ||
197 | |||
198 | /* enable advanced MIDI features: | ||
199 | - MIDI notes can be added to the keymap | ||
200 | - Octave shift and transpose | ||
201 | - Virtual sustain, portamento, and modulation wheel | ||
202 | - etc. | ||
203 | */ | ||
204 | //#define MIDI_ADVANCED | ||
205 | |||
206 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
207 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
208 | |||
209 | /* Bootmagic Lite key configuration */ | 189 | /* Bootmagic Lite key configuration */ |
210 | // #define BOOTMAGIC_LITE_ROW 0 | 190 | // #define BOOTMAGIC_LITE_ROW 0 |
211 | // #define BOOTMAGIC_LITE_COLUMN 0 | 191 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/business_card/alpha/rules.mk b/keyboards/business_card/alpha/rules.mk index 53c06714b..2bf1a2ac2 100644 --- a/keyboards/business_card/alpha/rules.mk +++ b/keyboards/business_card/alpha/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/business_card/beta/config.h b/keyboards/business_card/beta/config.h index 1db0abbc9..e4b0ead7f 100644 --- a/keyboards/business_card/beta/config.h +++ b/keyboards/business_card/beta/config.h | |||
@@ -186,26 +186,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
186 | //#define NO_ACTION_MACRO | 186 | //#define NO_ACTION_MACRO |
187 | //#define NO_ACTION_FUNCTION | 187 | //#define NO_ACTION_FUNCTION |
188 | 188 | ||
189 | /* | ||
190 | * MIDI options | ||
191 | */ | ||
192 | |||
193 | /* enable basic MIDI features: | ||
194 | - MIDI notes can be sent when in Music mode is on | ||
195 | */ | ||
196 | //#define MIDI_BASIC | ||
197 | |||
198 | /* enable advanced MIDI features: | ||
199 | - MIDI notes can be added to the keymap | ||
200 | - Octave shift and transpose | ||
201 | - Virtual sustain, portamento, and modulation wheel | ||
202 | - etc. | ||
203 | */ | ||
204 | //#define MIDI_ADVANCED | ||
205 | |||
206 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
207 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
208 | |||
209 | /* Bootmagic Lite key configuration */ | 189 | /* Bootmagic Lite key configuration */ |
210 | // #define BOOTMAGIC_LITE_ROW 0 | 190 | // #define BOOTMAGIC_LITE_ROW 0 |
211 | // #define BOOTMAGIC_LITE_COLUMN 0 | 191 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/business_card/beta/rules.mk b/keyboards/business_card/beta/rules.mk index 53c06714b..2bf1a2ac2 100644 --- a/keyboards/business_card/beta/rules.mk +++ b/keyboards/business_card/beta/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/business_card/rules.mk b/keyboards/business_card/rules.mk index 84c79c1df..7bbfbf221 100644 --- a/keyboards/business_card/rules.mk +++ b/keyboards/business_card/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/c39/rules.mk b/keyboards/c39/rules.mk index 1f76e9193..daecfb2f7 100755 --- a/keyboards/c39/rules.mk +++ b/keyboards/c39/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/cannonkeys/obliterated75/rules.mk b/keyboards/cannonkeys/obliterated75/rules.mk index 00905b93c..3c724e3d0 100644 --- a/keyboards/cannonkeys/obliterated75/rules.mk +++ b/keyboards/cannonkeys/obliterated75/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | WS2812_DRIVER = spi | 24 | WS2812_DRIVER = spi |
diff --git a/keyboards/centromere/rules.mk b/keyboards/centromere/rules.mk index 463dfa582..bdf945b0e 100644 --- a/keyboards/centromere/rules.mk +++ b/keyboards/centromere/rules.mk | |||
@@ -27,7 +27,6 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 27 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
28 | NKRO_ENABLE = yes # USB Nkey Rollover | 28 | NKRO_ENABLE = yes # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | 32 | ||
diff --git a/keyboards/chidori/config.h b/keyboards/chidori/config.h index 69292e7f9..9d8bc3e26 100644 --- a/keyboards/chidori/config.h +++ b/keyboards/chidori/config.h | |||
@@ -196,26 +196,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
196 | //#define NO_ACTION_MACRO | 196 | //#define NO_ACTION_MACRO |
197 | //#define NO_ACTION_FUNCTION | 197 | //#define NO_ACTION_FUNCTION |
198 | 198 | ||
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | |||
219 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 201 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/chidori/rules.mk b/keyboards/chidori/rules.mk index 45f6bfad6..f09bede13 100644 --- a/keyboards/chidori/rules.mk +++ b/keyboards/chidori/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/chili/config.h b/keyboards/chili/config.h index 08c247587..b9eff3c48 100644 --- a/keyboards/chili/config.h +++ b/keyboards/chili/config.h | |||
@@ -158,23 +158,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
158 | //#define NO_ACTION_ONESHOT | 158 | //#define NO_ACTION_ONESHOT |
159 | //#define NO_ACTION_MACRO | 159 | //#define NO_ACTION_MACRO |
160 | //#define NO_ACTION_FUNCTION | 160 | //#define NO_ACTION_FUNCTION |
161 | |||
162 | /* | ||
163 | * MIDI options | ||
164 | */ | ||
165 | |||
166 | /* enable basic MIDI features: | ||
167 | - MIDI notes can be sent when in Music mode is on | ||
168 | */ | ||
169 | //#define MIDI_BASIC | ||
170 | |||
171 | /* enable advanced MIDI features: | ||
172 | - MIDI notes can be added to the keymap | ||
173 | - Octave shift and transpose | ||
174 | - Virtual sustain, portamento, and modulation wheel | ||
175 | - etc. | ||
176 | */ | ||
177 | //#define MIDI_ADVANCED | ||
178 | |||
179 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
180 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/chili/rules.mk b/keyboards/chili/rules.mk index 28e01f2a6..c889438df 100644 --- a/keyboards/chili/rules.mk +++ b/keyboards/chili/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight | 27 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/chimera_ergo/rules.mk b/keyboards/chimera_ergo/rules.mk index c0d5e3931..59af1ede0 100644 --- a/keyboards/chimera_ergo/rules.mk +++ b/keyboards/chimera_ergo/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/chimera_ls/rules.mk b/keyboards/chimera_ls/rules.mk index 4155d5003..f443b3866 100644 --- a/keyboards/chimera_ls/rules.mk +++ b/keyboards/chimera_ls/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/chimera_ortho/rules.mk b/keyboards/chimera_ortho/rules.mk index 0515a6e6c..ebdd2dc15 100644 --- a/keyboards/chimera_ortho/rules.mk +++ b/keyboards/chimera_ortho/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/chimera_ortho_plus/rules.mk b/keyboards/chimera_ortho_plus/rules.mk index a0b046c59..32042b4b5 100644 --- a/keyboards/chimera_ortho_plus/rules.mk +++ b/keyboards/chimera_ortho_plus/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
31 | UNICODE_ENABLE = yes | 30 | UNICODE_ENABLE = yes |
diff --git a/keyboards/choc_taro/config.h b/keyboards/choc_taro/config.h index 7dee9d336..3b1ad493a 100644 --- a/keyboards/choc_taro/config.h +++ b/keyboards/choc_taro/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | #define NO_ACTION_MACRO | 191 | #define NO_ACTION_MACRO |
192 | #define NO_ACTION_FUNCTION | 192 | #define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/choc_taro/rules.mk b/keyboards/choc_taro/rules.mk index 5cf555e20..48f42de49 100644 --- a/keyboards/choc_taro/rules.mk +++ b/keyboards/choc_taro/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
31 | 30 | ||
diff --git a/keyboards/christmas_tree/rules.mk b/keyboards/christmas_tree/rules.mk index f2c623d3b..dfb837e89 100644 --- a/keyboards/christmas_tree/rules.mk +++ b/keyboards/christmas_tree/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ckeys/handwire_101/config.h b/keyboards/ckeys/handwire_101/config.h index 663f5e343..11ec21e2f 100755 --- a/keyboards/ckeys/handwire_101/config.h +++ b/keyboards/ckeys/handwire_101/config.h | |||
@@ -65,26 +65,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
65 | #define LOCKING_RESYNC_ENABLE | 65 | #define LOCKING_RESYNC_ENABLE |
66 | 66 | ||
67 | /* | 67 | /* |
68 | * MIDI options | ||
69 | */ | ||
70 | |||
71 | /* enable basic MIDI features: | ||
72 | - MIDI notes can be sent when in Music mode is on | ||
73 | */ | ||
74 | //#define MIDI_BASIC | ||
75 | |||
76 | /* enable advanced MIDI features: | ||
77 | - MIDI notes can be added to the keymap | ||
78 | - Octave shift and transpose | ||
79 | - Virtual sustain, portamento, and modulation wheel | ||
80 | - etc. | ||
81 | */ | ||
82 | #define MIDI_ADVANCED | ||
83 | |||
84 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
85 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
86 | |||
87 | /* | ||
88 | * Force NKRO | 68 | * Force NKRO |
89 | * | 69 | * |
90 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | 70 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved |
diff --git a/keyboards/ckeys/handwire_101/rules.mk b/keyboards/ckeys/handwire_101/rules.mk index d74c898bb..a9d18b634 100755 --- a/keyboards/ckeys/handwire_101/rules.mk +++ b/keyboards/ckeys/handwire_101/rules.mk | |||
@@ -18,7 +18,7 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 18 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
21 | #MIDI_ENABLE = yes # MIDI controls | 21 | MIDI_ENABLE = no # MIDI support |
22 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output | 24 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/ckeys/nakey/config.h b/keyboards/ckeys/nakey/config.h index 9fa59689d..54775de72 100644 --- a/keyboards/ckeys/nakey/config.h +++ b/keyboards/ckeys/nakey/config.h | |||
@@ -157,24 +157,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | 159 | ||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
179 | |||
180 | #endif | 160 | #endif |
diff --git a/keyboards/ckeys/nakey/rules.mk b/keyboards/ckeys/nakey/rules.mk index 40a42f27e..5e88087b1 100644 --- a/keyboards/ckeys/nakey/rules.mk +++ b/keyboards/ckeys/nakey/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ckeys/obelus/rules.mk b/keyboards/ckeys/obelus/rules.mk index c6c887759..134248c30 100644 --- a/keyboards/ckeys/obelus/rules.mk +++ b/keyboards/ckeys/obelus/rules.mk | |||
@@ -24,7 +24,7 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = yes # MIDI controls | 27 | MIDI_ENABLE = yes # MIDI support |
28 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = yes # Audio output on port C6 | 30 | AUDIO_ENABLE = yes # Audio output on port C6 |
diff --git a/keyboards/ckeys/thedora/config.h b/keyboards/ckeys/thedora/config.h index c7557aa62..cd09be3f7 100755 --- a/keyboards/ckeys/thedora/config.h +++ b/keyboards/ckeys/thedora/config.h | |||
@@ -63,26 +63,6 @@ | |||
63 | #define DAC_SAMPLE_MAX 65535U | 63 | #define DAC_SAMPLE_MAX 65535U |
64 | 64 | ||
65 | /* | 65 | /* |
66 | * MIDI options | ||
67 | */ | ||
68 | |||
69 | /* enable basic MIDI features: | ||
70 | - MIDI notes can be sent when in Music mode is on | ||
71 | */ | ||
72 | //#define MIDI_BASIC | ||
73 | |||
74 | /* enable advanced MIDI features: | ||
75 | - MIDI notes can be added to the keymap | ||
76 | - Octave shift and transpose | ||
77 | - Virtual sustain, portamento, and modulation wheel | ||
78 | - etc. | ||
79 | */ | ||
80 | #define MIDI_ADVANCED | ||
81 | |||
82 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
83 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
84 | |||
85 | /* | ||
86 | * Force NKRO | 66 | * Force NKRO |
87 | * | 67 | * |
88 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved | 68 | * Force NKRO (nKey Rollover) to be enabled by default, regardless of the saved |
diff --git a/keyboards/ckeys/thedora/rules.mk b/keyboards/ckeys/thedora/rules.mk index 538b45d88..3feda7540 100755 --- a/keyboards/ckeys/thedora/rules.mk +++ b/keyboards/ckeys/thedora/rules.mk | |||
@@ -17,6 +17,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
17 | #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 17 | #SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | AUDIO_ENABLE = yes | 19 | AUDIO_ENABLE = yes |
20 | MIDI_ENABLE = yes # MIDI controls | 20 | MIDI_ENABLE = yes # MIDI support |
21 | RGBLIGHT_ENABLE = no | 21 | RGBLIGHT_ENABLE = no |
22 | ENCODER_ENABLE = yes | 22 | ENCODER_ENABLE = yes |
diff --git a/keyboards/ckeys/washington/config.h b/keyboards/ckeys/washington/config.h index 1f4fb8f9d..5b28b8d8b 100644 --- a/keyboards/ckeys/washington/config.h +++ b/keyboards/ckeys/washington/config.h | |||
@@ -195,26 +195,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
195 | #define NO_ACTION_MACRO | 195 | #define NO_ACTION_MACRO |
196 | #define NO_ACTION_FUNCTION | 196 | #define NO_ACTION_FUNCTION |
197 | 197 | ||
198 | /* | ||
199 | * MIDI options | ||
200 | */ | ||
201 | |||
202 | /* enable basic MIDI features: | ||
203 | - MIDI notes can be sent when in Music mode is on | ||
204 | */ | ||
205 | //#define MIDI_BASIC | ||
206 | |||
207 | /* enable advanced MIDI features: | ||
208 | - MIDI notes can be added to the keymap | ||
209 | - Octave shift and transpose | ||
210 | - Virtual sustain, portamento, and modulation wheel | ||
211 | - etc. | ||
212 | */ | ||
213 | //#define MIDI_ADVANCED | ||
214 | |||
215 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
216 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
217 | |||
218 | /* Bootmagic Lite key configuration */ | 198 | /* Bootmagic Lite key configuration */ |
219 | // #define BOOTMAGIC_LITE_ROW 0 | 199 | // #define BOOTMAGIC_LITE_ROW 0 |
220 | // #define BOOTMAGIC_LITE_COLUMN 0 | 200 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ckeys/washington/rules.mk b/keyboards/ckeys/washington/rules.mk index 601613c72..b5c49faff 100644 --- a/keyboards/ckeys/washington/rules.mk +++ b/keyboards/ckeys/washington/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | ENCODER_ENABLE = yes # Enable support for encoders | 30 | ENCODER_ENABLE = yes # Enable support for encoders |
diff --git a/keyboards/clawsome/bookerboard/rules.mk b/keyboards/clawsome/bookerboard/rules.mk index e79bc68c5..5ead4f763 100644 --- a/keyboards/clawsome/bookerboard/rules.mk +++ b/keyboards/clawsome/bookerboard/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/clawsome/coupe/rules.mk b/keyboards/clawsome/coupe/rules.mk index c52949945..ae186b3d7 100644 --- a/keyboards/clawsome/coupe/rules.mk +++ b/keyboards/clawsome/coupe/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/clawsome/gamebuddy/v1_0/rules.mk b/keyboards/clawsome/gamebuddy/v1_0/rules.mk index cac86d439..b51dafa80 100644 --- a/keyboards/clawsome/gamebuddy/v1_0/rules.mk +++ b/keyboards/clawsome/gamebuddy/v1_0/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/clawsome/sedan/rules.mk b/keyboards/clawsome/sedan/rules.mk index 68f09f34a..00ee7f891 100644 --- a/keyboards/clawsome/sedan/rules.mk +++ b/keyboards/clawsome/sedan/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/clawsome/sidekick/rules.mk b/keyboards/clawsome/sidekick/rules.mk index e52653b01..bf89504ce 100644 --- a/keyboards/clawsome/sidekick/rules.mk +++ b/keyboards/clawsome/sidekick/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/clueboard/66_hotswap/gen1/config.h b/keyboards/clueboard/66_hotswap/gen1/config.h index e0e69a2ba..7e53e0a01 100644 --- a/keyboards/clueboard/66_hotswap/gen1/config.h +++ b/keyboards/clueboard/66_hotswap/gen1/config.h | |||
@@ -65,26 +65,6 @@ | |||
65 | //#define NO_ACTION_MACRO | 65 | //#define NO_ACTION_MACRO |
66 | //#define NO_ACTION_FUNCTION | 66 | //#define NO_ACTION_FUNCTION |
67 | 67 | ||
68 | /* | ||
69 | * MIDI options | ||
70 | */ | ||
71 | |||
72 | /* enable basic MIDI features: | ||
73 | - MIDI notes can be sent when in Music mode is on | ||
74 | */ | ||
75 | //#define MIDI_BASIC | ||
76 | |||
77 | /* enable advanced MIDI features: | ||
78 | - MIDI notes can be added to the keymap | ||
79 | - Octave shift and transpose | ||
80 | - Virtual sustain, portamento, and modulation wheel | ||
81 | - etc. | ||
82 | */ | ||
83 | //#define MIDI_ADVANCED | ||
84 | |||
85 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
86 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
87 | |||
88 | /* Backlight configuration | 68 | /* Backlight configuration |
89 | */ | 69 | */ |
90 | #define BACKLIGHT_LEVELS 10 | 70 | #define BACKLIGHT_LEVELS 10 |
diff --git a/keyboards/cocoa40/rules.mk b/keyboards/cocoa40/rules.mk index 87459ff87..fafb0d573 100644 --- a/keyboards/cocoa40/rules.mk +++ b/keyboards/cocoa40/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/comet46/rules.mk b/keyboards/comet46/rules.mk index 51daa6f13..08acbefe1 100644 --- a/keyboards/comet46/rules.mk +++ b/keyboards/comet46/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/contra/rules.mk b/keyboards/contra/rules.mk index 5c1ad1fb6..a2feb720b 100755 --- a/keyboards/contra/rules.mk +++ b/keyboards/contra/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
23 | NKRO_ENABLE = yes # USB Nkey Rollover | 23 | NKRO_ENABLE = yes # USB Nkey Rollover |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/converter/hp_46010a/rules.mk b/keyboards/converter/hp_46010a/rules.mk index ee1fc4b9f..5d8379aea 100644 --- a/keyboards/converter/hp_46010a/rules.mk +++ b/keyboards/converter/hp_46010a/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/converter/ibm_terminal/rules.mk b/keyboards/converter/ibm_terminal/rules.mk index 50dff825d..f2fc3c9c8 100644 --- a/keyboards/converter/ibm_terminal/rules.mk +++ b/keyboards/converter/ibm_terminal/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/converter/modelm101/rules.mk b/keyboards/converter/modelm101/rules.mk index 5dd28bd87..84090086d 100644 --- a/keyboards/converter/modelm101/rules.mk +++ b/keyboards/converter/modelm101/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/converter/numeric_keypad_IIe/rules.mk b/keyboards/converter/numeric_keypad_IIe/rules.mk index 9727ce106..a684ff876 100644 --- a/keyboards/converter/numeric_keypad_IIe/rules.mk +++ b/keyboards/converter/numeric_keypad_IIe/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/converter/palm_usb/rules.mk b/keyboards/converter/palm_usb/rules.mk index 28aee14bc..de70a45c0 100644 --- a/keyboards/converter/palm_usb/rules.mk +++ b/keyboards/converter/palm_usb/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/converter/sun_usb/rules.mk b/keyboards/converter/sun_usb/rules.mk index aa13a52bb..8e7e3514c 100644 --- a/keyboards/converter/sun_usb/rules.mk +++ b/keyboards/converter/sun_usb/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/converter/usb_usb/ble/rules.mk b/keyboards/converter/usb_usb/ble/rules.mk index f95336f1b..76af3e1fa 100644 --- a/keyboards/converter/usb_usb/ble/rules.mk +++ b/keyboards/converter/usb_usb/ble/rules.mk | |||
@@ -12,7 +12,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
12 | NKRO_ENABLE = no # USB Nkey Rollover | 12 | NKRO_ENABLE = no # USB Nkey Rollover |
13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
15 | MIDI_ENABLE = no # MIDI support | ||
16 | UNICODE_ENABLE = no # Unicode | 15 | UNICODE_ENABLE = no # Unicode |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | AUDIO_ENABLE = no # Audio output on port C6 | 17 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/copenhagen_click/click_pad_v1/config.h b/keyboards/copenhagen_click/click_pad_v1/config.h index 62d08fab2..95d56bb66 100755 --- a/keyboards/copenhagen_click/click_pad_v1/config.h +++ b/keyboards/copenhagen_click/click_pad_v1/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/copenhagen_click/click_pad_v1/rules.mk b/keyboards/copenhagen_click/click_pad_v1/rules.mk index 0bc12c287..65e75d14c 100755 --- a/keyboards/copenhagen_click/click_pad_v1/rules.mk +++ b/keyboards/copenhagen_click/click_pad_v1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/discipad/config.h b/keyboards/coseyfannitutti/discipad/config.h index 01b12cf3a..056239a09 100644 --- a/keyboards/coseyfannitutti/discipad/config.h +++ b/keyboards/coseyfannitutti/discipad/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | #define BOOTMAGIC_LITE_ROW 0 | 195 | #define BOOTMAGIC_LITE_ROW 0 |
216 | #define BOOTMAGIC_LITE_COLUMN 0 | 196 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/coseyfannitutti/discipad/rules.mk b/keyboards/coseyfannitutti/discipad/rules.mk index 93d5db6e7..f7985448d 100644 --- a/keyboards/coseyfannitutti/discipad/rules.mk +++ b/keyboards/coseyfannitutti/discipad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/discipline/config.h b/keyboards/coseyfannitutti/discipline/config.h index af2bc452b..3efe9a5c3 100644 --- a/keyboards/coseyfannitutti/discipline/config.h +++ b/keyboards/coseyfannitutti/discipline/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | #define BOOTMAGIC_LITE_ROW 0 | 193 | #define BOOTMAGIC_LITE_ROW 0 |
214 | #define BOOTMAGIC_LITE_COLUMN 0 | 194 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/coseyfannitutti/discipline/rules.mk b/keyboards/coseyfannitutti/discipline/rules.mk index ad0eeaf93..91228adfe 100644 --- a/keyboards/coseyfannitutti/discipline/rules.mk +++ b/keyboards/coseyfannitutti/discipline/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/mullet/config.h b/keyboards/coseyfannitutti/mullet/config.h index 9d92d0839..b186aa82d 100644 --- a/keyboards/coseyfannitutti/mullet/config.h +++ b/keyboards/coseyfannitutti/mullet/config.h | |||
@@ -118,23 +118,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
118 | //#define NO_ACTION_MACRO | 118 | //#define NO_ACTION_MACRO |
119 | //#define NO_ACTION_FUNCTION | 119 | //#define NO_ACTION_FUNCTION |
120 | 120 | ||
121 | /* | ||
122 | * MIDI options | ||
123 | */ | ||
124 | |||
125 | /* enable basic MIDI features: | ||
126 | - MIDI notes can be sent when in Music mode is on | ||
127 | */ | ||
128 | //#define MIDI_BASIC | ||
129 | |||
130 | /* enable advanced MIDI features: | ||
131 | - MIDI notes can be added to the keymap | ||
132 | - Octave shift and transpose | ||
133 | - Virtual sustain, portamento, and modulation wheel | ||
134 | - etc. | ||
135 | */ | ||
136 | //#define MIDI_ADVANCED | ||
137 | |||
138 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
139 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
140 | |||
diff --git a/keyboards/coseyfannitutti/mullet/rules.mk b/keyboards/coseyfannitutti/mullet/rules.mk index 126ec2737..7ae4a35f4 100644 --- a/keyboards/coseyfannitutti/mullet/rules.mk +++ b/keyboards/coseyfannitutti/mullet/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/mulletpad/config.h b/keyboards/coseyfannitutti/mulletpad/config.h index 92e2a747e..b2a930357 100644 --- a/keyboards/coseyfannitutti/mulletpad/config.h +++ b/keyboards/coseyfannitutti/mulletpad/config.h | |||
@@ -118,23 +118,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
118 | //#define NO_ACTION_MACRO | 118 | //#define NO_ACTION_MACRO |
119 | //#define NO_ACTION_FUNCTION | 119 | //#define NO_ACTION_FUNCTION |
120 | 120 | ||
121 | /* | ||
122 | * MIDI options | ||
123 | */ | ||
124 | |||
125 | /* enable basic MIDI features: | ||
126 | - MIDI notes can be sent when in Music mode is on | ||
127 | */ | ||
128 | //#define MIDI_BASIC | ||
129 | |||
130 | /* enable advanced MIDI features: | ||
131 | - MIDI notes can be added to the keymap | ||
132 | - Octave shift and transpose | ||
133 | - Virtual sustain, portamento, and modulation wheel | ||
134 | - etc. | ||
135 | */ | ||
136 | //#define MIDI_ADVANCED | ||
137 | |||
138 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
139 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
140 | |||
diff --git a/keyboards/coseyfannitutti/mulletpad/rules.mk b/keyboards/coseyfannitutti/mulletpad/rules.mk index 855904729..d5b87e9c1 100644 --- a/keyboards/coseyfannitutti/mulletpad/rules.mk +++ b/keyboards/coseyfannitutti/mulletpad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/mysterium/config.h b/keyboards/coseyfannitutti/mysterium/config.h index 9b657d5bd..4e23392ee 100644 --- a/keyboards/coseyfannitutti/mysterium/config.h +++ b/keyboards/coseyfannitutti/mysterium/config.h | |||
@@ -187,26 +187,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
187 | //#define NO_ACTION_MACRO | 187 | //#define NO_ACTION_MACRO |
188 | //#define NO_ACTION_FUNCTION | 188 | //#define NO_ACTION_FUNCTION |
189 | 189 | ||
190 | /* | ||
191 | * MIDI options | ||
192 | */ | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* Bootmagic Lite key configuration */ | 190 | /* Bootmagic Lite key configuration */ |
211 | #define BOOTMAGIC_LITE_ROW 0 | 191 | #define BOOTMAGIC_LITE_ROW 0 |
212 | #define BOOTMAGIC_LITE_COLUMN 0 | 192 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/coseyfannitutti/mysterium/rules.mk b/keyboards/coseyfannitutti/mysterium/rules.mk index e20bae358..69714fb89 100644 --- a/keyboards/coseyfannitutti/mysterium/rules.mk +++ b/keyboards/coseyfannitutti/mysterium/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/coseyfannitutti/romeo/config.h b/keyboards/coseyfannitutti/romeo/config.h index 8be834db8..f87b9ea6d 100644 --- a/keyboards/coseyfannitutti/romeo/config.h +++ b/keyboards/coseyfannitutti/romeo/config.h | |||
@@ -190,26 +190,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
190 | //#define NO_ACTION_MACRO | 190 | //#define NO_ACTION_MACRO |
191 | //#define NO_ACTION_FUNCTION | 191 | //#define NO_ACTION_FUNCTION |
192 | 192 | ||
193 | /* | ||
194 | * MIDI options | ||
195 | */ | ||
196 | |||
197 | /* enable basic MIDI features: | ||
198 | - MIDI notes can be sent when in Music mode is on | ||
199 | */ | ||
200 | //#define MIDI_BASIC | ||
201 | |||
202 | /* enable advanced MIDI features: | ||
203 | - MIDI notes can be added to the keymap | ||
204 | - Octave shift and transpose | ||
205 | - Virtual sustain, portamento, and modulation wheel | ||
206 | - etc. | ||
207 | */ | ||
208 | //#define MIDI_ADVANCED | ||
209 | |||
210 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
211 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
212 | |||
213 | /* Bootmagic Lite key configuration | 193 | /* Bootmagic Lite key configuration |
214 | #define BOOTMAGIC_LITE_ROW 0 | 194 | #define BOOTMAGIC_LITE_ROW 0 |
215 | #define BOOTMAGIC_LITE_COLUMN 0 | 195 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/coseyfannitutti/romeo/rules.mk b/keyboards/coseyfannitutti/romeo/rules.mk index 41c5cfd36..d8018fa31 100644 --- a/keyboards/coseyfannitutti/romeo/rules.mk +++ b/keyboards/coseyfannitutti/romeo/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/cospad/config.h b/keyboards/cospad/config.h index fd7baf1b8..a18c2c1b2 100644 --- a/keyboards/cospad/config.h +++ b/keyboards/cospad/config.h | |||
@@ -198,26 +198,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
198 | #define NO_ACTION_MACRO | 198 | #define NO_ACTION_MACRO |
199 | #define NO_ACTION_FUNCTION | 199 | #define NO_ACTION_FUNCTION |
200 | 200 | ||
201 | /* | ||
202 | * MIDI options | ||
203 | */ | ||
204 | |||
205 | /* enable basic MIDI features: | ||
206 | - MIDI notes can be sent when in Music mode is on | ||
207 | */ | ||
208 | //#define MIDI_BASIC | ||
209 | |||
210 | /* enable advanced MIDI features: | ||
211 | - MIDI notes can be added to the keymap | ||
212 | - Octave shift and transpose | ||
213 | - Virtual sustain, portamento, and modulation wheel | ||
214 | - etc. | ||
215 | */ | ||
216 | //#define MIDI_ADVANCED | ||
217 | |||
218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
220 | |||
221 | /* Bootmagic Lite key configuration */ | 201 | /* Bootmagic Lite key configuration */ |
222 | // #define BOOTMAGIC_LITE_ROW 0 | 202 | // #define BOOTMAGIC_LITE_ROW 0 |
223 | // #define BOOTMAGIC_LITE_COLUMN 0 | 203 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/cospad/rules.mk b/keyboards/cospad/rules.mk index 38fb7ebf4..7f464d7ac 100644 --- a/keyboards/cospad/rules.mk +++ b/keyboards/cospad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/cu24/config.h b/keyboards/cu24/config.h index b6443ab99..7d1bae604 100644 --- a/keyboards/cu24/config.h +++ b/keyboards/cu24/config.h | |||
@@ -160,24 +160,4 @@ | |||
160 | //#define NO_ACTION_MACRO | 160 | //#define NO_ACTION_MACRO |
161 | //#define NO_ACTION_FUNCTION | 161 | //#define NO_ACTION_FUNCTION |
162 | 162 | ||
163 | /* | ||
164 | * MIDI options | ||
165 | */ | ||
166 | |||
167 | /* enable basic MIDI features: | ||
168 | - MIDI notes can be sent when in Music mode is on | ||
169 | */ | ||
170 | //#define MIDI_BASIC | ||
171 | |||
172 | /* enable advanced MIDI features: | ||
173 | - MIDI notes can be added to the keymap | ||
174 | - Octave shift and transpose | ||
175 | - Virtual sustain, portamento, and modulation wheel | ||
176 | - etc. | ||
177 | */ | ||
178 | //#define MIDI_ADVANCED | ||
179 | |||
180 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
181 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
182 | |||
183 | #endif | 163 | #endif |
diff --git a/keyboards/cu24/rules.mk b/keyboards/cu24/rules.mk index 08c1a5b58..744d85429 100644 --- a/keyboards/cu24/rules.mk +++ b/keyboards/cu24/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/cu80/rules.mk b/keyboards/cu80/rules.mk index 37bd0173e..3ea5d6bf8 100644 --- a/keyboards/cu80/rules.mk +++ b/keyboards/cu80/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/cutie_club/wraith/config.h b/keyboards/cutie_club/wraith/config.h index 1f3e172d0..ffac21743 100644 --- a/keyboards/cutie_club/wraith/config.h +++ b/keyboards/cutie_club/wraith/config.h | |||
@@ -190,26 +190,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
190 | //#define NO_ACTION_MACRO | 190 | //#define NO_ACTION_MACRO |
191 | //#define NO_ACTION_FUNCTION | 191 | //#define NO_ACTION_FUNCTION |
192 | 192 | ||
193 | /* | ||
194 | * MIDI options | ||
195 | */ | ||
196 | |||
197 | /* enable basic MIDI features: | ||
198 | - MIDI notes can be sent when in Music mode is on | ||
199 | */ | ||
200 | //#define MIDI_BASIC | ||
201 | |||
202 | /* enable advanced MIDI features: | ||
203 | - MIDI notes can be added to the keymap | ||
204 | - Octave shift and transpose | ||
205 | - Virtual sustain, portamento, and modulation wheel | ||
206 | - etc. | ||
207 | */ | ||
208 | //#define MIDI_ADVANCED | ||
209 | |||
210 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
211 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
212 | |||
213 | /* Bootmagic Lite key configuration */ | 193 | /* Bootmagic Lite key configuration */ |
214 | // #define BOOTMAGIC_LITE_ROW 0 | 194 | // #define BOOTMAGIC_LITE_ROW 0 |
215 | // #define BOOTMAGIC_LITE_COLUMN 0 | 195 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/cutie_club/wraith/rules.mk b/keyboards/cutie_club/wraith/rules.mk index 35c156816..f226d5274 100644 --- a/keyboards/cutie_club/wraith/rules.mk +++ b/keyboards/cutie_club/wraith/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/daisy/config.h b/keyboards/daisy/config.h index ea56f948e..bf5210c0d 100644 --- a/keyboards/daisy/config.h +++ b/keyboards/daisy/config.h | |||
@@ -197,26 +197,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
197 | #define NO_ACTION_MACRO | 197 | #define NO_ACTION_MACRO |
198 | #define NO_ACTION_FUNCTION | 198 | #define NO_ACTION_FUNCTION |
199 | 199 | ||
200 | /* | ||
201 | * MIDI options | ||
202 | */ | ||
203 | |||
204 | /* enable basic MIDI features: | ||
205 | - MIDI notes can be sent when in Music mode is on | ||
206 | */ | ||
207 | //#define MIDI_BASIC | ||
208 | |||
209 | /* enable advanced MIDI features: | ||
210 | - MIDI notes can be added to the keymap | ||
211 | - Octave shift and transpose | ||
212 | - Virtual sustain, portamento, and modulation wheel | ||
213 | - etc. | ||
214 | */ | ||
215 | //#define MIDI_ADVANCED | ||
216 | |||
217 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
218 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
219 | |||
220 | /* Bootmagic Lite key configuration */ | 200 | /* Bootmagic Lite key configuration */ |
221 | // #define BOOTMAGIC_LITE_ROW 0 | 201 | // #define BOOTMAGIC_LITE_ROW 0 |
222 | // #define BOOTMAGIC_LITE_COLUMN 0 | 202 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/daisy/rules.mk b/keyboards/daisy/rules.mk index 42722d813..487c91915 100644 --- a/keyboards/daisy/rules.mk +++ b/keyboards/daisy/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dc01/arrow/rules.mk b/keyboards/dc01/arrow/rules.mk index 10bc4003d..9565f5c72 100644 --- a/keyboards/dc01/arrow/rules.mk +++ b/keyboards/dc01/arrow/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dc01/left/config.h b/keyboards/dc01/left/config.h index 8a166a265..bc934e4a3 100644 --- a/keyboards/dc01/left/config.h +++ b/keyboards/dc01/left/config.h | |||
@@ -122,23 +122,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
122 | //#define NO_ACTION_ONESHOT | 122 | //#define NO_ACTION_ONESHOT |
123 | //#define NO_ACTION_MACRO | 123 | //#define NO_ACTION_MACRO |
124 | //#define NO_ACTION_FUNCTION | 124 | //#define NO_ACTION_FUNCTION |
125 | |||
126 | /* | ||
127 | * MIDI options | ||
128 | */ | ||
129 | |||
130 | /* enable basic MIDI features: | ||
131 | - MIDI notes can be sent when in Music mode is on | ||
132 | */ | ||
133 | //#define MIDI_BASIC | ||
134 | |||
135 | /* enable advanced MIDI features: | ||
136 | - MIDI notes can be added to the keymap | ||
137 | - Octave shift and transpose | ||
138 | - Virtual sustain, portamento, and modulation wheel | ||
139 | - etc. | ||
140 | */ | ||
141 | //#define MIDI_ADVANCED | ||
142 | |||
143 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
144 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/dc01/left/rules.mk b/keyboards/dc01/left/rules.mk index 274a6c761..0c5fabb1c 100644 --- a/keyboards/dc01/left/rules.mk +++ b/keyboards/dc01/left/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dc01/numpad/rules.mk b/keyboards/dc01/numpad/rules.mk index 36189cb90..a693b0bdd 100644 --- a/keyboards/dc01/numpad/rules.mk +++ b/keyboards/dc01/numpad/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dc01/right/rules.mk b/keyboards/dc01/right/rules.mk index 10bc4003d..9565f5c72 100644 --- a/keyboards/dc01/right/rules.mk +++ b/keyboards/dc01/right/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/deltasplit75/rules.mk b/keyboards/deltasplit75/rules.mk index 1e316a6e4..34079ee3e 100644 --- a/keyboards/deltasplit75/rules.mk +++ b/keyboards/deltasplit75/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/dichotomy/rules.mk b/keyboards/dichotomy/rules.mk index 18463c53e..fe5ed813e 100755 --- a/keyboards/dichotomy/rules.mk +++ b/keyboards/dichotomy/rules.mk | |||
@@ -25,7 +25,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
25 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 25 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
26 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 26 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
27 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 27 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
28 | # MIDI_ENABLE = YES # MIDI controls | 28 | MIDI_ENABLE = no # MIDI support |
29 | UNICODE_ENABLE = YES # Unicode | 29 | UNICODE_ENABLE = YES # Unicode |
30 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | 31 | ||
diff --git a/keyboards/diverge3/config.h b/keyboards/diverge3/config.h index 7357b146e..5df77b42c 100644 --- a/keyboards/diverge3/config.h +++ b/keyboards/diverge3/config.h | |||
@@ -160,23 +160,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
160 | //#define NO_ACTION_ONESHOT | 160 | //#define NO_ACTION_ONESHOT |
161 | //#define NO_ACTION_MACRO | 161 | //#define NO_ACTION_MACRO |
162 | //#define NO_ACTION_FUNCTION | 162 | //#define NO_ACTION_FUNCTION |
163 | |||
164 | /* | ||
165 | * MIDI options | ||
166 | */ | ||
167 | |||
168 | /* enable basic MIDI features: | ||
169 | - MIDI notes can be sent when in Music mode is on | ||
170 | */ | ||
171 | //#define MIDI_BASIC | ||
172 | |||
173 | /* enable advanced MIDI features: | ||
174 | - MIDI notes can be added to the keymap | ||
175 | - Octave shift and transpose | ||
176 | - Virtual sustain, portamento, and modulation wheel | ||
177 | - etc. | ||
178 | */ | ||
179 | //#define MIDI_ADVANCED | ||
180 | |||
181 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
182 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/diverge3/rules.mk b/keyboards/diverge3/rules.mk index 52700dda9..1e5a388fe 100644 --- a/keyboards/diverge3/rules.mk +++ b/keyboards/diverge3/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/divergetm2/rules.mk b/keyboards/divergetm2/rules.mk index 8aabc9722..4f5f40145 100644 --- a/keyboards/divergetm2/rules.mk +++ b/keyboards/divergetm2/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/dm9records/ergoinu/rules.mk b/keyboards/dm9records/ergoinu/rules.mk index c1a02ee23..8dcfeaf4f 100644 --- a/keyboards/dm9records/ergoinu/rules.mk +++ b/keyboards/dm9records/ergoinu/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/dm9records/plaid/config.h b/keyboards/dm9records/plaid/config.h index 49bdf6ce2..bbe974e3f 100644 --- a/keyboards/dm9records/plaid/config.h +++ b/keyboards/dm9records/plaid/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/dm9records/plaid/rules.mk b/keyboards/dm9records/plaid/rules.mk index a511b59d2..474e627d6 100644 --- a/keyboards/dm9records/plaid/rules.mk +++ b/keyboards/dm9records/plaid/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dm9records/tartan/config.h b/keyboards/dm9records/tartan/config.h index 06f346c7e..544ab4a64 100644 --- a/keyboards/dm9records/tartan/config.h +++ b/keyboards/dm9records/tartan/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/dm9records/tartan/rules.mk b/keyboards/dm9records/tartan/rules.mk index 968a0813e..78ac49c53 100644 --- a/keyboards/dm9records/tartan/rules.mk +++ b/keyboards/dm9records/tartan/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/do60/rules.mk b/keyboards/do60/rules.mk index af00e40f2..ea4d60ba2 100644 --- a/keyboards/do60/rules.mk +++ b/keyboards/do60/rules.mk | |||
@@ -19,7 +19,6 @@ BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 24 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
diff --git a/keyboards/doppelganger/config.h b/keyboards/doppelganger/config.h index fa909feea..6e1fa957e 100644 --- a/keyboards/doppelganger/config.h +++ b/keyboards/doppelganger/config.h | |||
@@ -200,26 +200,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
200 | //#define NO_ACTION_MACRO | 200 | //#define NO_ACTION_MACRO |
201 | //#define NO_ACTION_FUNCTION | 201 | //#define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | #define BOOTMAGIC_LITE_ROW 0 | 204 | #define BOOTMAGIC_LITE_ROW 0 |
225 | #define BOOTMAGIC_LITE_COLUMN 2 | 205 | #define BOOTMAGIC_LITE_COLUMN 2 |
diff --git a/keyboards/doppelganger/rules.mk b/keyboards/doppelganger/rules.mk index ca73c65ed..931849602 100644 --- a/keyboards/doppelganger/rules.mk +++ b/keyboards/doppelganger/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/doro67/multi/rules.mk b/keyboards/doro67/multi/rules.mk index 3570e5870..3310064e1 100644 --- a/keyboards/doro67/multi/rules.mk +++ b/keyboards/doro67/multi/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = no # USB Nkey Rollover | 24 | NKRO_ENABLE = no # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/doro67/regular/rules.mk b/keyboards/doro67/regular/rules.mk index 40b7a32b0..4ade2b2b9 100644 --- a/keyboards/doro67/regular/rules.mk +++ b/keyboards/doro67/regular/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/doro67/rgb/rules.mk b/keyboards/doro67/rgb/rules.mk index a8b1789a3..bba7114da 100644 --- a/keyboards/doro67/rgb/rules.mk +++ b/keyboards/doro67/rgb/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dozen0/config.h b/keyboards/dozen0/config.h index 11a8e1966..ab60fe2d1 100644 --- a/keyboards/dozen0/config.h +++ b/keyboards/dozen0/config.h | |||
@@ -165,26 +165,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
188 | /* Bootmagic Lite key configuration */ | 168 | /* Bootmagic Lite key configuration */ |
189 | // #define BOOTMAGIC_LITE_ROW 0 | 169 | // #define BOOTMAGIC_LITE_ROW 0 |
190 | // #define BOOTMAGIC_LITE_COLUMN 0 | 170 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/dozen0/rules.mk b/keyboards/dozen0/rules.mk index 7e9c4aab1..2d03ab394 100644 --- a/keyboards/dozen0/rules.mk +++ b/keyboards/dozen0/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dp60/rules.mk b/keyboards/dp60/rules.mk index badef8322..d1164b6ea 100644 --- a/keyboards/dp60/rules.mk +++ b/keyboards/dp60/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/jetfire/config.h b/keyboards/duck/jetfire/config.h index 37e81e830..593f064bd 100644 --- a/keyboards/duck/jetfire/config.h +++ b/keyboards/duck/jetfire/config.h | |||
@@ -143,23 +143,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
143 | //#define NO_ACTION_MACRO | 143 | //#define NO_ACTION_MACRO |
144 | //#define NO_ACTION_FUNCTION | 144 | //#define NO_ACTION_FUNCTION |
145 | 145 | ||
146 | /* | ||
147 | * MIDI options | ||
148 | */ | ||
149 | |||
150 | /* enable basic MIDI features: | ||
151 | - MIDI notes can be sent when in Music mode is on | ||
152 | */ | ||
153 | //#define MIDI_BASIC | ||
154 | |||
155 | /* enable advanced MIDI features: | ||
156 | - MIDI notes can be added to the keymap | ||
157 | - Octave shift and transpose | ||
158 | - Virtual sustain, portamento, and modulation wheel | ||
159 | - etc. | ||
160 | */ | ||
161 | //#define MIDI_ADVANCED | ||
162 | |||
163 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
164 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
165 | |||
diff --git a/keyboards/duck/jetfire/rules.mk b/keyboards/duck/jetfire/rules.mk index 201396a34..8fc989331 100644 --- a/keyboards/duck/jetfire/rules.mk +++ b/keyboards/duck/jetfire/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | 27 | BACKLIGHT_DRIVER = custom |
28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/lightsaver/rules.mk b/keyboards/duck/lightsaver/rules.mk index f4b027050..db7cf818e 100644 --- a/keyboards/duck/lightsaver/rules.mk +++ b/keyboards/duck/lightsaver/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | 27 | BACKLIGHT_DRIVER = custom |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/octagon/v1/rules.mk b/keyboards/duck/octagon/v1/rules.mk index 7a3696898..c49527390 100644 --- a/keyboards/duck/octagon/v1/rules.mk +++ b/keyboards/duck/octagon/v1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | 27 | BACKLIGHT_DRIVER = custom |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/octagon/v2/rules.mk b/keyboards/duck/octagon/v2/rules.mk index 4158d718a..ee17ab998 100644 --- a/keyboards/duck/octagon/v2/rules.mk +++ b/keyboards/duck/octagon/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | 27 | BACKLIGHT_DRIVER = custom |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/orion/v3/rules.mk b/keyboards/duck/orion/v3/rules.mk index ffacab11d..1ccf955ec 100644 --- a/keyboards/duck/orion/v3/rules.mk +++ b/keyboards/duck/orion/v3/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | BACKLIGHT_DRIVER = custom | 27 | BACKLIGHT_DRIVER = custom |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/duck/tcv3/rules.mk b/keyboards/duck/tcv3/rules.mk index f8137415d..e342b1fbb 100644 --- a/keyboards/duck/tcv3/rules.mk +++ b/keyboards/duck/tcv3/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/dztech/dz60rgb/v1/rules.mk b/keyboards/dztech/dz60rgb/v1/rules.mk index 4ea91f597..56b9cf2dd 100644 --- a/keyboards/dztech/dz60rgb/v1/rules.mk +++ b/keyboards/dztech/dz60rgb/v1/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 24 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz60rgb/v2/rules.mk b/keyboards/dztech/dz60rgb/v2/rules.mk index 998e70e23..abad180c8 100644 --- a/keyboards/dztech/dz60rgb/v2/rules.mk +++ b/keyboards/dztech/dz60rgb/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 30 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz60rgb_ansi/v1/rules.mk b/keyboards/dztech/dz60rgb_ansi/v1/rules.mk index 4ea91f597..56b9cf2dd 100644 --- a/keyboards/dztech/dz60rgb_ansi/v1/rules.mk +++ b/keyboards/dztech/dz60rgb_ansi/v1/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 24 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz60rgb_ansi/v2/rules.mk b/keyboards/dztech/dz60rgb_ansi/v2/rules.mk index 998e70e23..abad180c8 100644 --- a/keyboards/dztech/dz60rgb_ansi/v2/rules.mk +++ b/keyboards/dztech/dz60rgb_ansi/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 30 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz60rgb_wkl/v1/rules.mk b/keyboards/dztech/dz60rgb_wkl/v1/rules.mk index 07785e0ed..e69cd9cc3 100644 --- a/keyboards/dztech/dz60rgb_wkl/v1/rules.mk +++ b/keyboards/dztech/dz60rgb_wkl/v1/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 24 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz60rgb_wkl/v2/rules.mk b/keyboards/dztech/dz60rgb_wkl/v2/rules.mk index dba33cda2..34288e102 100644 --- a/keyboards/dztech/dz60rgb_wkl/v2/rules.mk +++ b/keyboards/dztech/dz60rgb_wkl/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 30 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz65rgb/v1/rules.mk b/keyboards/dztech/dz65rgb/v1/rules.mk index 5ba3f7b01..b970b96c7 100644 --- a/keyboards/dztech/dz65rgb/v1/rules.mk +++ b/keyboards/dztech/dz65rgb/v1/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 24 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/dztech/dz65rgb/v2/rules.mk b/keyboards/dztech/dz65rgb/v2/rules.mk index a68ef0bc7..5d4f3a894 100644 --- a/keyboards/dztech/dz65rgb/v2/rules.mk +++ b/keyboards/dztech/dz65rgb/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 30 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/eco/rules.mk b/keyboards/eco/rules.mk index b571fc984..8629910b7 100644 --- a/keyboards/eco/rules.mk +++ b/keyboards/eco/rules.mk | |||
@@ -22,7 +22,7 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = yes # MIDI controls | 25 | MIDI_ENABLE = yes # MIDI support |
26 | AUDIO_ENABLE = no # Audio output | 26 | AUDIO_ENABLE = no # Audio output |
27 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/emptystring/NQG/rules.mk b/keyboards/emptystring/NQG/rules.mk index 72498c0f4..ab274deb8 100644 --- a/keyboards/emptystring/NQG/rules.mk +++ b/keyboards/emptystring/NQG/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/eniigmakeyboards/ek87/config.h b/keyboards/eniigmakeyboards/ek87/config.h index 21298bd29..52a30917e 100644 --- a/keyboards/eniigmakeyboards/ek87/config.h +++ b/keyboards/eniigmakeyboards/ek87/config.h | |||
@@ -193,25 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | /* disable these deprecated features by default */ | 193 | /* disable these deprecated features by default */ |
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | 196 | ||
216 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/eniigmakeyboards/ek87/rules.mk b/keyboards/eniigmakeyboards/ek87/rules.mk index 5ca6630fc..1dc37611d 100644 --- a/keyboards/eniigmakeyboards/ek87/rules.mk +++ b/keyboards/eniigmakeyboards/ek87/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ep/40/rules.mk b/keyboards/ep/40/rules.mk index 41dc64786..34e2adb72 100644 --- a/keyboards/ep/40/rules.mk +++ b/keyboards/ep/40/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ep/96/config.h b/keyboards/ep/96/config.h index 3df6a968e..7c63e38d1 100644 --- a/keyboards/ep/96/config.h +++ b/keyboards/ep/96/config.h | |||
@@ -152,23 +152,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
152 | //#define NO_ACTION_MACRO | 152 | //#define NO_ACTION_MACRO |
153 | //#define NO_ACTION_FUNCTION | 153 | //#define NO_ACTION_FUNCTION |
154 | 154 | ||
155 | /* | ||
156 | * MIDI options | ||
157 | */ | ||
158 | |||
159 | /* enable basic MIDI features: | ||
160 | - MIDI notes can be sent when in Music mode is on | ||
161 | */ | ||
162 | //#define MIDI_BASIC | ||
163 | |||
164 | /* enable advanced MIDI features: | ||
165 | - MIDI notes can be added to the keymap | ||
166 | - Octave shift and transpose | ||
167 | - Virtual sustain, portamento, and modulation wheel | ||
168 | - etc. | ||
169 | */ | ||
170 | //#define MIDI_ADVANCED | ||
171 | |||
172 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
173 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
174 | |||
diff --git a/keyboards/ep/96/rules.mk b/keyboards/ep/96/rules.mk index 41dc64786..34e2adb72 100644 --- a/keyboards/ep/96/rules.mk +++ b/keyboards/ep/96/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ep/comsn/hs68/rules.mk b/keyboards/ep/comsn/hs68/rules.mk index 67398323e..e7b73f7f9 100644 --- a/keyboards/ep/comsn/hs68/rules.mk +++ b/keyboards/ep/comsn/hs68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ep/comsn/mollydooker/config.h b/keyboards/ep/comsn/mollydooker/config.h index 8b0e5930b..97481783e 100644 --- a/keyboards/ep/comsn/mollydooker/config.h +++ b/keyboards/ep/comsn/mollydooker/config.h | |||
@@ -161,23 +161,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
161 | //#define NO_ACTION_MACRO | 161 | //#define NO_ACTION_MACRO |
162 | //#define NO_ACTION_FUNCTION | 162 | //#define NO_ACTION_FUNCTION |
163 | 163 | ||
164 | /* | ||
165 | * MIDI options | ||
166 | */ | ||
167 | |||
168 | /* enable basic MIDI features: | ||
169 | - MIDI notes can be sent when in Music mode is on | ||
170 | */ | ||
171 | //#define MIDI_BASIC | ||
172 | |||
173 | /* enable advanced MIDI features: | ||
174 | - MIDI notes can be added to the keymap | ||
175 | - Octave shift and transpose | ||
176 | - Virtual sustain, portamento, and modulation wheel | ||
177 | - etc. | ||
178 | */ | ||
179 | //#define MIDI_ADVANCED | ||
180 | |||
181 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
182 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
183 | |||
diff --git a/keyboards/ep/comsn/mollydooker/rules.mk b/keyboards/ep/comsn/mollydooker/rules.mk index 68304f309..1b88e3a50 100644 --- a/keyboards/ep/comsn/mollydooker/rules.mk +++ b/keyboards/ep/comsn/mollydooker/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ep/comsn/tf_longeboye/rules.mk b/keyboards/ep/comsn/tf_longeboye/rules.mk index 30134c24d..fc6b297de 100644 --- a/keyboards/ep/comsn/tf_longeboye/rules.mk +++ b/keyboards/ep/comsn/tf_longeboye/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ergo42/rules.mk b/keyboards/ergo42/rules.mk index 30bcaad61..4aabe7e98 100644 --- a/keyboards/ergo42/rules.mk +++ b/keyboards/ergo42/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/ergodash/rules.mk b/keyboards/ergodash/rules.mk index bb43f6d97..2019dd1db 100644 --- a/keyboards/ergodash/rules.mk +++ b/keyboards/ergodash/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ergodone/rules.mk b/keyboards/ergodone/rules.mk index 633b3ef5c..7b88a1419 100644 --- a/keyboards/ergodone/rules.mk +++ b/keyboards/ergodone/rules.mk | |||
@@ -27,7 +27,6 @@ USB_6KRO_ENABLE = no # USB 6key Rollover | |||
27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
28 | SWAP_HANDS_ENABLE = no # Disable Onehand | 28 | SWAP_HANDS_ENABLE = no # Disable Onehand |
29 | RGBLIGHT_ENABLE = no | 29 | RGBLIGHT_ENABLE = no |
30 | MIDI_ENABLE = no | ||
31 | 30 | ||
32 | # project specific files | 31 | # project specific files |
33 | SRC = \ | 32 | SRC = \ |
diff --git a/keyboards/ergodox_infinity/rules.mk b/keyboards/ergodox_infinity/rules.mk index 0440632ec..06b62f547 100644 --- a/keyboards/ergodox_infinity/rules.mk +++ b/keyboards/ergodox_infinity/rules.mk | |||
@@ -24,7 +24,6 @@ NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: htt | |||
24 | UNICODE_ENABLE = yes # Unicode | 24 | UNICODE_ENABLE = yes # Unicode |
25 | SWAP_HANDS_ENABLE= yes # Allow swapping hands of keyboard | 25 | SWAP_HANDS_ENABLE= yes # Allow swapping hands of keyboard |
26 | 26 | ||
27 | MIDI_ENABLE = no | ||
28 | RGBLIGHT_ENABLE = no | 27 | RGBLIGHT_ENABLE = no |
29 | 28 | ||
30 | SPLIT_KEYBOARD = yes | 29 | SPLIT_KEYBOARD = yes |
diff --git a/keyboards/ergosaurus/config.h b/keyboards/ergosaurus/config.h index 9731897c6..fd85e8790 100644 --- a/keyboards/ergosaurus/config.h +++ b/keyboards/ergosaurus/config.h | |||
@@ -194,27 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | |||
202 | /* enable basic MIDI features: | ||
203 | - MIDI notes can be sent when in Music mode is on | ||
204 | */ | ||
205 | //#define MIDI_BASIC | ||
206 | |||
207 | /* enable advanced MIDI features: | ||
208 | - MIDI notes can be added to the keymap | ||
209 | - Octave shift and transpose | ||
210 | - Virtual sustain, portamento, and modulation wheel | ||
211 | - etc. | ||
212 | */ | ||
213 | //#define MIDI_ADVANCED | ||
214 | |||
215 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
216 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
217 | |||
218 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
219 | #define BOOTMAGIC_LITE_ROW 0 | 198 | #define BOOTMAGIC_LITE_ROW 0 |
220 | #define BOOTMAGIC_LITE_COLUMN 0 | 199 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ergosaurus/rules.mk b/keyboards/ergosaurus/rules.mk index 55457cac9..0e849ee69 100644 --- a/keyboards/ergosaurus/rules.mk +++ b/keyboards/ergosaurus/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ergoslab/rules.mk b/keyboards/ergoslab/rules.mk index b79c4f68c..87da2f0e3 100644 --- a/keyboards/ergoslab/rules.mk +++ b/keyboards/ergoslab/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ergotravel/rules.mk b/keyboards/ergotravel/rules.mk index 3a46b523e..a89e8d95c 100644 --- a/keyboards/ergotravel/rules.mk +++ b/keyboards/ergotravel/rules.mk | |||
@@ -9,7 +9,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
9 | COMMAND_ENABLE = yes # Commands for debug and configuration | 9 | COMMAND_ENABLE = yes # Commands for debug and configuration |
10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
11 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 11 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
12 | MIDI_ENABLE = no # MIDI controls | ||
13 | AUDIO_ENABLE = no # Audio output on port C6 | 12 | AUDIO_ENABLE = no # Audio output on port C6 |
14 | UNICODE_ENABLE = no # Unicode | 13 | UNICODE_ENABLE = no # Unicode |
15 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ericrlau/numdiscipline/rev1/config.h b/keyboards/ericrlau/numdiscipline/rev1/config.h index 71169683a..ea4c16b8b 100644 --- a/keyboards/ericrlau/numdiscipline/rev1/config.h +++ b/keyboards/ericrlau/numdiscipline/rev1/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | #define BOOTMAGIC_LITE_ROW 0 | 195 | #define BOOTMAGIC_LITE_ROW 0 |
216 | #define BOOTMAGIC_LITE_COLUMN 0 | 196 | #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ericrlau/numdiscipline/rev1/rules.mk b/keyboards/ericrlau/numdiscipline/rev1/rules.mk index 8ed12ac68..639af4453 100644 --- a/keyboards/ericrlau/numdiscipline/rev1/rules.mk +++ b/keyboards/ericrlau/numdiscipline/rev1/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evil80/rules.mk b/keyboards/evil80/rules.mk index 11448a5f3..5f7f8c42a 100644 --- a/keyboards/evil80/rules.mk +++ b/keyboards/evil80/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/evyd13/atom47/rules.mk b/keyboards/evyd13/atom47/rules.mk index 44c13f496..34a7f0ead 100644 --- a/keyboards/evyd13/atom47/rules.mk +++ b/keyboards/evyd13/atom47/rules.mk | |||
@@ -20,7 +20,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 22 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | AUDIO_ENABLE = no | 23 | AUDIO_ENABLE = no |
25 | UNICODE_ENABLE = no # Unicode | 24 | UNICODE_ENABLE = no # Unicode |
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/evyd13/eon40/config.h b/keyboards/evyd13/eon40/config.h index 625576c74..eb65f6bcf 100644 --- a/keyboards/evyd13/eon40/config.h +++ b/keyboards/evyd13/eon40/config.h | |||
@@ -194,26 +194,6 @@ | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/eon40/rules.mk b/keyboards/evyd13/eon40/rules.mk index 5f1da0aae..16eebea6c 100644 --- a/keyboards/evyd13/eon40/rules.mk +++ b/keyboards/evyd13/eon40/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/eon65/config.h b/keyboards/evyd13/eon65/config.h index ffcde47f6..eb6273e46 100644 --- a/keyboards/evyd13/eon65/config.h +++ b/keyboards/evyd13/eon65/config.h | |||
@@ -191,26 +191,6 @@ | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/eon65/rules.mk b/keyboards/evyd13/eon65/rules.mk index aff1f357c..ba02b99d8 100644 --- a/keyboards/evyd13/eon65/rules.mk +++ b/keyboards/evyd13/eon65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/eon75/config.h b/keyboards/evyd13/eon75/config.h index d7d84de2a..d72e3f2b2 100644 --- a/keyboards/evyd13/eon75/config.h +++ b/keyboards/evyd13/eon75/config.h | |||
@@ -196,26 +196,6 @@ | |||
196 | //#define NO_ACTION_MACRO | 196 | //#define NO_ACTION_MACRO |
197 | //#define NO_ACTION_FUNCTION | 197 | //#define NO_ACTION_FUNCTION |
198 | 198 | ||
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | |||
219 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 201 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/eon75/rules.mk b/keyboards/evyd13/eon75/rules.mk index 749d77c79..035a67207 100644 --- a/keyboards/evyd13/eon75/rules.mk +++ b/keyboards/evyd13/eon75/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/eon87/config.h b/keyboards/evyd13/eon87/config.h index dcbac216c..c09a1365e 100644 --- a/keyboards/evyd13/eon87/config.h +++ b/keyboards/evyd13/eon87/config.h | |||
@@ -191,26 +191,6 @@ | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/eon87/rules.mk b/keyboards/evyd13/eon87/rules.mk index 769556aee..be9aff456 100644 --- a/keyboards/evyd13/eon87/rules.mk +++ b/keyboards/evyd13/eon87/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/eon95/config.h b/keyboards/evyd13/eon95/config.h index 2d9ede3ee..bcb2b9c5e 100644 --- a/keyboards/evyd13/eon95/config.h +++ b/keyboards/evyd13/eon95/config.h | |||
@@ -196,26 +196,6 @@ | |||
196 | //#define NO_ACTION_MACRO | 196 | //#define NO_ACTION_MACRO |
197 | //#define NO_ACTION_FUNCTION | 197 | //#define NO_ACTION_FUNCTION |
198 | 198 | ||
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | |||
219 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 201 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/eon95/rules.mk b/keyboards/evyd13/eon95/rules.mk index 749d77c79..035a67207 100644 --- a/keyboards/evyd13/eon95/rules.mk +++ b/keyboards/evyd13/eon95/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/minitomic/config.h b/keyboards/evyd13/minitomic/config.h index f26b4d1d9..140862544 100644 --- a/keyboards/evyd13/minitomic/config.h +++ b/keyboards/evyd13/minitomic/config.h | |||
@@ -194,26 +194,6 @@ | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/minitomic/rules.mk b/keyboards/evyd13/minitomic/rules.mk index 4558c5fcb..772a65f92 100644 --- a/keyboards/evyd13/minitomic/rules.mk +++ b/keyboards/evyd13/minitomic/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/mx5160/config.h b/keyboards/evyd13/mx5160/config.h index c65f81b87..13abd3668 100644 --- a/keyboards/evyd13/mx5160/config.h +++ b/keyboards/evyd13/mx5160/config.h | |||
@@ -200,26 +200,6 @@ | |||
200 | //#define NO_ACTION_MACRO | 200 | //#define NO_ACTION_MACRO |
201 | //#define NO_ACTION_FUNCTION | 201 | //#define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | // #define BOOTMAGIC_LITE_ROW 0 | 204 | // #define BOOTMAGIC_LITE_ROW 0 |
225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 205 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/mx5160/rules.mk b/keyboards/evyd13/mx5160/rules.mk index 13b7fa3f1..b29be96e0 100644 --- a/keyboards/evyd13/mx5160/rules.mk +++ b/keyboards/evyd13/mx5160/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/nt660/config.h b/keyboards/evyd13/nt660/config.h index 863884714..f43e6443d 100644 --- a/keyboards/evyd13/nt660/config.h +++ b/keyboards/evyd13/nt660/config.h | |||
@@ -197,26 +197,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
197 | #define NO_ACTION_MACRO | 197 | #define NO_ACTION_MACRO |
198 | #define NO_ACTION_FUNCTION | 198 | #define NO_ACTION_FUNCTION |
199 | 199 | ||
200 | /* | ||
201 | * MIDI options | ||
202 | */ | ||
203 | |||
204 | /* enable basic MIDI features: | ||
205 | - MIDI notes can be sent when in Music mode is on | ||
206 | */ | ||
207 | //#define MIDI_BASIC | ||
208 | |||
209 | /* enable advanced MIDI features: | ||
210 | - MIDI notes can be added to the keymap | ||
211 | - Octave shift and transpose | ||
212 | - Virtual sustain, portamento, and modulation wheel | ||
213 | - etc. | ||
214 | */ | ||
215 | //#define MIDI_ADVANCED | ||
216 | |||
217 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
218 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
219 | |||
220 | /* Bootmagic Lite key configuration */ | 200 | /* Bootmagic Lite key configuration */ |
221 | // #define BOOTMAGIC_LITE_ROW 0 | 201 | // #define BOOTMAGIC_LITE_ROW 0 |
222 | // #define BOOTMAGIC_LITE_COLUMN 0 | 202 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/nt660/rules.mk b/keyboards/evyd13/nt660/rules.mk index 21da56998..e6cab965f 100644 --- a/keyboards/evyd13/nt660/rules.mk +++ b/keyboards/evyd13/nt660/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/evyd13/omrontkl/config.h b/keyboards/evyd13/omrontkl/config.h index 704ccd5d8..ce35f8e08 100644 --- a/keyboards/evyd13/omrontkl/config.h +++ b/keyboards/evyd13/omrontkl/config.h | |||
@@ -191,26 +191,6 @@ | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/omrontkl/rules.mk b/keyboards/evyd13/omrontkl/rules.mk index 550b0e15b..9c46539f1 100644 --- a/keyboards/evyd13/omrontkl/rules.mk +++ b/keyboards/evyd13/omrontkl/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/evyd13/plain60/rules.mk b/keyboards/evyd13/plain60/rules.mk index 336a5b3eb..8f9b59aad 100644 --- a/keyboards/evyd13/plain60/rules.mk +++ b/keyboards/evyd13/plain60/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/evyd13/pockettype/config.h b/keyboards/evyd13/pockettype/config.h index daae3c173..681672c6a 100644 --- a/keyboards/evyd13/pockettype/config.h +++ b/keyboards/evyd13/pockettype/config.h | |||
@@ -191,26 +191,6 @@ | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/evyd13/ta65/rules.mk b/keyboards/evyd13/ta65/rules.mk index db467c115..c55aec760 100644 --- a/keyboards/evyd13/ta65/rules.mk +++ b/keyboards/evyd13/ta65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | ENCODER_ENABLE = yes | 30 | ENCODER_ENABLE = yes |
diff --git a/keyboards/evyd13/wasdat/config.h b/keyboards/evyd13/wasdat/config.h index 75b75a0d2..83866890f 100644 --- a/keyboards/evyd13/wasdat/config.h +++ b/keyboards/evyd13/wasdat/config.h | |||
@@ -204,26 +204,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
204 | //#define NO_ACTION_MACRO | 204 | //#define NO_ACTION_MACRO |
205 | //#define NO_ACTION_FUNCTION | 205 | //#define NO_ACTION_FUNCTION |
206 | 206 | ||
207 | /* | ||
208 | * MIDI options | ||
209 | */ | ||
210 | |||
211 | /* enable basic MIDI features: | ||
212 | - MIDI notes can be sent when in Music mode is on | ||
213 | */ | ||
214 | //#define MIDI_BASIC | ||
215 | |||
216 | /* enable advanced MIDI features: | ||
217 | - MIDI notes can be added to the keymap | ||
218 | - Octave shift and transpose | ||
219 | - Virtual sustain, portamento, and modulation wheel | ||
220 | - etc. | ||
221 | */ | ||
222 | //#define MIDI_ADVANCED | ||
223 | |||
224 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
225 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
226 | |||
227 | /* Bootmagic Lite key configuration */ | 207 | /* Bootmagic Lite key configuration */ |
228 | #define BOOTMAGIC_LITE_ROW 0 | 208 | #define BOOTMAGIC_LITE_ROW 0 |
229 | #define BOOTMAGIC_LITE_COLUMN 5 | 209 | #define BOOTMAGIC_LITE_COLUMN 5 |
diff --git a/keyboards/evyd13/wasdat/rules.mk b/keyboards/evyd13/wasdat/rules.mk index 2e901597a..ab0acf29a 100644 --- a/keyboards/evyd13/wasdat/rules.mk +++ b/keyboards/evyd13/wasdat/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/evyd13/wasdat_code/config.h b/keyboards/evyd13/wasdat_code/config.h index 4ac77f217..07c18c3ba 100644 --- a/keyboards/evyd13/wasdat_code/config.h +++ b/keyboards/evyd13/wasdat_code/config.h | |||
@@ -204,26 +204,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
204 | //#define NO_ACTION_MACRO | 204 | //#define NO_ACTION_MACRO |
205 | //#define NO_ACTION_FUNCTION | 205 | //#define NO_ACTION_FUNCTION |
206 | 206 | ||
207 | /* | ||
208 | * MIDI options | ||
209 | */ | ||
210 | |||
211 | /* enable basic MIDI features: | ||
212 | - MIDI notes can be sent when in Music mode is on | ||
213 | */ | ||
214 | //#define MIDI_BASIC | ||
215 | |||
216 | /* enable advanced MIDI features: | ||
217 | - MIDI notes can be added to the keymap | ||
218 | - Octave shift and transpose | ||
219 | - Virtual sustain, portamento, and modulation wheel | ||
220 | - etc. | ||
221 | */ | ||
222 | //#define MIDI_ADVANCED | ||
223 | |||
224 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
225 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
226 | |||
227 | /* Bootmagic Lite key configuration */ | 207 | /* Bootmagic Lite key configuration */ |
228 | #define BOOTMAGIC_LITE_ROW 2 | 208 | #define BOOTMAGIC_LITE_ROW 2 |
229 | #define BOOTMAGIC_LITE_COLUMN 3 | 209 | #define BOOTMAGIC_LITE_COLUMN 3 |
diff --git a/keyboards/evyd13/wasdat_code/rules.mk b/keyboards/evyd13/wasdat_code/rules.mk index 93d34c4dd..4dec8aafe 100644 --- a/keyboards/evyd13/wasdat_code/rules.mk +++ b/keyboards/evyd13/wasdat_code/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/evyd13/wonderland/rules.mk b/keyboards/evyd13/wonderland/rules.mk index d73731b4d..54aad9e68 100644 --- a/keyboards/evyd13/wonderland/rules.mk +++ b/keyboards/evyd13/wonderland/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/exclusive/e6_rgb/rules.mk b/keyboards/exclusive/e6_rgb/rules.mk index 271f87e59..6aecbc5ed 100644 --- a/keyboards/exclusive/e6_rgb/rules.mk +++ b/keyboards/exclusive/e6_rgb/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e6v2/le/rules.mk b/keyboards/exclusive/e6v2/le/rules.mk index 12cd2c213..ee499b5aa 100644 --- a/keyboards/exclusive/e6v2/le/rules.mk +++ b/keyboards/exclusive/e6v2/le/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes | 27 | RGBLIGHT_ENABLE = yes |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e6v2/le_bmc/rules.mk b/keyboards/exclusive/e6v2/le_bmc/rules.mk index 4d28e2cc9..52242bd28 100644 --- a/keyboards/exclusive/e6v2/le_bmc/rules.mk +++ b/keyboards/exclusive/e6v2/le_bmc/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | WS2812_DRIVER = i2c | 27 | WS2812_DRIVER = i2c |
28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e6v2/oe/rules.mk b/keyboards/exclusive/e6v2/oe/rules.mk index 12cd2c213..ee499b5aa 100644 --- a/keyboards/exclusive/e6v2/oe/rules.mk +++ b/keyboards/exclusive/e6v2/oe/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes | 27 | RGBLIGHT_ENABLE = yes |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e6v2/oe_bmc/rules.mk b/keyboards/exclusive/e6v2/oe_bmc/rules.mk index 4d28e2cc9..52242bd28 100644 --- a/keyboards/exclusive/e6v2/oe_bmc/rules.mk +++ b/keyboards/exclusive/e6v2/oe_bmc/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | WS2812_DRIVER = i2c | 27 | WS2812_DRIVER = i2c |
28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e7v1se/config.h b/keyboards/exclusive/e7v1se/config.h index 676a0ac8e..4d892946d 100644 --- a/keyboards/exclusive/e7v1se/config.h +++ b/keyboards/exclusive/e7v1se/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/exclusive/e7v1se/rules.mk b/keyboards/exclusive/e7v1se/rules.mk index 3b5a2d7e7..522ace70a 100644 --- a/keyboards/exclusive/e7v1se/rules.mk +++ b/keyboards/exclusive/e7v1se/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/exclusive/e85/config.h b/keyboards/exclusive/e85/config.h index 1791351eb..dfe392d7b 100644 --- a/keyboards/exclusive/e85/config.h +++ b/keyboards/exclusive/e85/config.h | |||
@@ -178,26 +178,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
178 | #define NO_ACTION_MACRO | 178 | #define NO_ACTION_MACRO |
179 | #define NO_ACTION_FUNCTION | 179 | #define NO_ACTION_FUNCTION |
180 | 180 | ||
181 | /* | ||
182 | * MIDI options | ||
183 | */ | ||
184 | |||
185 | /* enable basic MIDI features: | ||
186 | - MIDI notes can be sent when in Music mode is on | ||
187 | */ | ||
188 | //#define MIDI_BASIC | ||
189 | |||
190 | /* enable advanced MIDI features: | ||
191 | - MIDI notes can be added to the keymap | ||
192 | - Octave shift and transpose | ||
193 | - Virtual sustain, portamento, and modulation wheel | ||
194 | - etc. | ||
195 | */ | ||
196 | //#define MIDI_ADVANCED | ||
197 | |||
198 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
199 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
200 | |||
201 | /* Bootmagic Lite key configuration */ | 181 | /* Bootmagic Lite key configuration */ |
202 | // #define BOOTMAGIC_LITE_ROW 0 | 182 | // #define BOOTMAGIC_LITE_ROW 0 |
203 | // #define BOOTMAGIC_LITE_COLUMN 0 | 183 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/fallacy/rules.mk b/keyboards/fallacy/rules.mk index 4713aa7bc..caf362836 100755 --- a/keyboards/fallacy/rules.mk +++ b/keyboards/fallacy/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
24 | 23 | ||
diff --git a/keyboards/felix/config.h b/keyboards/felix/config.h index 884294e4e..349359b32 100644 --- a/keyboards/felix/config.h +++ b/keyboards/felix/config.h | |||
@@ -175,26 +175,6 @@ | |||
175 | //#define NO_ACTION_MACRO | 175 | //#define NO_ACTION_MACRO |
176 | //#define NO_ACTION_FUNCTION | 176 | //#define NO_ACTION_FUNCTION |
177 | 177 | ||
178 | /* | ||
179 | * MIDI options | ||
180 | */ | ||
181 | |||
182 | /* enable basic MIDI features: | ||
183 | - MIDI notes can be sent when in Music mode is on | ||
184 | */ | ||
185 | //#define MIDI_BASIC | ||
186 | |||
187 | /* enable advanced MIDI features: | ||
188 | - MIDI notes can be added to the keymap | ||
189 | - Octave shift and transpose | ||
190 | - Virtual sustain, portamento, and modulation wheel | ||
191 | - etc. | ||
192 | */ | ||
193 | //#define MIDI_ADVANCED | ||
194 | |||
195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
197 | |||
198 | /* Bootmagic Lite key configuration */ | 178 | /* Bootmagic Lite key configuration */ |
199 | // #define BOOTMAGIC_LITE_ROW 0 | 179 | // #define BOOTMAGIC_LITE_ROW 0 |
200 | // #define BOOTMAGIC_LITE_COLUMN 0 | 180 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/felix/rules.mk b/keyboards/felix/rules.mk index 6716df75c..3d19506c1 100644 --- a/keyboards/felix/rules.mk +++ b/keyboards/felix/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/flehrad/downbubble/config.h b/keyboards/flehrad/downbubble/config.h index 26a30bee5..f1af41e5f 100644 --- a/keyboards/flehrad/downbubble/config.h +++ b/keyboards/flehrad/downbubble/config.h | |||
@@ -183,26 +183,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
183 | //#define NO_ACTION_MACRO | 183 | //#define NO_ACTION_MACRO |
184 | //#define NO_ACTION_FUNCTION | 184 | //#define NO_ACTION_FUNCTION |
185 | 185 | ||
186 | /* | ||
187 | * MIDI options | ||
188 | */ | ||
189 | |||
190 | /* enable basic MIDI features: | ||
191 | - MIDI notes can be sent when in Music mode is on | ||
192 | */ | ||
193 | //#define MIDI_BASIC | ||
194 | |||
195 | /* enable advanced MIDI features: | ||
196 | - MIDI notes can be added to the keymap | ||
197 | - Octave shift and transpose | ||
198 | - Virtual sustain, portamento, and modulation wheel | ||
199 | - etc. | ||
200 | */ | ||
201 | //#define MIDI_ADVANCED | ||
202 | |||
203 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
204 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
205 | |||
206 | /* Bootmagic Lite key configuration */ | 186 | /* Bootmagic Lite key configuration */ |
207 | // #define BOOTMAGIC_LITE_ROW 0 | 187 | // #define BOOTMAGIC_LITE_ROW 0 |
208 | // #define BOOTMAGIC_LITE_COLUMN 0 | 188 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/flehrad/downbubble/rules.mk b/keyboards/flehrad/downbubble/rules.mk index bec08baff..0cf873860 100644 --- a/keyboards/flehrad/downbubble/rules.mk +++ b/keyboards/flehrad/downbubble/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/fleuron/config.h b/keyboards/fleuron/config.h index 70772b883..d6c802648 100644 --- a/keyboards/fleuron/config.h +++ b/keyboards/fleuron/config.h | |||
@@ -157,26 +157,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | 159 | ||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
179 | |||
180 | #define RGB_DI_PIN E6 // The pin the LED strip is connected to | 160 | #define RGB_DI_PIN E6 // The pin the LED strip is connected to |
181 | #define RGBLED_NUM 18 // Number of LEDs in your strip | 161 | #define RGBLED_NUM 18 // Number of LEDs in your strip |
182 | #define RGBLIGHT_ANIMATIONS | 162 | #define RGBLIGHT_ANIMATIONS |
diff --git a/keyboards/fleuron/rules.mk b/keyboards/fleuron/rules.mk index e8b84c2e5..8bb653974 100644 --- a/keyboards/fleuron/rules.mk +++ b/keyboards/fleuron/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/fluorite/config.h b/keyboards/fluorite/config.h index 4d05975ae..5dea11e1b 100644 --- a/keyboards/fluorite/config.h +++ b/keyboards/fluorite/config.h | |||
@@ -187,26 +187,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
187 | //#define NO_ACTION_MACRO | 187 | //#define NO_ACTION_MACRO |
188 | //#define NO_ACTION_FUNCTION | 188 | //#define NO_ACTION_FUNCTION |
189 | 189 | ||
190 | /* | ||
191 | * MIDI options | ||
192 | */ | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* Bootmagic Lite key configuration */ | 190 | /* Bootmagic Lite key configuration */ |
211 | // #define BOOTMAGIC_LITE_ROW 0 | 191 | // #define BOOTMAGIC_LITE_ROW 0 |
212 | // #define BOOTMAGIC_LITE_COLUMN 0 | 192 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/fluorite/rules.mk b/keyboards/fluorite/rules.mk index 007f5a030..d25d451e8 100644 --- a/keyboards/fluorite/rules.mk +++ b/keyboards/fluorite/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/flx/lodestone/rules.mk b/keyboards/flx/lodestone/rules.mk index d4eb0321d..6a85ebe3f 100644 --- a/keyboards/flx/lodestone/rules.mk +++ b/keyboards/flx/lodestone/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/flx/virgo/rules.mk b/keyboards/flx/virgo/rules.mk index 9b3f9bd4d..05e128b8b 100644 --- a/keyboards/flx/virgo/rules.mk +++ b/keyboards/flx/virgo/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/fortitude60/rules.mk b/keyboards/fortitude60/rules.mk index d2d87b554..b329e5082 100644 --- a/keyboards/fortitude60/rules.mk +++ b/keyboards/fortitude60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/foxlab/key65/hotswap/rules.mk b/keyboards/foxlab/key65/hotswap/rules.mk index 59450319f..6b0553824 100644 --- a/keyboards/foxlab/key65/hotswap/rules.mk +++ b/keyboards/foxlab/key65/hotswap/rules.mk | |||
@@ -22,5 +22,4 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | AUDIO_ENABLE = no # Audio output | 25 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/foxlab/key65/universal/rules.mk b/keyboards/foxlab/key65/universal/rules.mk index 583578c3e..10e49d61b 100644 --- a/keyboards/foxlab/key65/universal/rules.mk +++ b/keyboards/foxlab/key65/universal/rules.mk | |||
@@ -22,7 +22,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | AUDIO_ENABLE = no # Audio output | 25 | AUDIO_ENABLE = no # Audio output |
27 | 26 | ||
28 | LAYOUTS = 65_ansi_blocker_split_bs # Support community layouts | 27 | LAYOUTS = 65_ansi_blocker_split_bs # Support community layouts |
diff --git a/keyboards/foxlab/leaf60/hotswap/config.h b/keyboards/foxlab/leaf60/hotswap/config.h index 50a8527eb..5cc751a69 100644 --- a/keyboards/foxlab/leaf60/hotswap/config.h +++ b/keyboards/foxlab/leaf60/hotswap/config.h | |||
@@ -175,26 +175,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
175 | //#define NO_ACTION_MACRO | 175 | //#define NO_ACTION_MACRO |
176 | //#define NO_ACTION_FUNCTION | 176 | //#define NO_ACTION_FUNCTION |
177 | 177 | ||
178 | /* | ||
179 | * MIDI options | ||
180 | */ | ||
181 | |||
182 | /* enable basic MIDI features: | ||
183 | - MIDI notes can be sent when in Music mode is on | ||
184 | */ | ||
185 | //#define MIDI_BASIC | ||
186 | |||
187 | /* enable advanced MIDI features: | ||
188 | - MIDI notes can be added to the keymap | ||
189 | - Octave shift and transpose | ||
190 | - Virtual sustain, portamento, and modulation wheel | ||
191 | - etc. | ||
192 | */ | ||
193 | //#define MIDI_ADVANCED | ||
194 | |||
195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
197 | |||
198 | /* Bootmagic Lite key configuration */ | 178 | /* Bootmagic Lite key configuration */ |
199 | // #define BOOTMAGIC_LITE_ROW 0 | 179 | // #define BOOTMAGIC_LITE_ROW 0 |
200 | // #define BOOTMAGIC_LITE_COLUMN 0 | 180 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/foxlab/leaf60/hotswap/rules.mk b/keyboards/foxlab/leaf60/hotswap/rules.mk index 8cfd3ce69..24143d65b 100644 --- a/keyboards/foxlab/leaf60/hotswap/rules.mk +++ b/keyboards/foxlab/leaf60/hotswap/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/foxlab/leaf60/universal/config.h b/keyboards/foxlab/leaf60/universal/config.h index 237276ed8..7a2574e6b 100644 --- a/keyboards/foxlab/leaf60/universal/config.h +++ b/keyboards/foxlab/leaf60/universal/config.h | |||
@@ -175,26 +175,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
175 | //#define NO_ACTION_MACRO | 175 | //#define NO_ACTION_MACRO |
176 | //#define NO_ACTION_FUNCTION | 176 | //#define NO_ACTION_FUNCTION |
177 | 177 | ||
178 | /* | ||
179 | * MIDI options | ||
180 | */ | ||
181 | |||
182 | /* enable basic MIDI features: | ||
183 | - MIDI notes can be sent when in Music mode is on | ||
184 | */ | ||
185 | //#define MIDI_BASIC | ||
186 | |||
187 | /* enable advanced MIDI features: | ||
188 | - MIDI notes can be added to the keymap | ||
189 | - Octave shift and transpose | ||
190 | - Virtual sustain, portamento, and modulation wheel | ||
191 | - etc. | ||
192 | */ | ||
193 | //#define MIDI_ADVANCED | ||
194 | |||
195 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
196 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
197 | |||
198 | /* Bootmagic Lite key configuration */ | 178 | /* Bootmagic Lite key configuration */ |
199 | // #define BOOTMAGIC_LITE_ROW 0 | 179 | // #define BOOTMAGIC_LITE_ROW 0 |
200 | // #define BOOTMAGIC_LITE_COLUMN 0 | 180 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/foxlab/leaf60/universal/rules.mk b/keyboards/foxlab/leaf60/universal/rules.mk index 233bc7c0e..2d93acabe 100644 --- a/keyboards/foxlab/leaf60/universal/rules.mk +++ b/keyboards/foxlab/leaf60/universal/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/fractal/rules.mk b/keyboards/fractal/rules.mk index 00006c486..ce13d6855 100755 --- a/keyboards/fractal/rules.mk +++ b/keyboards/fractal/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
23 | NKRO_ENABLE = yes # USB Nkey Rollover | 23 | NKRO_ENABLE = yes # USB Nkey Rollover |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/funky40/rules.mk b/keyboards/funky40/rules.mk index ba3085014..641b2c4bf 100644 --- a/keyboards/funky40/rules.mk +++ b/keyboards/funky40/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gami_studio/lex60/rules.mk b/keyboards/gami_studio/lex60/rules.mk index 3675821a8..618ef9486 100644 --- a/keyboards/gami_studio/lex60/rules.mk +++ b/keyboards/gami_studio/lex60/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/geekboards/tester/rules.mk b/keyboards/geekboards/tester/rules.mk index ec5862287..60488edf6 100644 --- a/keyboards/geekboards/tester/rules.mk +++ b/keyboards/geekboards/tester/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/getta25/rules.mk b/keyboards/getta25/rules.mk index 929651541..c870594a4 100644 --- a/keyboards/getta25/rules.mk +++ b/keyboards/getta25/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/gh60/revc/rules.mk b/keyboards/gh60/revc/rules.mk index 6eb3b6544..da064bc64 100644 --- a/keyboards/gh60/revc/rules.mk +++ b/keyboards/gh60/revc/rules.mk | |||
@@ -24,7 +24,7 @@ KEYBOARD_LOCK_ENABLE = yes # Allow locking of keyboard via magic key | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | # UNICODE_ENABLE = YES # Unicode | 28 | # UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/gh60/satan/rules.mk b/keyboards/gh60/satan/rules.mk index 6248f55e9..589a3af81 100644 --- a/keyboards/gh60/satan/rules.mk +++ b/keyboards/gh60/satan/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/ghs/rar/config.h b/keyboards/ghs/rar/config.h index 422b8a2e1..164b29068 100644 --- a/keyboards/ghs/rar/config.h +++ b/keyboards/ghs/rar/config.h | |||
@@ -167,26 +167,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
167 | #define NO_ACTION_MACRO | 167 | #define NO_ACTION_MACRO |
168 | #define NO_ACTION_FUNCTION | 168 | #define NO_ACTION_FUNCTION |
169 | 169 | ||
170 | /* | ||
171 | * MIDI options | ||
172 | */ | ||
173 | |||
174 | /* enable basic MIDI features: | ||
175 | - MIDI notes can be sent when in Music mode is on | ||
176 | */ | ||
177 | //#define MIDI_BASIC | ||
178 | |||
179 | /* enable advanced MIDI features: | ||
180 | - MIDI notes can be added to the keymap | ||
181 | - Octave shift and transpose | ||
182 | - Virtual sustain, portamento, and modulation wheel | ||
183 | - etc. | ||
184 | */ | ||
185 | //#define MIDI_ADVANCED | ||
186 | |||
187 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
188 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
189 | |||
190 | /* Bootmagic Lite key configuration */ | 170 | /* Bootmagic Lite key configuration */ |
191 | // #define BOOTMAGIC_LITE_ROW 0 | 171 | // #define BOOTMAGIC_LITE_ROW 0 |
192 | // #define BOOTMAGIC_LITE_COLUMN 0 | 172 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ghs/rar/rules.mk b/keyboards/ghs/rar/rules.mk index f75abef1e..5910558a3 100644 --- a/keyboards/ghs/rar/rules.mk +++ b/keyboards/ghs/rar/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/gingham/config.h b/keyboards/gingham/config.h index 73f5ecfd9..009e23bec 100644 --- a/keyboards/gingham/config.h +++ b/keyboards/gingham/config.h | |||
@@ -189,23 +189,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
diff --git a/keyboards/gingham/rules.mk b/keyboards/gingham/rules.mk index 988006fa7..10230bd46 100644 --- a/keyboards/gingham/rules.mk +++ b/keyboards/gingham/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gon/nerdtkl/rules.mk b/keyboards/gon/nerdtkl/rules.mk index 415349dc0..1ba1a92a6 100644 --- a/keyboards/gon/nerdtkl/rules.mk +++ b/keyboards/gon/nerdtkl/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = yes # USB Nkey Rollover | 28 | NKRO_ENABLE = yes # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gowla/rules.mk b/keyboards/gowla/rules.mk index 46d22d592..f6960651d 100644 --- a/keyboards/gowla/rules.mk +++ b/keyboards/gowla/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/gray_studio/cod67/rules.mk b/keyboards/gray_studio/cod67/rules.mk index 9044be43f..d83a35b33 100644 --- a/keyboards/gray_studio/cod67/rules.mk +++ b/keyboards/gray_studio/cod67/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = yes # Enable RGB underglow | 30 | RGBLIGHT_ENABLE = yes # Enable RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gray_studio/space65/config.h b/keyboards/gray_studio/space65/config.h index 2375d95b3..12ca563c9 100644 --- a/keyboards/gray_studio/space65/config.h +++ b/keyboards/gray_studio/space65/config.h | |||
@@ -185,26 +185,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
185 | //#define NO_ACTION_MACRO | 185 | //#define NO_ACTION_MACRO |
186 | //#define NO_ACTION_FUNCTION | 186 | //#define NO_ACTION_FUNCTION |
187 | 187 | ||
188 | /* | ||
189 | * MIDI options | ||
190 | */ | ||
191 | |||
192 | /* enable basic MIDI features: | ||
193 | - MIDI notes can be sent when in Music mode is on | ||
194 | */ | ||
195 | //#define MIDI_BASIC | ||
196 | |||
197 | /* enable advanced MIDI features: | ||
198 | - MIDI notes can be added to the keymap | ||
199 | - Octave shift and transpose | ||
200 | - Virtual sustain, portamento, and modulation wheel | ||
201 | - etc. | ||
202 | */ | ||
203 | //#define MIDI_ADVANCED | ||
204 | |||
205 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
206 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
207 | |||
208 | /* Bootmagic Lite key configuration */ | 188 | /* Bootmagic Lite key configuration */ |
209 | // #define BOOTMAGIC_LITE_ROW 0 | 189 | // #define BOOTMAGIC_LITE_ROW 0 |
210 | // #define BOOTMAGIC_LITE_COLUMN 0 | 190 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/gray_studio/space65/rules.mk b/keyboards/gray_studio/space65/rules.mk index 916b15a7c..fc1a8c720 100644 --- a/keyboards/gray_studio/space65/rules.mk +++ b/keyboards/gray_studio/space65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gray_studio/think65/hotswap/rules.mk b/keyboards/gray_studio/think65/hotswap/rules.mk index 28eb6064e..80af8f188 100644 --- a/keyboards/gray_studio/think65/hotswap/rules.mk +++ b/keyboards/gray_studio/think65/hotswap/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/gray_studio/think65/solder/rules.mk b/keyboards/gray_studio/think65/solder/rules.mk index 28eb6064e..80af8f188 100644 --- a/keyboards/gray_studio/think65/solder/rules.mk +++ b/keyboards/gray_studio/think65/solder/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/grid600/press/rules.mk b/keyboards/grid600/press/rules.mk index a7116ee2e..2cd2c256a 100644 --- a/keyboards/grid600/press/rules.mk +++ b/keyboards/grid600/press/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hadron/ver2/rules.mk b/keyboards/hadron/ver2/rules.mk index 346341235..280145ed8 100644 --- a/keyboards/hadron/ver2/rules.mk +++ b/keyboards/hadron/ver2/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/hadron/ver3/config.h b/keyboards/hadron/ver3/config.h index 8c04575ee..574dc6b01 100644 --- a/keyboards/hadron/ver3/config.h +++ b/keyboards/hadron/ver3/config.h | |||
@@ -127,26 +127,6 @@ | |||
127 | //#define NO_ACTION_ONESHOT | 127 | //#define NO_ACTION_ONESHOT |
128 | //#define NO_ACTION_MACRO | 128 | //#define NO_ACTION_MACRO |
129 | //#define NO_ACTION_FUNCTION | 129 | //#define NO_ACTION_FUNCTION |
130 | /* | ||
131 | * MIDI options | ||
132 | */ | ||
133 | |||
134 | /* enable basic MIDI features: | ||
135 | - MIDI notes can be sent when in Music mode is on | ||
136 | */ | ||
137 | |||
138 | #define MIDI_BASIC | ||
139 | |||
140 | /* enable advanced MIDI features: | ||
141 | - MIDI notes can be added to the keymap | ||
142 | - Octave shift and transpose | ||
143 | - Virtual sustain, portamento, and modulation wheel | ||
144 | - etc. | ||
145 | */ | ||
146 | //#define MIDI_ADVANCED | ||
147 | |||
148 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
149 | //#define MIDI_TONE_KEYCODE_OCTAVES 2 | ||
150 | 130 | ||
151 | /* Haptic Driver initialization settings | 131 | /* Haptic Driver initialization settings |
152 | * Feedback Control Settings */ | 132 | * Feedback Control Settings */ |
diff --git a/keyboards/halberd/config.h b/keyboards/halberd/config.h index d21e9bb52..f56b99d2c 100644 --- a/keyboards/halberd/config.h +++ b/keyboards/halberd/config.h | |||
@@ -164,26 +164,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
164 | //#define NO_ACTION_MACRO | 164 | //#define NO_ACTION_MACRO |
165 | //#define NO_ACTION_FUNCTION | 165 | //#define NO_ACTION_FUNCTION |
166 | 166 | ||
167 | /* | ||
168 | * MIDI options | ||
169 | */ | ||
170 | |||
171 | /* enable basic MIDI features: | ||
172 | - MIDI notes can be sent when in Music mode is on | ||
173 | */ | ||
174 | //#define MIDI_BASIC | ||
175 | |||
176 | /* enable advanced MIDI features: | ||
177 | - MIDI notes can be added to the keymap | ||
178 | - Octave shift and transpose | ||
179 | - Virtual sustain, portamento, and modulation wheel | ||
180 | - etc. | ||
181 | */ | ||
182 | //#define MIDI_ADVANCED | ||
183 | |||
184 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
185 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
186 | |||
187 | /* Bootmagic Lite key configuration */ | 167 | /* Bootmagic Lite key configuration */ |
188 | // #define BOOTMAGIC_LITE_ROW 0 | 168 | // #define BOOTMAGIC_LITE_ROW 0 |
189 | // #define BOOTMAGIC_LITE_COLUMN 0 | 169 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/halberd/rules.mk b/keyboards/halberd/rules.mk index 4940e8d5b..35b1a6d97 100644 --- a/keyboards/halberd/rules.mk +++ b/keyboards/halberd/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/108key_trackpoint/rules.mk b/keyboards/handwired/108key_trackpoint/rules.mk index 707cf5f97..8bd357d2c 100644 --- a/keyboards/handwired/108key_trackpoint/rules.mk +++ b/keyboards/handwired/108key_trackpoint/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/412_64/config.h b/keyboards/handwired/412_64/config.h index 542a77e75..e0336d966 100644 --- a/keyboards/handwired/412_64/config.h +++ b/keyboards/handwired/412_64/config.h | |||
@@ -141,23 +141,3 @@ | |||
141 | //#define NO_ACTION_MACRO | 141 | //#define NO_ACTION_MACRO |
142 | //#define NO_ACTION_FUNCTION | 142 | //#define NO_ACTION_FUNCTION |
143 | 143 | ||
144 | /* | ||
145 | * MIDI options | ||
146 | */ | ||
147 | |||
148 | /* enable basic MIDI features: | ||
149 | - MIDI notes can be sent when in Music mode is on | ||
150 | */ | ||
151 | //#define MIDI_BASIC | ||
152 | |||
153 | /* enable advanced MIDI features: | ||
154 | - MIDI notes can be added to the keymap | ||
155 | - Octave shift and transpose | ||
156 | - Virtual sustain, portamento, and modulation wheel | ||
157 | - etc. | ||
158 | */ | ||
159 | //#define MIDI_ADVANCED | ||
160 | |||
161 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
162 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
163 | |||
diff --git a/keyboards/handwired/412_64/rules.mk b/keyboards/handwired/412_64/rules.mk index 06e8b88c2..0e9499741 100644 --- a/keyboards/handwired/412_64/rules.mk +++ b/keyboards/handwired/412_64/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/42/rules.mk b/keyboards/handwired/42/rules.mk index 7a2907520..2664e648c 100644 --- a/keyboards/handwired/42/rules.mk +++ b/keyboards/handwired/42/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = yes # USB Nkey Rollover | 28 | NKRO_ENABLE = yes # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
33 | 32 | ||
34 | UNICODE_ENABLE = no # Unicode | 33 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/handwired/aplx2/rules.mk b/keyboards/handwired/aplx2/rules.mk index f6769c269..9dce5675a 100644 --- a/keyboards/handwired/aplx2/rules.mk +++ b/keyboards/handwired/aplx2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/handwired/aranck/config.h b/keyboards/handwired/aranck/config.h index 7d0ab25fe..625df566f 100644 --- a/keyboards/handwired/aranck/config.h +++ b/keyboards/handwired/aranck/config.h | |||
@@ -205,26 +205,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
205 | //#define NO_ACTION_MACRO | 205 | //#define NO_ACTION_MACRO |
206 | //#define NO_ACTION_FUNCTION | 206 | //#define NO_ACTION_FUNCTION |
207 | 207 | ||
208 | /* | ||
209 | * MIDI options | ||
210 | */ | ||
211 | |||
212 | /* enable basic MIDI features: | ||
213 | - MIDI notes can be sent when in Music mode is on | ||
214 | */ | ||
215 | //#define MIDI_BASIC | ||
216 | |||
217 | /* enable advanced MIDI features: | ||
218 | - MIDI notes can be added to the keymap | ||
219 | - Octave shift and transpose | ||
220 | - Virtual sustain, portamento, and modulation wheel | ||
221 | - etc. | ||
222 | */ | ||
223 | //#define MIDI_ADVANCED | ||
224 | |||
225 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
226 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
227 | |||
228 | /* Bootmagic Lite key configuration */ | 208 | /* Bootmagic Lite key configuration */ |
229 | // #define BOOTMAGIC_LITE_ROW 0 | 209 | // #define BOOTMAGIC_LITE_ROW 0 |
230 | // #define BOOTMAGIC_LITE_COLUMN 0 | 210 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/aranck/rules.mk b/keyboards/handwired/aranck/rules.mk index 36ba3831c..a08e59233 100644 --- a/keyboards/handwired/aranck/rules.mk +++ b/keyboards/handwired/aranck/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = yes # Audio output on port C6 | 30 | AUDIO_ENABLE = yes # Audio output on port C6 |
diff --git a/keyboards/handwired/arrow_pad/rules.mk b/keyboards/handwired/arrow_pad/rules.mk index b628a37af..155c0588b 100644 --- a/keyboards/handwired/arrow_pad/rules.mk +++ b/keyboards/handwired/arrow_pad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | NKRO_ENABLE = yes # USB Nkey Rollover | 26 | NKRO_ENABLE = yes # USB Nkey Rollover |
27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/atreus50/rules.mk b/keyboards/handwired/atreus50/rules.mk index 6c382c06a..eec3a4760 100644 --- a/keyboards/handwired/atreus50/rules.mk +++ b/keyboards/handwired/atreus50/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/bdn9_ble/rules.mk b/keyboards/handwired/bdn9_ble/rules.mk index b14367a64..f16a308d5 100644 --- a/keyboards/handwired/bdn9_ble/rules.mk +++ b/keyboards/handwired/bdn9_ble/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH = AdafruitBLE # Enable Bluetooth | 32 | BLUETOOTH = AdafruitBLE # Enable Bluetooth |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/boss566y/redragon_vara/rules.mk b/keyboards/handwired/boss566y/redragon_vara/rules.mk index fe46794e7..f8434d623 100644 --- a/keyboards/handwired/boss566y/redragon_vara/rules.mk +++ b/keyboards/handwired/boss566y/redragon_vara/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/handwired/brain/rules.mk b/keyboards/handwired/brain/rules.mk index 7ea17c62e..67b61a562 100644 --- a/keyboards/handwired/brain/rules.mk +++ b/keyboards/handwired/brain/rules.mk | |||
@@ -17,7 +17,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
17 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 19 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
20 | MIDI_ENABLE = no # MIDI controls | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
22 | AUDIO_ENABLE = no # Audio output on port C6 | 21 | AUDIO_ENABLE = no # Audio output on port C6 |
23 | 22 | ||
diff --git a/keyboards/handwired/cans12er/rules.mk b/keyboards/handwired/cans12er/rules.mk index f9c51e6c7..222b9d261 100644 --- a/keyboards/handwired/cans12er/rules.mk +++ b/keyboards/handwired/cans12er/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/chiron/rules.mk b/keyboards/handwired/chiron/rules.mk index defeae1d8..e65fb63ca 100644 --- a/keyboards/handwired/chiron/rules.mk +++ b/keyboards/handwired/chiron/rules.mk | |||
@@ -24,7 +24,6 @@ CONSOLE_ENABLE = no | |||
24 | DEBUG_ENABLE = no | 24 | DEBUG_ENABLE = no |
25 | EXTRAKEY_ENABLE = no | 25 | EXTRAKEY_ENABLE = no |
26 | LEADER_ENABLE = no | 26 | LEADER_ENABLE = no |
27 | MIDI_ENABLE = no | ||
28 | MOUSEKEY_ENABLE = yes | 27 | MOUSEKEY_ENABLE = yes |
29 | NKRO_ENABLE = no | 28 | NKRO_ENABLE = no |
30 | RGBLIGHT_ENABLE = yes | 29 | RGBLIGHT_ENABLE = yes |
diff --git a/keyboards/handwired/cmd60/rules.mk b/keyboards/handwired/cmd60/rules.mk index b3aa634d0..77f39e3ce 100644 --- a/keyboards/handwired/cmd60/rules.mk +++ b/keyboards/handwired/cmd60/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/co60/rev1/rules.mk b/keyboards/handwired/co60/rev1/rules.mk index 84499067e..df3b804f9 100644 --- a/keyboards/handwired/co60/rev1/rules.mk +++ b/keyboards/handwired/co60/rev1/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/co60/rev6/rules.mk b/keyboards/handwired/co60/rev6/rules.mk index 853add1f6..17601e67a 100644 --- a/keyboards/handwired/co60/rev6/rules.mk +++ b/keyboards/handwired/co60/rev6/rules.mk | |||
@@ -17,7 +17,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
17 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | AUDIO_ENABLE = no | 18 | AUDIO_ENABLE = no |
19 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality | 19 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality |
20 | MIDI_ENABLE = no # MIDI controls | ||
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | LEADER_ENABLE = yes | 22 | LEADER_ENABLE = yes |
diff --git a/keyboards/handwired/co60/rev7/rules.mk b/keyboards/handwired/co60/rev7/rules.mk index f3bd2a4b8..53a94fe2f 100644 --- a/keyboards/handwired/co60/rev7/rules.mk +++ b/keyboards/handwired/co60/rev7/rules.mk | |||
@@ -20,7 +20,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
20 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 20 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
21 | AUDIO_ENABLE = no | 21 | AUDIO_ENABLE = no |
22 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 22 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | LEADER_ENABLE = yes | 25 | LEADER_ENABLE = yes |
diff --git a/keyboards/handwired/colorlice/rules.mk b/keyboards/handwired/colorlice/rules.mk index e65944e86..e75fe013a 100644 --- a/keyboards/handwired/colorlice/rules.mk +++ b/keyboards/handwired/colorlice/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/dactyl/rules.mk b/keyboards/handwired/dactyl/rules.mk index 10a759277..cb5690ba7 100644 --- a/keyboards/handwired/dactyl/rules.mk +++ b/keyboards/handwired/dactyl/rules.mk | |||
@@ -15,7 +15,6 @@ BOOTLOADER = halfkay | |||
15 | # comment out to disable the options. | 15 | # comment out to disable the options. |
16 | # | 16 | # |
17 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite | 17 | BOOTMAGIC_ENABLE = no # Enable Bootmagic Lite |
18 | MIDI_ENABLE = no # MIDI support (+2400 to 4200) | ||
19 | POINTING_DEVICE_ENABLE = no | 18 | POINTING_DEVICE_ENABLE = no |
20 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) | 19 | MOUSEKEY_ENABLE = no # Mouse keys(+4700) |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) | 20 | EXTRAKEY_ENABLE = yes # Audio control and System control(+450) |
diff --git a/keyboards/handwired/dactyl_left/config.h b/keyboards/handwired/dactyl_left/config.h index bda18f876..4b5f1307f 100644 --- a/keyboards/handwired/dactyl_left/config.h +++ b/keyboards/handwired/dactyl_left/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/dactyl_left/rules.mk b/keyboards/handwired/dactyl_left/rules.mk index 51cb7f80d..0914c2fc8 100644 --- a/keyboards/handwired/dactyl_left/rules.mk +++ b/keyboards/handwired/dactyl_left/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/dactyl_promicro/rules.mk b/keyboards/handwired/dactyl_promicro/rules.mk index 5533ab2d3..e92befce6 100644 --- a/keyboards/handwired/dactyl_promicro/rules.mk +++ b/keyboards/handwired/dactyl_promicro/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/daishi/rules.mk b/keyboards/handwired/daishi/rules.mk index 1a54af8b6..179605a76 100644 --- a/keyboards/handwired/daishi/rules.mk +++ b/keyboards/handwired/daishi/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/datahand/rules.mk b/keyboards/handwired/datahand/rules.mk index 816c09fd8..0fb3a2513 100644 --- a/keyboards/handwired/datahand/rules.mk +++ b/keyboards/handwired/datahand/rules.mk | |||
@@ -19,7 +19,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
19 | COMMAND_ENABLE = yes # Commands for debug and configuration | 19 | COMMAND_ENABLE = yes # Commands for debug and configuration |
20 | NKRO_ENABLE = yes # USB Nkey Rollover | 20 | NKRO_ENABLE = yes # USB Nkey Rollover |
21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/ddg_56/rules.mk b/keyboards/handwired/ddg_56/rules.mk index 38075fdf0..17c7ee57b 100644 --- a/keyboards/handwired/ddg_56/rules.mk +++ b/keyboards/handwired/ddg_56/rules.mk | |||
@@ -16,6 +16,5 @@ CONSOLE_ENABLE = no # Console for debug | |||
16 | COMMAND_ENABLE = no # Commands for debug and configuration | 16 | COMMAND_ENABLE = no # Commands for debug and configuration |
17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
19 | MIDI_ENABLE = no # MIDI controls | ||
20 | AUDIO_ENABLE = yes # Audio output on port C6 | 19 | AUDIO_ENABLE = yes # Audio output on port C6 |
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/handwired/fc200rt_qmk/rules.mk b/keyboards/handwired/fc200rt_qmk/rules.mk index 773f6b1fc..9fe6bd9b8 100644 --- a/keyboards/handwired/fc200rt_qmk/rules.mk +++ b/keyboards/handwired/fc200rt_qmk/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/fivethirteen/rules.mk b/keyboards/handwired/fivethirteen/rules.mk index ba2d97a96..3fcc255ad 100644 --- a/keyboards/handwired/fivethirteen/rules.mk +++ b/keyboards/handwired/fivethirteen/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/floorboard/config.h b/keyboards/handwired/floorboard/config.h index 2ff291234..d53675303 100644 --- a/keyboards/handwired/floorboard/config.h +++ b/keyboards/handwired/floorboard/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/floorboard/rules.mk b/keyboards/handwired/floorboard/rules.mk index cf656156e..f17907fcf 100644 --- a/keyboards/handwired/floorboard/rules.mk +++ b/keyboards/handwired/floorboard/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = no # USB Nkey Rollover | 19 | NKRO_ENABLE = no # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
25 | 24 | ||
diff --git a/keyboards/handwired/frenchdev/rules.mk b/keyboards/handwired/frenchdev/rules.mk index 47971b092..5af8b3b61 100644 --- a/keyboards/handwired/frenchdev/rules.mk +++ b/keyboards/handwired/frenchdev/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | UNICODE_ENABLE = yes # Unicode | 25 | UNICODE_ENABLE = yes # Unicode |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/fruity60/rules.mk b/keyboards/handwired/fruity60/rules.mk index 8bd59eb2d..1d771f61d 100644 --- a/keyboards/handwired/fruity60/rules.mk +++ b/keyboards/handwired/fruity60/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/gamenum/rules.mk b/keyboards/handwired/gamenum/rules.mk index 52cce2992..e8792f8dd 100644 --- a/keyboards/handwired/gamenum/rules.mk +++ b/keyboards/handwired/gamenum/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/hacked_motospeed/config.h b/keyboards/handwired/hacked_motospeed/config.h index 29a0a6dcf..bfa1e220f 100644 --- a/keyboards/handwired/hacked_motospeed/config.h +++ b/keyboards/handwired/hacked_motospeed/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/hacked_motospeed/rules.mk b/keyboards/handwired/hacked_motospeed/rules.mk index bd8d37dec..3ca539b7c 100644 --- a/keyboards/handwired/hacked_motospeed/rules.mk +++ b/keyboards/handwired/hacked_motospeed/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/heisenberg/config.h b/keyboards/handwired/heisenberg/config.h index ba35f24ac..006f1e689 100644 --- a/keyboards/handwired/heisenberg/config.h +++ b/keyboards/handwired/heisenberg/config.h | |||
@@ -205,26 +205,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
205 | //#define NO_ACTION_MACRO | 205 | //#define NO_ACTION_MACRO |
206 | //#define NO_ACTION_FUNCTION | 206 | //#define NO_ACTION_FUNCTION |
207 | 207 | ||
208 | /* | ||
209 | * MIDI options | ||
210 | */ | ||
211 | |||
212 | /* enable basic MIDI features: | ||
213 | - MIDI notes can be sent when in Music mode is on | ||
214 | */ | ||
215 | //#define MIDI_BASIC | ||
216 | |||
217 | /* enable advanced MIDI features: | ||
218 | - MIDI notes can be added to the keymap | ||
219 | - Octave shift and transpose | ||
220 | - Virtual sustain, portamento, and modulation wheel | ||
221 | - etc. | ||
222 | */ | ||
223 | //#define MIDI_ADVANCED | ||
224 | |||
225 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
226 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
227 | |||
228 | /* Bootmagic Lite key configuration */ | 208 | /* Bootmagic Lite key configuration */ |
229 | // #define BOOTMAGIC_LITE_ROW 0 | 209 | // #define BOOTMAGIC_LITE_ROW 0 |
230 | // #define BOOTMAGIC_LITE_COLUMN 0 | 210 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/heisenberg/rules.mk b/keyboards/handwired/heisenberg/rules.mk index f08d835a9..620554d9d 100644 --- a/keyboards/handwired/heisenberg/rules.mk +++ b/keyboards/handwired/heisenberg/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = yes # Audio output on port C6 | 30 | AUDIO_ENABLE = yes # Audio output on port C6 |
diff --git a/keyboards/handwired/hnah40/config.h b/keyboards/handwired/hnah40/config.h index 6bc98a10c..9e314812b 100644 --- a/keyboards/handwired/hnah40/config.h +++ b/keyboards/handwired/hnah40/config.h | |||
@@ -168,23 +168,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
168 | //#define NO_ACTION_MACRO | 168 | //#define NO_ACTION_MACRO |
169 | //#define NO_ACTION_FUNCTION | 169 | //#define NO_ACTION_FUNCTION |
170 | 170 | ||
171 | /* | ||
172 | * MIDI options | ||
173 | */ | ||
174 | |||
175 | /* enable basic MIDI features: | ||
176 | - MIDI notes can be sent when in Music mode is on | ||
177 | */ | ||
178 | //#define MIDI_BASIC | ||
179 | |||
180 | /* enable advanced MIDI features: | ||
181 | - MIDI notes can be added to the keymap | ||
182 | - Octave shift and transpose | ||
183 | - Virtual sustain, portamento, and modulation wheel | ||
184 | - etc. | ||
185 | */ | ||
186 | //#define MIDI_ADVANCED | ||
187 | |||
188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
190 | |||
diff --git a/keyboards/handwired/hnah40/rules.mk b/keyboards/handwired/hnah40/rules.mk index 6bb7e2798..7a88b3fab 100644 --- a/keyboards/handwired/hnah40/rules.mk +++ b/keyboards/handwired/hnah40/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/hnah40rgb/rules.mk b/keyboards/handwired/hnah40rgb/rules.mk index 9e5d0c409..5059216f3 100644 --- a/keyboards/handwired/hnah40rgb/rules.mk +++ b/keyboards/handwired/hnah40rgb/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = no # USB Nkey Rollover | 24 | NKRO_ENABLE = no # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 26 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/ibm122m/config.h b/keyboards/handwired/ibm122m/config.h index bd1fdc97d..903a63e44 100644 --- a/keyboards/handwired/ibm122m/config.h +++ b/keyboards/handwired/ibm122m/config.h | |||
@@ -158,23 +158,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
158 | //#define NO_ACTION_ONESHOT | 158 | //#define NO_ACTION_ONESHOT |
159 | //#define NO_ACTION_MACRO | 159 | //#define NO_ACTION_MACRO |
160 | //#define NO_ACTION_FUNCTION | 160 | //#define NO_ACTION_FUNCTION |
161 | |||
162 | /* | ||
163 | * MIDI options | ||
164 | */ | ||
165 | |||
166 | /* enable basic MIDI features: | ||
167 | - MIDI notes can be sent when in Music mode is on | ||
168 | */ | ||
169 | //#define MIDI_BASIC | ||
170 | |||
171 | /* enable advanced MIDI features: | ||
172 | - MIDI notes can be added to the keymap | ||
173 | - Octave shift and transpose | ||
174 | - Virtual sustain, portamento, and modulation wheel | ||
175 | - etc. | ||
176 | */ | ||
177 | //#define MIDI_ADVANCED | ||
178 | |||
179 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
180 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/handwired/ibm122m/rules.mk b/keyboards/handwired/ibm122m/rules.mk index f812a8fda..866442361 100644 --- a/keyboards/handwired/ibm122m/rules.mk +++ b/keyboards/handwired/ibm122m/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = yes # Audio output on port C6 | 29 | AUDIO_ENABLE = yes # Audio output on port C6 |
diff --git a/keyboards/handwired/jn68m/rules.mk b/keyboards/handwired/jn68m/rules.mk index fae78b1ed..0eb22e174 100644 --- a/keyboards/handwired/jn68m/rules.mk +++ b/keyboards/handwired/jn68m/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/jot50/rules.mk b/keyboards/handwired/jot50/rules.mk index fe7a804e9..7088d3a29 100644 --- a/keyboards/handwired/jot50/rules.mk +++ b/keyboards/handwired/jot50/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/jotanck/rules.mk b/keyboards/handwired/jotanck/rules.mk index bb2766d3b..949eb41b0 100644 --- a/keyboards/handwired/jotanck/rules.mk +++ b/keyboards/handwired/jotanck/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/jotpad16/rules.mk b/keyboards/handwired/jotpad16/rules.mk index 347b8a067..37692a34f 100644 --- a/keyboards/handwired/jotpad16/rules.mk +++ b/keyboards/handwired/jotpad16/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/jtallbean/split_65/config.h b/keyboards/handwired/jtallbean/split_65/config.h index 105e76438..96b9385b4 100644 --- a/keyboards/handwired/jtallbean/split_65/config.h +++ b/keyboards/handwired/jtallbean/split_65/config.h | |||
@@ -197,26 +197,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
197 | #define NO_ACTION_MACRO | 197 | #define NO_ACTION_MACRO |
198 | #define NO_ACTION_FUNCTION | 198 | #define NO_ACTION_FUNCTION |
199 | 199 | ||
200 | /* | ||
201 | * MIDI options | ||
202 | */ | ||
203 | |||
204 | /* enable basic MIDI features: | ||
205 | - MIDI notes can be sent when in Music mode is on | ||
206 | */ | ||
207 | //#define MIDI_BASIC | ||
208 | |||
209 | /* enable advanced MIDI features: | ||
210 | - MIDI notes can be added to the keymap | ||
211 | - Octave shift and transpose | ||
212 | - Virtual sustain, portamento, and modulation wheel | ||
213 | - etc. | ||
214 | */ | ||
215 | //#define MIDI_ADVANCED | ||
216 | |||
217 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
218 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
219 | |||
220 | /* Bootmagic Lite key configuration */ | 200 | /* Bootmagic Lite key configuration */ |
221 | // #define BOOTMAGIC_LITE_ROW 0 | 201 | // #define BOOTMAGIC_LITE_ROW 0 |
222 | // #define BOOTMAGIC_LITE_COLUMN 0 | 202 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/jtallbean/split_65/rules.mk b/keyboards/handwired/jtallbean/split_65/rules.mk index b29d7a62c..898327cbe 100644 --- a/keyboards/handwired/jtallbean/split_65/rules.mk +++ b/keyboards/handwired/jtallbean/split_65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | SPLIT_KEYBOARD = yes # Enable split keyboard support | 30 | SPLIT_KEYBOARD = yes # Enable split keyboard support |
diff --git a/keyboards/handwired/juliet/config.h b/keyboards/handwired/juliet/config.h index 988c578ba..2a2331b21 100644 --- a/keyboards/handwired/juliet/config.h +++ b/keyboards/handwired/juliet/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | 192 | ||
213 | /* Bootmagic Lite key configuration | 193 | /* Bootmagic Lite key configuration |
214 | #define BOOTMAGIC_LITE_ROW 0 | 194 | #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/handwired/juliet/rules.mk b/keyboards/handwired/juliet/rules.mk index 63aedd38b..d9687772c 100644 --- a/keyboards/handwired/juliet/rules.mk +++ b/keyboards/handwired/juliet/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/k8split/rules.mk b/keyboards/handwired/k8split/rules.mk index e3f20c12d..c2358a17f 100644 --- a/keyboards/handwired/k8split/rules.mk +++ b/keyboards/handwired/k8split/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/handwired/k_numpad17/rules.mk b/keyboards/handwired/k_numpad17/rules.mk index fe51798a6..e371cbade 100644 --- a/keyboards/handwired/k_numpad17/rules.mk +++ b/keyboards/handwired/k_numpad17/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/kbod/rules.mk b/keyboards/handwired/kbod/rules.mk index dbad8b72e..251ba2954 100644 --- a/keyboards/handwired/kbod/rules.mk +++ b/keyboards/handwired/kbod/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/lovelive9/rules.mk b/keyboards/handwired/lovelive9/rules.mk index c8bc9b227..88b50bf3f 100644 --- a/keyboards/handwired/lovelive9/rules.mk +++ b/keyboards/handwired/lovelive9/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 27 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
diff --git a/keyboards/handwired/magicforce61/rules.mk b/keyboards/handwired/magicforce61/rules.mk index 4c481ebac..ece324277 100644 --- a/keyboards/handwired/magicforce61/rules.mk +++ b/keyboards/handwired/magicforce61/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/magicforce68/rules.mk b/keyboards/handwired/magicforce68/rules.mk index 52cce2992..e8792f8dd 100644 --- a/keyboards/handwired/magicforce68/rules.mk +++ b/keyboards/handwired/magicforce68/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/mechboards_micropad/config.h b/keyboards/handwired/mechboards_micropad/config.h index 7006f50c0..fbeb07ab6 100644 --- a/keyboards/handwired/mechboards_micropad/config.h +++ b/keyboards/handwired/mechboards_micropad/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/mechboards_micropad/rules.mk b/keyboards/handwired/mechboards_micropad/rules.mk index bad7c1dbe..0417abe59 100644 --- a/keyboards/handwired/mechboards_micropad/rules.mk +++ b/keyboards/handwired/mechboards_micropad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/minorca/rules.mk b/keyboards/handwired/minorca/rules.mk index 3b414f203..d80e89a6d 100644 --- a/keyboards/handwired/minorca/rules.mk +++ b/keyboards/handwired/minorca/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight | 27 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/handwired/ms_sculpt_mobile/rules.mk b/keyboards/handwired/ms_sculpt_mobile/rules.mk index 1b65f3953..b9fea8336 100644 --- a/keyboards/handwired/ms_sculpt_mobile/rules.mk +++ b/keyboards/handwired/ms_sculpt_mobile/rules.mk | |||
@@ -32,7 +32,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
32 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 32 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
33 | NKRO_ENABLE = no # USB Nkey Rollover | 33 | NKRO_ENABLE = no # USB Nkey Rollover |
34 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 34 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
35 | MIDI_ENABLE = no # MIDI controls | ||
36 | UNICODE_ENABLE = no # Unicode | 35 | UNICODE_ENABLE = no # Unicode |
37 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 36 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
38 | AUDIO_ENABLE = no # Audio output on port C6 | 37 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/myskeeb/rules.mk b/keyboards/handwired/myskeeb/rules.mk index 93147f92a..ff66c930f 100644 --- a/keyboards/handwired/myskeeb/rules.mk +++ b/keyboards/handwired/myskeeb/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | NKRO_ENABLE = yes # USB Nkey Rollover | 24 | NKRO_ENABLE = yes # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. | 26 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/handwired/not_so_minidox/rules.mk b/keyboards/handwired/not_so_minidox/rules.mk index 22a9ead90..2cadc2210 100644 --- a/keyboards/handwired/not_so_minidox/rules.mk +++ b/keyboards/handwired/not_so_minidox/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/novem/rules.mk b/keyboards/handwired/novem/rules.mk index 7e50ba0e5..5b47ff97f 100644 --- a/keyboards/handwired/novem/rules.mk +++ b/keyboards/handwired/novem/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/numpad20/rules.mk b/keyboards/handwired/numpad20/rules.mk index b3aa634d0..77f39e3ce 100644 --- a/keyboards/handwired/numpad20/rules.mk +++ b/keyboards/handwired/numpad20/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/obuwunkunubi/spaget/rules.mk b/keyboards/handwired/obuwunkunubi/spaget/rules.mk index ca25d6d81..01fb7956a 100644 --- a/keyboards/handwired/obuwunkunubi/spaget/rules.mk +++ b/keyboards/handwired/obuwunkunubi/spaget/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/ortho5x13/rules.mk b/keyboards/handwired/ortho5x13/rules.mk index b3aa634d0..77f39e3ce 100644 --- a/keyboards/handwired/ortho5x13/rules.mk +++ b/keyboards/handwired/ortho5x13/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/owlet60/config.h b/keyboards/handwired/owlet60/config.h index 27317233e..ef1e410d1 100644 --- a/keyboards/handwired/owlet60/config.h +++ b/keyboards/handwired/owlet60/config.h | |||
@@ -193,26 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | //#define NO_ACTION_MACRO | 193 | //#define NO_ACTION_MACRO |
194 | //#define NO_ACTION_FUNCTION | 194 | //#define NO_ACTION_FUNCTION |
195 | 195 | ||
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | |||
216 | /* Bootmagic Lite key configuration */ | 196 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 197 | // #define BOOTMAGIC_LITE_ROW 0 |
218 | // #define BOOTMAGIC_LITE_COLUMN 0 | 198 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/owlet60/rules.mk b/keyboards/handwired/owlet60/rules.mk index f9a55177c..7ccd3cfef 100644 --- a/keyboards/handwired/owlet60/rules.mk +++ b/keyboards/handwired/owlet60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/p65rgb/rules.mk b/keyboards/handwired/p65rgb/rules.mk index 002944125..f20ccbcde 100644 --- a/keyboards/handwired/p65rgb/rules.mk +++ b/keyboards/handwired/p65rgb/rules.mk | |||
@@ -20,7 +20,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | RGB_MATRIX_ENABLE = yes | 21 | RGB_MATRIX_ENABLE = yes |
22 | RGB_MATRIX_DRIVER = WS2812 | 22 | RGB_MATRIX_DRIVER = WS2812 |
23 | MIDI_ENABLE = no # MIDI support | ||
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | LTO_ENABLE = yes | 25 | LTO_ENABLE = yes |
diff --git a/keyboards/handwired/pilcrow/rules.mk b/keyboards/handwired/pilcrow/rules.mk index b3aa634d0..77f39e3ce 100644 --- a/keyboards/handwired/pilcrow/rules.mk +++ b/keyboards/handwired/pilcrow/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/postageboard/mini/rules.mk b/keyboards/handwired/postageboard/mini/rules.mk index f97278e2b..ea7c28f80 100644 --- a/keyboards/handwired/postageboard/mini/rules.mk +++ b/keyboards/handwired/postageboard/mini/rules.mk | |||
@@ -22,6 +22,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/postageboard/r1/rules.mk b/keyboards/handwired/postageboard/r1/rules.mk index f97278e2b..ea7c28f80 100644 --- a/keyboards/handwired/postageboard/r1/rules.mk +++ b/keyboards/handwired/postageboard/r1/rules.mk | |||
@@ -22,6 +22,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/prime_exl/rules.mk b/keyboards/handwired/prime_exl/rules.mk index d25f93817..988d681b9 100644 --- a/keyboards/handwired/prime_exl/rules.mk +++ b/keyboards/handwired/prime_exl/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/prime_exl_plus/rules.mk b/keyboards/handwired/prime_exl_plus/rules.mk index 0be0e2b26..7cb0cb0cd 100644 --- a/keyboards/handwired/prime_exl_plus/rules.mk +++ b/keyboards/handwired/prime_exl_plus/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/promethium/rules.mk b/keyboards/handwired/promethium/rules.mk index 4a048701c..3913a12ad 100644 --- a/keyboards/handwired/promethium/rules.mk +++ b/keyboards/handwired/promethium/rules.mk | |||
@@ -25,7 +25,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
25 | COMMAND_ENABLE = no # Commands for debug and configuration | 25 | COMMAND_ENABLE = no # Commands for debug and configuration |
26 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 26 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | UNICODEMAP_ENABLE = yes | 30 | UNICODEMAP_ENABLE = yes |
diff --git a/keyboards/handwired/qc60/rules.mk b/keyboards/handwired/qc60/rules.mk index a9159b5ca..35b3df424 100644 --- a/keyboards/handwired/qc60/rules.mk +++ b/keyboards/handwired/qc60/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/reddot/rules.mk b/keyboards/handwired/reddot/rules.mk index 0e2df4a19..a72249523 100755 --- a/keyboards/handwired/reddot/rules.mk +++ b/keyboards/handwired/reddot/rules.mk | |||
@@ -33,7 +33,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
33 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 33 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
34 | NKRO_ENABLE = no # USB Nkey Rollover | 34 | NKRO_ENABLE = no # USB Nkey Rollover |
35 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 35 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
36 | MIDI_ENABLE = no # MIDI controls | ||
37 | UNICODE_ENABLE = no # Unicode | 36 | UNICODE_ENABLE = no # Unicode |
38 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 37 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
39 | AUDIO_ENABLE = no # Audio output on port C6 | 38 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/retro_refit/rules.mk b/keyboards/handwired/retro_refit/rules.mk index d630a31fa..067f55d2c 100644 --- a/keyboards/handwired/retro_refit/rules.mk +++ b/keyboards/handwired/retro_refit/rules.mk | |||
@@ -24,6 +24,6 @@ KEYBOARD_LOCK_ENABLE = yes # Allow locking of keyboard via magic key | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | # UNICODE_ENABLE = YES # Unicode | 28 | # UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/sick68/config.h b/keyboards/handwired/sick68/config.h index cbce7bfa7..ea7466d23 100644 --- a/keyboards/handwired/sick68/config.h +++ b/keyboards/handwired/sick68/config.h | |||
@@ -196,26 +196,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
196 | #define NO_ACTION_MACRO | 196 | #define NO_ACTION_MACRO |
197 | #define NO_ACTION_FUNCTION | 197 | #define NO_ACTION_FUNCTION |
198 | 198 | ||
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | |||
219 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
221 | // #define BOOTMAGIC_LITE_COLUMN 0 | 201 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/sick68/rules.mk b/keyboards/handwired/sick68/rules.mk index 54b1a8fad..660d8c4bc 100644 --- a/keyboards/handwired/sick68/rules.mk +++ b/keyboards/handwired/sick68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/handwired/slash/rules.mk b/keyboards/handwired/slash/rules.mk index c361e2825..29af1e54d 100644 --- a/keyboards/handwired/slash/rules.mk +++ b/keyboards/handwired/slash/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | #BLUETOOTH_ENABLE = Yes # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | #BLUETOOTH_ENABLE = Yes # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | BLUETOOTH = AdafruitBLE | 33 | BLUETOOTH = AdafruitBLE |
diff --git a/keyboards/handwired/splittest/rules.mk b/keyboards/handwired/splittest/rules.mk index 0583e38bb..22df34eea 100644 --- a/keyboards/handwired/splittest/rules.mk +++ b/keyboards/handwired/splittest/rules.mk | |||
@@ -9,7 +9,6 @@ CONSOLE_ENABLE = no # Console for debug(+400) | |||
9 | COMMAND_ENABLE = yes # Commands for debug and configuration | 9 | COMMAND_ENABLE = yes # Commands for debug and configuration |
10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
11 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 11 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
12 | MIDI_ENABLE = no # MIDI controls | ||
13 | AUDIO_ENABLE = no # Audio output on port C6 | 12 | AUDIO_ENABLE = no # Audio output on port C6 |
14 | UNICODE_ENABLE = no # Unicode | 13 | UNICODE_ENABLE = no # Unicode |
15 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/steamvan/rev1/rules.mk b/keyboards/handwired/steamvan/rev1/rules.mk index 7fce48252..e0ddc06f5 100644 --- a/keyboards/handwired/steamvan/rev1/rules.mk +++ b/keyboards/handwired/steamvan/rev1/rules.mk | |||
@@ -20,7 +20,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
20 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 20 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
21 | AUDIO_ENABLE = no | 21 | AUDIO_ENABLE = no |
22 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 22 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | LEADER_ENABLE = yes | 25 | LEADER_ENABLE = yes |
diff --git a/keyboards/handwired/sticc14/config.h b/keyboards/handwired/sticc14/config.h index effec0467..fbe420b57 100644 --- a/keyboards/handwired/sticc14/config.h +++ b/keyboards/handwired/sticc14/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
217 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/sticc14/rules.mk b/keyboards/handwired/sticc14/rules.mk index 73cfe9b6d..8973a9b39 100644 --- a/keyboards/handwired/sticc14/rules.mk +++ b/keyboards/handwired/sticc14/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/swiftrax/cowfish/rules.mk b/keyboards/handwired/swiftrax/cowfish/rules.mk index 14aeff435..1b98d920d 100644 --- a/keyboards/handwired/swiftrax/cowfish/rules.mk +++ b/keyboards/handwired/swiftrax/cowfish/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/handwired/symmetry60/rules.mk b/keyboards/handwired/symmetry60/rules.mk index e0258dbac..e5485b508 100644 --- a/keyboards/handwired/symmetry60/rules.mk +++ b/keyboards/handwired/symmetry60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/tennie/config.h b/keyboards/handwired/tennie/config.h index 90e9b720e..fee1258df 100644 --- a/keyboards/handwired/tennie/config.h +++ b/keyboards/handwired/tennie/config.h | |||
@@ -183,26 +183,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
183 | //#define NO_ACTION_MACRO | 183 | //#define NO_ACTION_MACRO |
184 | //#define NO_ACTION_FUNCTION | 184 | //#define NO_ACTION_FUNCTION |
185 | 185 | ||
186 | /* | ||
187 | * MIDI options | ||
188 | */ | ||
189 | |||
190 | /* enable basic MIDI features: | ||
191 | - MIDI notes can be sent when in Music mode is on | ||
192 | */ | ||
193 | //#define MIDI_BASIC | ||
194 | |||
195 | /* enable advanced MIDI features: | ||
196 | - MIDI notes can be added to the keymap | ||
197 | - Octave shift and transpose | ||
198 | - Virtual sustain, portamento, and modulation wheel | ||
199 | - etc. | ||
200 | */ | ||
201 | //#define MIDI_ADVANCED | ||
202 | |||
203 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
204 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
205 | |||
206 | /* Bootmagic Lite key configuration */ | 186 | /* Bootmagic Lite key configuration */ |
207 | //#define BOOTMAGIC_LITE_ROW 0 | 187 | //#define BOOTMAGIC_LITE_ROW 0 |
208 | //#define BOOTMAGIC_LITE_COLUMN 0 | 188 | //#define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/handwired/tennie/rules.mk b/keyboards/handwired/tennie/rules.mk index 38b50d3a5..b1918eecb 100644 --- a/keyboards/handwired/tennie/rules.mk +++ b/keyboards/handwired/tennie/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/terminus_mini/config.h b/keyboards/handwired/terminus_mini/config.h index 25ea22f7a..c31cf7059 100644 --- a/keyboards/handwired/terminus_mini/config.h +++ b/keyboards/handwired/terminus_mini/config.h | |||
@@ -158,24 +158,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
158 | //#define NO_ACTION_MACRO | 158 | //#define NO_ACTION_MACRO |
159 | //#define NO_ACTION_FUNCTION | 159 | //#define NO_ACTION_FUNCTION |
160 | 160 | ||
161 | /* | ||
162 | * MIDI options | ||
163 | */ | ||
164 | |||
165 | /* enable basic MIDI features: | ||
166 | - MIDI notes can be sent when in Music mode is on | ||
167 | */ | ||
168 | //#define MIDI_BASIC | ||
169 | |||
170 | /* enable advanced MIDI features: | ||
171 | - MIDI notes can be added to the keymap | ||
172 | - Octave shift and transpose | ||
173 | - Virtual sustain, portamento, and modulation wheel | ||
174 | - etc. | ||
175 | */ | ||
176 | //#define MIDI_ADVANCED | ||
177 | |||
178 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
179 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
180 | |||
181 | #endif | 161 | #endif |
diff --git a/keyboards/handwired/terminus_mini/rules.mk b/keyboards/handwired/terminus_mini/rules.mk index e39dfda85..77046efbd 100644 --- a/keyboards/handwired/terminus_mini/rules.mk +++ b/keyboards/handwired/terminus_mini/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/trackpoint/rules.mk b/keyboards/handwired/trackpoint/rules.mk index 95fc8d0c6..efaffe048 100644 --- a/keyboards/handwired/trackpoint/rules.mk +++ b/keyboards/handwired/trackpoint/rules.mk | |||
@@ -20,7 +20,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
20 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 20 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
21 | NKRO_ENABLE = no # USB Nkey Rollover | 21 | NKRO_ENABLE = no # USB Nkey Rollover |
22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/tritium_numpad/rules.mk b/keyboards/handwired/tritium_numpad/rules.mk index 53eaafbe4..0854ee555 100644 --- a/keyboards/handwired/tritium_numpad/rules.mk +++ b/keyboards/handwired/tritium_numpad/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality (+4870) | 23 | RGBLIGHT_ENABLE = no # Enable keyboard underlight functionality (+4870) |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality (+1150) | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality (+1150) |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/handwired/twadlee/tp69/config.h b/keyboards/handwired/twadlee/tp69/config.h index 0387c7d7e..27c48fb94 100644 --- a/keyboards/handwired/twadlee/tp69/config.h +++ b/keyboards/handwired/twadlee/tp69/config.h | |||
@@ -196,25 +196,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
196 | /* disable these deprecated features by default */ | 196 | /* disable these deprecated features by default */ |
197 | #define NO_ACTION_MACRO | 197 | #define NO_ACTION_MACRO |
198 | #define NO_ACTION_FUNCTION | 198 | #define NO_ACTION_FUNCTION |
199 | /* | ||
200 | * MIDI options | ||
201 | */ | ||
202 | |||
203 | /* enable basic MIDI features: | ||
204 | - MIDI notes can be sent when in Music mode is on | ||
205 | */ | ||
206 | //#define MIDI_BASIC | ||
207 | |||
208 | /* enable advanced MIDI features: | ||
209 | - MIDI notes can be added to the keymap | ||
210 | - Octave shift and transpose | ||
211 | - Virtual sustain, portamento, and modulation wheel | ||
212 | - etc. | ||
213 | */ | ||
214 | //#define MIDI_ADVANCED | ||
215 | |||
216 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
217 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
218 | 199 | ||
219 | /* Bootmagic Lite key configuration */ | 200 | /* Bootmagic Lite key configuration */ |
220 | // #define BOOTMAGIC_LITE_ROW 0 | 201 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/handwired/twadlee/tp69/rules.mk b/keyboards/handwired/twadlee/tp69/rules.mk index a54d66d63..e393238a0 100644 --- a/keyboards/handwired/twadlee/tp69/rules.mk +++ b/keyboards/handwired/twadlee/tp69/rules.mk | |||
@@ -15,7 +15,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
15 | NKRO_ENABLE = no # USB Nkey Rollover | 15 | NKRO_ENABLE = no # USB Nkey Rollover |
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
18 | MIDI_ENABLE = no # MIDI support | ||
19 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 18 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
20 | AUDIO_ENABLE = no # Audio output on port C6 | 19 | AUDIO_ENABLE = no # Audio output on port C6 |
21 | PS2_MOUSE_ENABLE = no | 20 | PS2_MOUSE_ENABLE = no |
diff --git a/keyboards/handwired/unk/rules.mk b/keyboards/handwired/unk/rules.mk index e36bdae9b..7ce16d550 100644 --- a/keyboards/handwired/unk/rules.mk +++ b/keyboards/handwired/unk/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
31 | 30 | ||
diff --git a/keyboards/handwired/videowriter/rules.mk b/keyboards/handwired/videowriter/rules.mk index f7a79d011..fa8e52186 100644 --- a/keyboards/handwired/videowriter/rules.mk +++ b/keyboards/handwired/videowriter/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/handwired/wulkan/rules.mk b/keyboards/handwired/wulkan/rules.mk index 20d720b71..a5fed9a51 100644 --- a/keyboards/handwired/wulkan/rules.mk +++ b/keyboards/handwired/wulkan/rules.mk | |||
@@ -18,7 +18,6 @@ NKRO_ENABLE = yes # USB Nkey Rollover | |||
18 | AUDIO_ENABLE = no | 18 | AUDIO_ENABLE = no |
19 | RGBLIGHT_ENABLE = no | 19 | RGBLIGHT_ENABLE = no |
20 | LAYOUTS = ortho_4x12 | 20 | LAYOUTS = ortho_4x12 |
21 | MIDI_ENABLE = no # MIDI support (+2400 to 4200, depending on config) | ||
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | NO_SUSPEND_POWER_DOWN = yes | 23 | NO_SUSPEND_POWER_DOWN = yes |
diff --git a/keyboards/handwired/xealous/rules.mk b/keyboards/handwired/xealous/rules.mk index 55384f308..4aeb76922 100644 --- a/keyboards/handwired/xealous/rules.mk +++ b/keyboards/handwired/xealous/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug(+400) | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = yes # Audio output on port C6 | 25 | AUDIO_ENABLE = yes # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/hecomi/alpha/config.h b/keyboards/hecomi/alpha/config.h index cdb06f66f..1fd634a3c 100644 --- a/keyboards/hecomi/alpha/config.h +++ b/keyboards/hecomi/alpha/config.h | |||
@@ -183,26 +183,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
183 | //#define NO_ACTION_MACRO | 183 | //#define NO_ACTION_MACRO |
184 | //#define NO_ACTION_FUNCTION | 184 | //#define NO_ACTION_FUNCTION |
185 | 185 | ||
186 | /* | ||
187 | * MIDI options | ||
188 | */ | ||
189 | |||
190 | /* enable basic MIDI features: | ||
191 | - MIDI notes can be sent when in Music mode is on | ||
192 | */ | ||
193 | //#define MIDI_BASIC | ||
194 | |||
195 | /* enable advanced MIDI features: | ||
196 | - MIDI notes can be added to the keymap | ||
197 | - Octave shift and transpose | ||
198 | - Virtual sustain, portamento, and modulation wheel | ||
199 | - etc. | ||
200 | */ | ||
201 | //#define MIDI_ADVANCED | ||
202 | |||
203 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
204 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
205 | |||
206 | /* Bootmagic Lite key configuration */ | 186 | /* Bootmagic Lite key configuration */ |
207 | // #define BOOTMAGIC_LITE_ROW 0 | 187 | // #define BOOTMAGIC_LITE_ROW 0 |
208 | // #define BOOTMAGIC_LITE_COLUMN 0 | 188 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/hecomi/alpha/rules.mk b/keyboards/hecomi/alpha/rules.mk index b99a6888e..aa424cf46 100644 --- a/keyboards/hecomi/alpha/rules.mk +++ b/keyboards/hecomi/alpha/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hecomi/rules.mk b/keyboards/hecomi/rules.mk index 4c6ce9058..abd4a8553 100644 --- a/keyboards/hecomi/rules.mk +++ b/keyboards/hecomi/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/heliar/wm1_hotswap/rules.mk b/keyboards/heliar/wm1_hotswap/rules.mk index bb89e9b2b..fd7bab90a 100644 --- a/keyboards/heliar/wm1_hotswap/rules.mk +++ b/keyboards/heliar/wm1_hotswap/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/helix/rev3_4rows/config.h b/keyboards/helix/rev3_4rows/config.h index 95eb8bf0c..aa9e1d6dc 100644 --- a/keyboards/helix/rev3_4rows/config.h +++ b/keyboards/helix/rev3_4rows/config.h | |||
@@ -218,26 +218,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
218 | #define NO_ACTION_MACRO | 218 | #define NO_ACTION_MACRO |
219 | #define NO_ACTION_FUNCTION | 219 | #define NO_ACTION_FUNCTION |
220 | 220 | ||
221 | /* | ||
222 | * MIDI options | ||
223 | */ | ||
224 | |||
225 | /* enable basic MIDI features: | ||
226 | - MIDI notes can be sent when in Music mode is on | ||
227 | */ | ||
228 | //#define MIDI_BASIC | ||
229 | |||
230 | /* enable advanced MIDI features: | ||
231 | - MIDI notes can be added to the keymap | ||
232 | - Octave shift and transpose | ||
233 | - Virtual sustain, portamento, and modulation wheel | ||
234 | - etc. | ||
235 | */ | ||
236 | //#define MIDI_ADVANCED | ||
237 | |||
238 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
239 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
240 | |||
241 | /* Bootmagic Lite key configuration */ | 221 | /* Bootmagic Lite key configuration */ |
242 | // #define BOOTMAGIC_LITE_ROW 0 | 222 | // #define BOOTMAGIC_LITE_ROW 0 |
243 | // #define BOOTMAGIC_LITE_COLUMN 0 | 223 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/helix/rev3_5rows/config.h b/keyboards/helix/rev3_5rows/config.h index a373de7d1..ebe1e41c8 100644 --- a/keyboards/helix/rev3_5rows/config.h +++ b/keyboards/helix/rev3_5rows/config.h | |||
@@ -218,26 +218,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
218 | #define NO_ACTION_MACRO | 218 | #define NO_ACTION_MACRO |
219 | #define NO_ACTION_FUNCTION | 219 | #define NO_ACTION_FUNCTION |
220 | 220 | ||
221 | /* | ||
222 | * MIDI options | ||
223 | */ | ||
224 | |||
225 | /* enable basic MIDI features: | ||
226 | - MIDI notes can be sent when in Music mode is on | ||
227 | */ | ||
228 | //#define MIDI_BASIC | ||
229 | |||
230 | /* enable advanced MIDI features: | ||
231 | - MIDI notes can be added to the keymap | ||
232 | - Octave shift and transpose | ||
233 | - Virtual sustain, portamento, and modulation wheel | ||
234 | - etc. | ||
235 | */ | ||
236 | //#define MIDI_ADVANCED | ||
237 | |||
238 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
239 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
240 | |||
241 | /* Bootmagic Lite key configuration */ | 221 | /* Bootmagic Lite key configuration */ |
242 | // #define BOOTMAGIC_LITE_ROW 0 | 222 | // #define BOOTMAGIC_LITE_ROW 0 |
243 | // #define BOOTMAGIC_LITE_COLUMN 0 | 223 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/helix/rules.mk b/keyboards/helix/rules.mk index 68ee756da..ef12cb305 100644 --- a/keyboards/helix/rules.mk +++ b/keyboards/helix/rules.mk | |||
@@ -24,7 +24,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
24 | COMMAND_ENABLE = no # Commands for debug and configuration | 24 | COMMAND_ENABLE = no # Commands for debug and configuration |
25 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/hhkb/ansi/rules.mk b/keyboards/hhkb/ansi/rules.mk index 6eedc149d..56c7fd771 100644 --- a/keyboards/hhkb/ansi/rules.mk +++ b/keyboards/hhkb/ansi/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Custom matrix file for the HHKB | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = yes # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | # UNICODE_ENABLE = yes # Unicode | 28 | # UNICODE_ENABLE = yes # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/hhkb/jp/rules.mk b/keyboards/hhkb/jp/rules.mk index 36de7bc22..1902cf432 100644 --- a/keyboards/hhkb/jp/rules.mk +++ b/keyboards/hhkb/jp/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Custom matrix file for the HHKB | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | # NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = yes # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | # UNICODE_ENABLE = yes # Unicode | 28 | # UNICODE_ENABLE = yes # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/hid_liber/config.h b/keyboards/hid_liber/config.h index e0f92dee8..73ed005b7 100755 --- a/keyboards/hid_liber/config.h +++ b/keyboards/hid_liber/config.h | |||
@@ -140,24 +140,4 @@ | |||
140 | //#define NO_ACTION_MACRO | 140 | //#define NO_ACTION_MACRO |
141 | //#define NO_ACTION_FUNCTION | 141 | //#define NO_ACTION_FUNCTION |
142 | 142 | ||
143 | /* | ||
144 | * MIDI options | ||
145 | */ | ||
146 | |||
147 | /* enable basic MIDI features: | ||
148 | - MIDI notes can be sent when in Music mode is on | ||
149 | */ | ||
150 | //#define MIDI_BASIC | ||
151 | |||
152 | /* enable advanced MIDI features: | ||
153 | - MIDI notes can be added to the keymap | ||
154 | - Octave shift and transpose | ||
155 | - Virtual sustain, portamento, and modulation wheel | ||
156 | - etc. | ||
157 | */ | ||
158 | //#define MIDI_ADVANCED | ||
159 | |||
160 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
161 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
162 | |||
163 | #endif | 143 | #endif |
diff --git a/keyboards/hid_liber/rules.mk b/keyboards/hid_liber/rules.mk index 1855eab72..118d1fe9b 100755 --- a/keyboards/hid_liber/rules.mk +++ b/keyboards/hid_liber/rules.mk | |||
@@ -26,7 +26,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
26 | NKRO_ENABLE = yes # USB Nkey Rollover | 26 | NKRO_ENABLE = yes # USB Nkey Rollover |
27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
28 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 28 | RGBLIGHT_ENABLE = no # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hifumi/rules.mk b/keyboards/hifumi/rules.mk index ab54e1a9a..8c0146e7a 100644 --- a/keyboards/hifumi/rules.mk +++ b/keyboards/hifumi/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/hineybush/h10/rules.mk b/keyboards/hineybush/h10/rules.mk index 1efafeac4..fd5c198a7 100644 --- a/keyboards/hineybush/h10/rules.mk +++ b/keyboards/hineybush/h10/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
24 | 23 | ||
diff --git a/keyboards/hineybush/h60/rules.mk b/keyboards/hineybush/h60/rules.mk index fb37e65c7..cd766bcd4 100644 --- a/keyboards/hineybush/h60/rules.mk +++ b/keyboards/hineybush/h60/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
24 | 23 | ||
diff --git a/keyboards/hineybush/h75_singa/config.h b/keyboards/hineybush/h75_singa/config.h index c2b3f65a8..f20c07f80 100644 --- a/keyboards/hineybush/h75_singa/config.h +++ b/keyboards/hineybush/h75_singa/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/hineybush/h75_singa/rules.mk b/keyboards/hineybush/h75_singa/rules.mk index e6cac31db..76705259a 100644 --- a/keyboards/hineybush/h75_singa/rules.mk +++ b/keyboards/hineybush/h75_singa/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/h87a/rules.mk b/keyboards/hineybush/h87a/rules.mk index d4d776fdd..10fd20ad7 100644 --- a/keyboards/hineybush/h87a/rules.mk +++ b/keyboards/hineybush/h87a/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/h88/rules.mk b/keyboards/hineybush/h88/rules.mk index b93bb8562..917aa0bfa 100644 --- a/keyboards/hineybush/h88/rules.mk +++ b/keyboards/hineybush/h88/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/hbcp/rules.mk b/keyboards/hineybush/hbcp/rules.mk index 30cb80cf1..1405a1d49 100644 --- a/keyboards/hineybush/hbcp/rules.mk +++ b/keyboards/hineybush/hbcp/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/hineyg80/rules.mk b/keyboards/hineybush/hineyg80/rules.mk index e0192c117..6e747adc4 100644 --- a/keyboards/hineybush/hineyg80/rules.mk +++ b/keyboards/hineybush/hineyg80/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/physix/config.h b/keyboards/hineybush/physix/config.h index 57544e197..4c5879b08 100644 --- a/keyboards/hineybush/physix/config.h +++ b/keyboards/hineybush/physix/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/hineybush/physix/rules.mk b/keyboards/hineybush/physix/rules.mk index 7d7027fa8..5d8ebe07f 100644 --- a/keyboards/hineybush/physix/rules.mk +++ b/keyboards/hineybush/physix/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/hineybush/sm68/config.h b/keyboards/hineybush/sm68/config.h index b9cca329c..344def6eb 100644 --- a/keyboards/hineybush/sm68/config.h +++ b/keyboards/hineybush/sm68/config.h | |||
@@ -184,26 +184,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
184 | //#define NO_ACTION_MACRO | 184 | //#define NO_ACTION_MACRO |
185 | //#define NO_ACTION_FUNCTION | 185 | //#define NO_ACTION_FUNCTION |
186 | 186 | ||
187 | /* | ||
188 | * MIDI options | ||
189 | */ | ||
190 | |||
191 | /* enable basic MIDI features: | ||
192 | - MIDI notes can be sent when in Music mode is on | ||
193 | */ | ||
194 | //#define MIDI_BASIC | ||
195 | |||
196 | /* enable advanced MIDI features: | ||
197 | - MIDI notes can be added to the keymap | ||
198 | - Octave shift and transpose | ||
199 | - Virtual sustain, portamento, and modulation wheel | ||
200 | - etc. | ||
201 | */ | ||
202 | //#define MIDI_ADVANCED | ||
203 | |||
204 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
205 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
206 | |||
207 | /* Bootmagic Lite key configuration */ | 187 | /* Bootmagic Lite key configuration */ |
208 | // #define BOOTMAGIC_LITE_ROW 0 | 188 | // #define BOOTMAGIC_LITE_ROW 0 |
209 | // #define BOOTMAGIC_LITE_COLUMN 0 | 189 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/hineybush/sm68/rules.mk b/keyboards/hineybush/sm68/rules.mk index cd5371a41..54bb816fc 100644 --- a/keyboards/hineybush/sm68/rules.mk +++ b/keyboards/hineybush/sm68/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/honeycomb/rules.mk b/keyboards/honeycomb/rules.mk index 18463c53e..fe5ed813e 100755 --- a/keyboards/honeycomb/rules.mk +++ b/keyboards/honeycomb/rules.mk | |||
@@ -25,7 +25,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
25 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 25 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
26 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 26 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
27 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 27 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
28 | # MIDI_ENABLE = YES # MIDI controls | 28 | MIDI_ENABLE = no # MIDI support |
29 | UNICODE_ENABLE = YES # Unicode | 29 | UNICODE_ENABLE = YES # Unicode |
30 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | 31 | ||
diff --git a/keyboards/hotdox/rules.mk b/keyboards/hotdox/rules.mk index f289836c2..c180f985a 100644 --- a/keyboards/hotdox/rules.mk +++ b/keyboards/hotdox/rules.mk | |||
@@ -27,7 +27,6 @@ USB_6KRO_ENABLE = no # USB 6key Rollover | |||
27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
28 | SWAP_HANDS_ENABLE = no # Disable Onehand | 28 | SWAP_HANDS_ENABLE = no # Disable Onehand |
29 | RGBLIGHT_ENABLE = no | 29 | RGBLIGHT_ENABLE = no |
30 | MIDI_ENABLE = no | ||
31 | 30 | ||
32 | # project specific files | 31 | # project specific files |
33 | SRC = matrix.c \ | 32 | SRC = matrix.c \ |
diff --git a/keyboards/hs60/v1/rules.mk b/keyboards/hs60/v1/rules.mk index bc40d4cb3..0cba72e57 100644 --- a/keyboards/hs60/v1/rules.mk +++ b/keyboards/hs60/v1/rules.mk | |||
@@ -29,7 +29,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
30 | NKRO_ENABLE = yes # USB Nkey Rollover | 30 | NKRO_ENABLE = yes # USB Nkey Rollover |
31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
32 | MIDI_ENABLE = no # MIDI support | ||
33 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
34 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
35 | AUDIO_ENABLE = no # Audio output on port C6 | 34 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/id80/rules.mk b/keyboards/id80/rules.mk index 92bf08cf7..c03f367ea 100644 --- a/keyboards/id80/rules.mk +++ b/keyboards/id80/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = yes # USB Nkey Rollover | 28 | NKRO_ENABLE = yes # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/idobo/config.h b/keyboards/idobo/config.h index 00b28f309..7b14613fc 100644 --- a/keyboards/idobo/config.h +++ b/keyboards/idobo/config.h | |||
@@ -165,26 +165,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
188 | /* Bootmagic Lite key configuration */ | 168 | /* Bootmagic Lite key configuration */ |
189 | // #define BOOTMAGIC_LITE_ROW 0 | 169 | // #define BOOTMAGIC_LITE_ROW 0 |
190 | // #define BOOTMAGIC_LITE_COLUMN 0 | 170 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/idobo/rules.mk b/keyboards/idobo/rules.mk index 9ddc25656..98d5d265d 100644 --- a/keyboards/idobo/rules.mk +++ b/keyboards/idobo/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/illuminati/is0/config.h b/keyboards/illuminati/is0/config.h index eea6dbb1e..24242a75b 100644 --- a/keyboards/illuminati/is0/config.h +++ b/keyboards/illuminati/is0/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/illuminati/is0/rules.mk b/keyboards/illuminati/is0/rules.mk index 922af400b..37a9928eb 100644 --- a/keyboards/illuminati/is0/rules.mk +++ b/keyboards/illuminati/is0/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ivy/rules.mk b/keyboards/ivy/rules.mk index e80cfbadd..85a7b65a2 100644 --- a/keyboards/ivy/rules.mk +++ b/keyboards/ivy/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/jae/j01/config.h b/keyboards/jae/j01/config.h index db40ee5c2..e2282a37b 100644 --- a/keyboards/jae/j01/config.h +++ b/keyboards/jae/j01/config.h | |||
@@ -167,26 +167,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
167 | #define NO_ACTION_MACRO | 167 | #define NO_ACTION_MACRO |
168 | #define NO_ACTION_FUNCTION | 168 | #define NO_ACTION_FUNCTION |
169 | 169 | ||
170 | /* | ||
171 | * MIDI options | ||
172 | */ | ||
173 | |||
174 | /* enable basic MIDI features: | ||
175 | - MIDI notes can be sent when in Music mode is on | ||
176 | */ | ||
177 | //#define MIDI_BASIC | ||
178 | |||
179 | /* enable advanced MIDI features: | ||
180 | - MIDI notes can be added to the keymap | ||
181 | - Octave shift and transpose | ||
182 | - Virtual sustain, portamento, and modulation wheel | ||
183 | - etc. | ||
184 | */ | ||
185 | //#define MIDI_ADVANCED | ||
186 | |||
187 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
188 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
189 | |||
190 | /* Bootmagic Lite key configuration */ | 170 | /* Bootmagic Lite key configuration */ |
191 | #define BOOTMAGIC_LITE_ROW 0 | 171 | #define BOOTMAGIC_LITE_ROW 0 |
192 | #define BOOTMAGIC_LITE_COLUMN 2 | 172 | #define BOOTMAGIC_LITE_COLUMN 2 |
diff --git a/keyboards/jae/j01/rules.mk b/keyboards/jae/j01/rules.mk index 478b1c2e4..b2811ee40 100644 --- a/keyboards/jae/j01/rules.mk +++ b/keyboards/jae/j01/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/jc65/v32u4/rules.mk b/keyboards/jc65/v32u4/rules.mk index 1b2429cd2..4b23576e3 100644 --- a/keyboards/jc65/v32u4/rules.mk +++ b/keyboards/jc65/v32u4/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes | 27 | RGBLIGHT_ENABLE = yes |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/jd40/rules.mk b/keyboards/jd40/rules.mk index ca40ba78a..954d22b02 100644 --- a/keyboards/jd40/rules.mk +++ b/keyboards/jd40/rules.mk | |||
@@ -24,7 +24,7 @@ KEYBOARD_LOCK_ENABLE = yes # Allow locking of keyboard via magic key | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | # UNICODE_ENABLE = YES # Unicode | 28 | # UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | RGBLIGHT_ENABLE = yes # Enable RGB Underglow | 30 | RGBLIGHT_ENABLE = yes # Enable RGB Underglow |
diff --git a/keyboards/jd45/rules.mk b/keyboards/jd45/rules.mk index 80f12d333..20ec8ca7c 100644 --- a/keyboards/jd45/rules.mk +++ b/keyboards/jd45/rules.mk | |||
@@ -23,6 +23,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
23 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 23 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
24 | # NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 24 | # NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = YES # MIDI controls | 26 | MIDI_ENABLE = yes # MIDI support |
27 | # UNICODE_ENABLE = YES # Unicode | 27 | # UNICODE_ENABLE = YES # Unicode |
28 | BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/jisplit89/rules.mk b/keyboards/jisplit89/rules.mk index c73eb720f..c75f40673 100644 --- a/keyboards/jisplit89/rules.mk +++ b/keyboards/jisplit89/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/jj40/rules.mk b/keyboards/jj40/rules.mk index 43fff9b8d..f288ed8cf 100644 --- a/keyboards/jj40/rules.mk +++ b/keyboards/jj40/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | WS2812_DRIVER = i2c | 28 | WS2812_DRIVER = i2c |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/jj4x4/rules.mk b/keyboards/jj4x4/rules.mk index 0fb9a3e37..83fbd8987 100644 --- a/keyboards/jj4x4/rules.mk +++ b/keyboards/jj4x4/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | WS2812_DRIVER = i2c | 28 | WS2812_DRIVER = i2c |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/jnao/rules.mk b/keyboards/jnao/rules.mk index 84a15fac4..715a32008 100644 --- a/keyboards/jnao/rules.mk +++ b/keyboards/jnao/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/just60/rules.mk b/keyboards/just60/rules.mk index ca848a075..20e26261e 100644 --- a/keyboards/just60/rules.mk +++ b/keyboards/just60/rules.mk | |||
@@ -28,6 +28,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | AUDIO_ENABLE = no # Audio output on port C6 | 32 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kagamidget/config.h b/keyboards/kagamidget/config.h index f073a18e3..4e0c68fa9 100644 --- a/keyboards/kagamidget/config.h +++ b/keyboards/kagamidget/config.h | |||
@@ -160,26 +160,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
160 | //#define NO_ACTION_MACRO | 160 | //#define NO_ACTION_MACRO |
161 | //#define NO_ACTION_FUNCTION | 161 | //#define NO_ACTION_FUNCTION |
162 | 162 | ||
163 | /* | ||
164 | * MIDI options | ||
165 | */ | ||
166 | |||
167 | /* enable basic MIDI features: | ||
168 | - MIDI notes can be sent when in Music mode is on | ||
169 | */ | ||
170 | //#define MIDI_BASIC | ||
171 | |||
172 | /* enable advanced MIDI features: | ||
173 | - MIDI notes can be added to the keymap | ||
174 | - Octave shift and transpose | ||
175 | - Virtual sustain, portamento, and modulation wheel | ||
176 | - etc. | ||
177 | */ | ||
178 | //#define MIDI_ADVANCED | ||
179 | |||
180 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
181 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
182 | |||
183 | /* Bootmagic Lite key configuration */ | 163 | /* Bootmagic Lite key configuration */ |
184 | // #define BOOTMAGIC_LITE_ROW 0 | 164 | // #define BOOTMAGIC_LITE_ROW 0 |
185 | // #define BOOTMAGIC_LITE_COLUMN 0 | 165 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kagamidget/rules.mk b/keyboards/kagamidget/rules.mk index a4225fe0d..e2da0b16e 100644 --- a/keyboards/kagamidget/rules.mk +++ b/keyboards/kagamidget/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdclack/kaishi65/config.h b/keyboards/kbdclack/kaishi65/config.h index dc9d1d51f..794cd54a9 100644 --- a/keyboards/kbdclack/kaishi65/config.h +++ b/keyboards/kbdclack/kaishi65/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdclack/kaishi65/rules.mk b/keyboards/kbdclack/kaishi65/rules.mk index 146b053ec..5af763368 100644 --- a/keyboards/kbdclack/kaishi65/rules.mk +++ b/keyboards/kbdclack/kaishi65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/kbdfans/kbd19x/config.h b/keyboards/kbdfans/kbd19x/config.h index 090beb590..d3549b0aa 100644 --- a/keyboards/kbdfans/kbd19x/config.h +++ b/keyboards/kbdfans/kbd19x/config.h | |||
@@ -171,23 +171,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
171 | //#define NO_ACTION_MACRO | 171 | //#define NO_ACTION_MACRO |
172 | //#define NO_ACTION_FUNCTION | 172 | //#define NO_ACTION_FUNCTION |
173 | 173 | ||
174 | /* | ||
175 | * MIDI options | ||
176 | */ | ||
177 | |||
178 | /* enable basic MIDI features: | ||
179 | - MIDI notes can be sent when in Music mode is on | ||
180 | */ | ||
181 | //#define MIDI_BASIC | ||
182 | |||
183 | /* enable advanced MIDI features: | ||
184 | - MIDI notes can be added to the keymap | ||
185 | - Octave shift and transpose | ||
186 | - Virtual sustain, portamento, and modulation wheel | ||
187 | - etc. | ||
188 | */ | ||
189 | //#define MIDI_ADVANCED | ||
190 | |||
191 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
192 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
193 | |||
diff --git a/keyboards/kbdfans/kbd19x/rules.mk b/keyboards/kbdfans/kbd19x/rules.mk index 2d6d8b2c8..dd2c8f6b7 100644 --- a/keyboards/kbdfans/kbd19x/rules.mk +++ b/keyboards/kbdfans/kbd19x/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd4x/config.h b/keyboards/kbdfans/kbd4x/config.h index 9efffa0b1..5c655278f 100644 --- a/keyboards/kbdfans/kbd4x/config.h +++ b/keyboards/kbdfans/kbd4x/config.h | |||
@@ -166,23 +166,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
166 | //#define NO_ACTION_MACRO | 166 | //#define NO_ACTION_MACRO |
167 | //#define NO_ACTION_FUNCTION | 167 | //#define NO_ACTION_FUNCTION |
168 | 168 | ||
169 | /* | ||
170 | * MIDI options | ||
171 | */ | ||
172 | |||
173 | /* enable basic MIDI features: | ||
174 | - MIDI notes can be sent when in Music mode is on | ||
175 | */ | ||
176 | //#define MIDI_BASIC | ||
177 | |||
178 | /* enable advanced MIDI features: | ||
179 | - MIDI notes can be added to the keymap | ||
180 | - Octave shift and transpose | ||
181 | - Virtual sustain, portamento, and modulation wheel | ||
182 | - etc. | ||
183 | */ | ||
184 | //#define MIDI_ADVANCED | ||
185 | |||
186 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
187 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
188 | |||
diff --git a/keyboards/kbdfans/kbd4x/rules.mk b/keyboards/kbdfans/kbd4x/rules.mk index a40b0b6e7..785653214 100644 --- a/keyboards/kbdfans/kbd4x/rules.mk +++ b/keyboards/kbdfans/kbd4x/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd66/config.h b/keyboards/kbdfans/kbd66/config.h index 8b5be9f0a..15a3b4b81 100644 --- a/keyboards/kbdfans/kbd66/config.h +++ b/keyboards/kbdfans/kbd66/config.h | |||
@@ -156,23 +156,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
156 | //#define NO_ACTION_ONESHOT | 156 | //#define NO_ACTION_ONESHOT |
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | |||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/kbdfans/kbd66/rules.mk b/keyboards/kbdfans/kbd66/rules.mk index 36d6b6a96..1329c8350 100644 --- a/keyboards/kbdfans/kbd66/rules.mk +++ b/keyboards/kbdfans/kbd66/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd67/hotswap/config.h b/keyboards/kbdfans/kbd67/hotswap/config.h index 400b7540c..3bee63332 100644 --- a/keyboards/kbdfans/kbd67/hotswap/config.h +++ b/keyboards/kbdfans/kbd67/hotswap/config.h | |||
@@ -185,26 +185,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
185 | //#define NO_ACTION_MACRO | 185 | //#define NO_ACTION_MACRO |
186 | //#define NO_ACTION_FUNCTION | 186 | //#define NO_ACTION_FUNCTION |
187 | 187 | ||
188 | /* | ||
189 | * MIDI options | ||
190 | */ | ||
191 | |||
192 | /* enable basic MIDI features: | ||
193 | - MIDI notes can be sent when in Music mode is on | ||
194 | */ | ||
195 | //#define MIDI_BASIC | ||
196 | |||
197 | /* enable advanced MIDI features: | ||
198 | - MIDI notes can be added to the keymap | ||
199 | - Octave shift and transpose | ||
200 | - Virtual sustain, portamento, and modulation wheel | ||
201 | - etc. | ||
202 | */ | ||
203 | //#define MIDI_ADVANCED | ||
204 | |||
205 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
206 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
207 | |||
208 | /* Bootmagic Lite key configuration */ | 188 | /* Bootmagic Lite key configuration */ |
209 | // #define BOOTMAGIC_LITE_ROW 0 | 189 | // #define BOOTMAGIC_LITE_ROW 0 |
210 | // #define BOOTMAGIC_LITE_COLUMN 0 | 190 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd67/hotswap/rules.mk b/keyboards/kbdfans/kbd67/hotswap/rules.mk index 3ce98ff6f..4a2801684 100644 --- a/keyboards/kbdfans/kbd67/hotswap/rules.mk +++ b/keyboards/kbdfans/kbd67/hotswap/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk b/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk index 4536c68ce..8686f77d7 100644 --- a/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk +++ b/keyboards/kbdfans/kbd67/mkii_soldered/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk b/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk index e7b162456..44ce87e44 100644 --- a/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk +++ b/keyboards/kbdfans/kbd67/mkiirgb/v2/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd67/rev1/config.h b/keyboards/kbdfans/kbd67/rev1/config.h index b12b83683..b8aad647c 100644 --- a/keyboards/kbdfans/kbd67/rev1/config.h +++ b/keyboards/kbdfans/kbd67/rev1/config.h | |||
@@ -182,26 +182,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
182 | //#define NO_ACTION_MACRO | 182 | //#define NO_ACTION_MACRO |
183 | //#define NO_ACTION_FUNCTION | 183 | //#define NO_ACTION_FUNCTION |
184 | 184 | ||
185 | /* | ||
186 | * MIDI options | ||
187 | */ | ||
188 | |||
189 | /* enable basic MIDI features: | ||
190 | - MIDI notes can be sent when in Music mode is on | ||
191 | */ | ||
192 | //#define MIDI_BASIC | ||
193 | |||
194 | /* enable advanced MIDI features: | ||
195 | - MIDI notes can be added to the keymap | ||
196 | - Octave shift and transpose | ||
197 | - Virtual sustain, portamento, and modulation wheel | ||
198 | - etc. | ||
199 | */ | ||
200 | //#define MIDI_ADVANCED | ||
201 | |||
202 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
203 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
204 | |||
205 | /* Bootmagic Lite key configuration */ | 185 | /* Bootmagic Lite key configuration */ |
206 | // #define BOOTMAGIC_LITE_ROW 0 | 186 | // #define BOOTMAGIC_LITE_ROW 0 |
207 | // #define BOOTMAGIC_LITE_COLUMN 0 | 187 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd67/rev1/rules.mk b/keyboards/kbdfans/kbd67/rev1/rules.mk index a6bb8db58..fe5da7716 100644 --- a/keyboards/kbdfans/kbd67/rev1/rules.mk +++ b/keyboards/kbdfans/kbd67/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd67/rev2/rules.mk b/keyboards/kbdfans/kbd67/rev2/rules.mk index 6f781e719..e209df498 100644 --- a/keyboards/kbdfans/kbd67/rev2/rules.mk +++ b/keyboards/kbdfans/kbd67/rev2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbd6x/config.h b/keyboards/kbdfans/kbd6x/config.h index 390e5a66e..d9758edb8 100644 --- a/keyboards/kbdfans/kbd6x/config.h +++ b/keyboards/kbdfans/kbd6x/config.h | |||
@@ -169,23 +169,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
169 | #define NO_ACTION_MACRO | 169 | #define NO_ACTION_MACRO |
170 | #define NO_ACTION_FUNCTION | 170 | #define NO_ACTION_FUNCTION |
171 | 171 | ||
172 | /* | ||
173 | * MIDI options | ||
174 | */ | ||
175 | |||
176 | /* enable basic MIDI features: | ||
177 | - MIDI notes can be sent when in Music mode is on | ||
178 | */ | ||
179 | //#define MIDI_BASIC | ||
180 | |||
181 | /* enable advanced MIDI features: | ||
182 | - MIDI notes can be added to the keymap | ||
183 | - Octave shift and transpose | ||
184 | - Virtual sustain, portamento, and modulation wheel | ||
185 | - etc. | ||
186 | */ | ||
187 | //#define MIDI_ADVANCED | ||
188 | |||
189 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
190 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
191 | |||
diff --git a/keyboards/kbdfans/kbd6x/rules.mk b/keyboards/kbdfans/kbd6x/rules.mk index b573c4dfa..eabefb6bd 100644 --- a/keyboards/kbdfans/kbd6x/rules.mk +++ b/keyboards/kbdfans/kbd6x/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | RGBLIGHT_ENABLE = yes | 29 | RGBLIGHT_ENABLE = yes |
diff --git a/keyboards/kbdfans/kbd8x_mk2/config.h b/keyboards/kbdfans/kbd8x_mk2/config.h index 008b6b517..a8ead3fd1 100644 --- a/keyboards/kbdfans/kbd8x_mk2/config.h +++ b/keyboards/kbdfans/kbd8x_mk2/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbd8x_mk2/rules.mk b/keyboards/kbdfans/kbd8x_mk2/rules.mk index 946ce7028..6524858e4 100644 --- a/keyboards/kbdfans/kbd8x_mk2/rules.mk +++ b/keyboards/kbdfans/kbd8x_mk2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/kbdpad_mk2/config.h b/keyboards/kbdfans/kbdpad_mk2/config.h index 2c32d1c8a..e99a73696 100644 --- a/keyboards/kbdfans/kbdpad_mk2/config.h +++ b/keyboards/kbdfans/kbdpad_mk2/config.h | |||
@@ -193,26 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | //#define NO_ACTION_MACRO | 193 | //#define NO_ACTION_MACRO |
194 | //#define NO_ACTION_FUNCTION | 194 | //#define NO_ACTION_FUNCTION |
195 | 195 | ||
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | |||
216 | /* Bootmagic Lite key configuration */ | 196 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 197 | // #define BOOTMAGIC_LITE_ROW 0 |
218 | // #define BOOTMAGIC_LITE_COLUMN 0 | 198 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/kbdfans/kbdpad_mk2/rules.mk b/keyboards/kbdfans/kbdpad_mk2/rules.mk index a2db25800..406195888 100644 --- a/keyboards/kbdfans/kbdpad_mk2/rules.mk +++ b/keyboards/kbdfans/kbdpad_mk2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kbdfans/maja/rules.mk b/keyboards/kbdfans/maja/rules.mk index 53b35e18e..03054bc70 100755 --- a/keyboards/kbdfans/maja/rules.mk +++ b/keyboards/kbdfans/maja/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kc60se/config.h b/keyboards/kc60se/config.h index 697e20d34..ec0758794 100644 --- a/keyboards/kc60se/config.h +++ b/keyboards/kc60se/config.h | |||
@@ -146,23 +146,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
146 | //#define NO_ACTION_ONESHOT | 146 | //#define NO_ACTION_ONESHOT |
147 | //#define NO_ACTION_MACRO | 147 | //#define NO_ACTION_MACRO |
148 | //#define NO_ACTION_FUNCTION | 148 | //#define NO_ACTION_FUNCTION |
149 | |||
150 | /* | ||
151 | * MIDI options | ||
152 | */ | ||
153 | |||
154 | /* enable basic MIDI features: | ||
155 | - MIDI notes can be sent when in Music mode is on | ||
156 | */ | ||
157 | //#define MIDI_BASIC | ||
158 | |||
159 | /* enable advanced MIDI features: | ||
160 | - MIDI notes can be added to the keymap | ||
161 | - Octave shift and transpose | ||
162 | - Virtual sustain, portamento, and modulation wheel | ||
163 | - etc. | ||
164 | */ | ||
165 | //#define MIDI_ADVANCED | ||
166 | |||
167 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
168 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/kc60se/rules.mk b/keyboards/kc60se/rules.mk index 17e33c041..c828d55d4 100644 --- a/keyboards/kc60se/rules.mk +++ b/keyboards/kc60se/rules.mk | |||
@@ -23,7 +23,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
23 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | NKRO_ENABLE = yes # USB Nkey Rollover | 24 | NKRO_ENABLE = yes # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/keebio/bdn9/rev1/rules.mk b/keyboards/keebio/bdn9/rev1/rules.mk index 49c17e1ec..e9d43ac08 100644 --- a/keyboards/keebio/bdn9/rev1/rules.mk +++ b/keyboards/keebio/bdn9/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/keebio/bdn9/rev2/rules.mk b/keyboards/keebio/bdn9/rev2/rules.mk index ee60b5a89..ab83f7512 100644 --- a/keyboards/keebio/bdn9/rev2/rules.mk +++ b/keyboards/keebio/bdn9/rev2/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | ENCODER_ENABLE = yes | 23 | ENCODER_ENABLE = yes |
diff --git a/keyboards/keebio/bfo9000/rules.mk b/keyboards/keebio/bfo9000/rules.mk index 723e745a4..7dac8a22b 100644 --- a/keyboards/keebio/bfo9000/rules.mk +++ b/keyboards/keebio/bfo9000/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/choconum/config.h b/keyboards/keebio/choconum/config.h index 30befff05..15b3eecbe 100644 --- a/keyboards/keebio/choconum/config.h +++ b/keyboards/keebio/choconum/config.h | |||
@@ -149,26 +149,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
149 | #define NO_ACTION_MACRO | 149 | #define NO_ACTION_MACRO |
150 | #define NO_ACTION_FUNCTION | 150 | #define NO_ACTION_FUNCTION |
151 | 151 | ||
152 | /* | ||
153 | * MIDI options | ||
154 | */ | ||
155 | |||
156 | /* enable basic MIDI features: | ||
157 | - MIDI notes can be sent when in Music mode is on | ||
158 | */ | ||
159 | //#define MIDI_BASIC | ||
160 | |||
161 | /* enable advanced MIDI features: | ||
162 | - MIDI notes can be added to the keymap | ||
163 | - Octave shift and transpose | ||
164 | - Virtual sustain, portamento, and modulation wheel | ||
165 | - etc. | ||
166 | */ | ||
167 | //#define MIDI_ADVANCED | ||
168 | |||
169 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
170 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
171 | |||
172 | /* Bootmagic Lite key configuration */ | 152 | /* Bootmagic Lite key configuration */ |
173 | // #define BOOTMAGIC_LITE_ROW 0 | 153 | // #define BOOTMAGIC_LITE_ROW 0 |
174 | // #define BOOTMAGIC_LITE_COLUMN 0 | 154 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/keebio/choconum/rules.mk b/keyboards/keebio/choconum/rules.mk index 643d7f488..998a9310c 100644 --- a/keyboards/keebio/choconum/rules.mk +++ b/keyboards/keebio/choconum/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | 23 | ||
diff --git a/keyboards/keebio/ergodicity/config.h b/keyboards/keebio/ergodicity/config.h index 612f90a5d..0d038a870 100644 --- a/keyboards/keebio/ergodicity/config.h +++ b/keyboards/keebio/ergodicity/config.h | |||
@@ -176,26 +176,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
176 | //#define NO_ACTION_MACRO | 176 | //#define NO_ACTION_MACRO |
177 | //#define NO_ACTION_FUNCTION | 177 | //#define NO_ACTION_FUNCTION |
178 | 178 | ||
179 | /* | ||
180 | * MIDI options | ||
181 | */ | ||
182 | |||
183 | /* enable basic MIDI features: | ||
184 | - MIDI notes can be sent when in Music mode is on | ||
185 | */ | ||
186 | //#define MIDI_BASIC | ||
187 | |||
188 | /* enable advanced MIDI features: | ||
189 | - MIDI notes can be added to the keymap | ||
190 | - Octave shift and transpose | ||
191 | - Virtual sustain, portamento, and modulation wheel | ||
192 | - etc. | ||
193 | */ | ||
194 | //#define MIDI_ADVANCED | ||
195 | |||
196 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
197 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
198 | |||
199 | /* Bootmagic Lite key configuration */ | 179 | /* Bootmagic Lite key configuration */ |
200 | // #define BOOTMAGIC_LITE_ROW 0 | 180 | // #define BOOTMAGIC_LITE_ROW 0 |
201 | // #define BOOTMAGIC_LITE_COLUMN 0 | 181 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/keebio/ergodicity/rules.mk b/keyboards/keebio/ergodicity/rules.mk index 7c54dae81..090d3b1d7 100644 --- a/keyboards/keebio/ergodicity/rules.mk +++ b/keyboards/keebio/ergodicity/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/keebio/fourier/rules.mk b/keyboards/keebio/fourier/rules.mk index f79b74bdb..b9d91e6fe 100644 --- a/keyboards/keebio/fourier/rules.mk +++ b/keyboards/keebio/fourier/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/iris/rev1/rules.mk b/keyboards/keebio/iris/rev1/rules.mk index b22a64666..21333e543 100644 --- a/keyboards/keebio/iris/rev1/rules.mk +++ b/keyboards/keebio/iris/rev1/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/iris/rev1_led/rules.mk b/keyboards/keebio/iris/rev1_led/rules.mk index b22a64666..21333e543 100644 --- a/keyboards/keebio/iris/rev1_led/rules.mk +++ b/keyboards/keebio/iris/rev1_led/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/iris/rev2/rules.mk b/keyboards/keebio/iris/rev2/rules.mk index 025a26d06..291d3f075 100644 --- a/keyboards/keebio/iris/rev2/rules.mk +++ b/keyboards/keebio/iris/rev2/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/iris/rev3/rules.mk b/keyboards/keebio/iris/rev3/rules.mk index a237b87a5..505c7bd5b 100644 --- a/keyboards/keebio/iris/rev3/rules.mk +++ b/keyboards/keebio/iris/rev3/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/iris/rev4/rules.mk b/keyboards/keebio/iris/rev4/rules.mk index 4869a60f5..382e7d572 100644 --- a/keyboards/keebio/iris/rev4/rules.mk +++ b/keyboards/keebio/iris/rev4/rules.mk | |||
@@ -23,7 +23,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
23 | COMMAND_ENABLE = no # Commands for debug and configuration | 23 | COMMAND_ENABLE = no # Commands for debug and configuration |
24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/kbo5000/rules.mk b/keyboards/keebio/kbo5000/rules.mk index aaa3f30b1..12ef951dd 100644 --- a/keyboards/keebio/kbo5000/rules.mk +++ b/keyboards/keebio/kbo5000/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/laplace/rules.mk b/keyboards/keebio/laplace/rules.mk index d50fdb8d3..528730642 100644 --- a/keyboards/keebio/laplace/rules.mk +++ b/keyboards/keebio/laplace/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/levinson/rules.mk b/keyboards/keebio/levinson/rules.mk index 0410714d9..448921eb9 100644 --- a/keyboards/keebio/levinson/rules.mk +++ b/keyboards/keebio/levinson/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/nyquist/rev1/rules.mk b/keyboards/keebio/nyquist/rev1/rules.mk index 4c713331c..e3c2c93ab 100644 --- a/keyboards/keebio/nyquist/rev1/rules.mk +++ b/keyboards/keebio/nyquist/rev1/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/nyquist/rev2/rules.mk b/keyboards/keebio/nyquist/rev2/rules.mk index 4c28a5e19..0ce5e3b0b 100644 --- a/keyboards/keebio/nyquist/rev2/rules.mk +++ b/keyboards/keebio/nyquist/rev2/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/nyquist/rev3/rules.mk b/keyboards/keebio/nyquist/rev3/rules.mk index 2a3c5b0b9..b6699927d 100644 --- a/keyboards/keebio/nyquist/rev3/rules.mk +++ b/keyboards/keebio/nyquist/rev3/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/quefrency/rules.mk b/keyboards/keebio/quefrency/rules.mk index 15217b053..472de032c 100644 --- a/keyboards/keebio/quefrency/rules.mk +++ b/keyboards/keebio/quefrency/rules.mk | |||
@@ -8,7 +8,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
8 | COMMAND_ENABLE = no # Commands for debug and configuration | 8 | COMMAND_ENABLE = no # Commands for debug and configuration |
9 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 9 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
10 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 10 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
11 | MIDI_ENABLE = no # MIDI controls | ||
12 | AUDIO_ENABLE = no # Audio output on port C6 | 11 | AUDIO_ENABLE = no # Audio output on port C6 |
13 | UNICODE_ENABLE = no # Unicode | 12 | UNICODE_ENABLE = no # Unicode |
14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 13 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/rorschach/rules.mk b/keyboards/keebio/rorschach/rules.mk index 5c3120b9c..3c8a30a49 100644 --- a/keyboards/keebio/rorschach/rules.mk +++ b/keyboards/keebio/rorschach/rules.mk | |||
@@ -18,7 +18,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
18 | COMMAND_ENABLE = yes # Commands for debug and configuration | 18 | COMMAND_ENABLE = yes # Commands for debug and configuration |
19 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 19 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
21 | MIDI_ENABLE = no # MIDI controls | ||
22 | AUDIO_ENABLE = no # Audio output on port C6 | 21 | AUDIO_ENABLE = no # Audio output on port C6 |
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/sinc/rules.mk b/keyboards/keebio/sinc/rules.mk index 9a993ca9f..7e0882872 100644 --- a/keyboards/keebio/sinc/rules.mk +++ b/keyboards/keebio/sinc/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/tragicforce68/rules.mk b/keyboards/keebio/tragicforce68/rules.mk index a56309849..eecf8301d 100644 --- a/keyboards/keebio/tragicforce68/rules.mk +++ b/keyboards/keebio/tragicforce68/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/keebio/tukey/rules.mk b/keyboards/keebio/tukey/rules.mk index 2a5d6c7eb..d196d80cf 100644 --- a/keyboards/keebio/tukey/rules.mk +++ b/keyboards/keebio/tukey/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/keebio/viterbi/rules.mk b/keyboards/keebio/viterbi/rules.mk index ca82c4ccd..fe9b6dc56 100644 --- a/keyboards/keebio/viterbi/rules.mk +++ b/keyboards/keebio/viterbi/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebio/wavelet/rules.mk b/keyboards/keebio/wavelet/rules.mk index abca5fb6a..a5fad2932 100644 --- a/keyboards/keebio/wavelet/rules.mk +++ b/keyboards/keebio/wavelet/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/keebwerk/nano_slider/config.h b/keyboards/keebwerk/nano_slider/config.h index 0e17f2002..d5bf9c3b9 100644 --- a/keyboards/keebwerk/nano_slider/config.h +++ b/keyboards/keebwerk/nano_slider/config.h | |||
@@ -163,26 +163,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
163 | #define NO_ACTION_MACRO | 163 | #define NO_ACTION_MACRO |
164 | #define NO_ACTION_FUNCTION | 164 | #define NO_ACTION_FUNCTION |
165 | 165 | ||
166 | /* | ||
167 | * MIDI options | ||
168 | */ | ||
169 | |||
170 | /* enable basic MIDI features: | ||
171 | - MIDI notes can be sent when in Music mode is on | ||
172 | */ | ||
173 | //#define MIDI_BASIC | ||
174 | |||
175 | /* enable advanced MIDI features: | ||
176 | - MIDI notes can be added to the keymap | ||
177 | - Octave shift and transpose | ||
178 | - Virtual sustain, portamento, and modulation wheel | ||
179 | - etc. | ||
180 | */ | ||
181 | #define MIDI_ADVANCED | ||
182 | |||
183 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
184 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
185 | |||
186 | /* Bootmagic Lite key configuration */ | 166 | /* Bootmagic Lite key configuration */ |
187 | // #define BOOTMAGIC_LITE_ROW 0 | 167 | // #define BOOTMAGIC_LITE_ROW 0 |
188 | // #define BOOTMAGIC_LITE_COLUMN 0 | 168 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/keebzdotnet/wazowski/config.h b/keyboards/keebzdotnet/wazowski/config.h index 42d14bd2f..3786c4b0e 100644 --- a/keyboards/keebzdotnet/wazowski/config.h +++ b/keyboards/keebzdotnet/wazowski/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/keebzdotnet/wazowski/rules.mk b/keyboards/keebzdotnet/wazowski/rules.mk index bf87a03b2..e7e400e80 100644 --- a/keyboards/keebzdotnet/wazowski/rules.mk +++ b/keyboards/keebzdotnet/wazowski/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/keyboardio/model01/rules.mk b/keyboards/keyboardio/model01/rules.mk index dba292dc9..925e575e0 100644 --- a/keyboards/keyboardio/model01/rules.mk +++ b/keyboards/keyboardio/model01/rules.mk | |||
@@ -23,7 +23,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | 27 | ||
29 | CUSTOM_MATRIX = yes | 28 | CUSTOM_MATRIX = yes |
diff --git a/keyboards/keyhive/maypad/config.h b/keyboards/keyhive/maypad/config.h index 3f671243a..774dd74c9 100644 --- a/keyboards/keyhive/maypad/config.h +++ b/keyboards/keyhive/maypad/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/keyhive/maypad/rules.mk b/keyboards/keyhive/maypad/rules.mk index 24a6cf173..9adbffc4f 100644 --- a/keyboards/keyhive/maypad/rules.mk +++ b/keyboards/keyhive/maypad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kinesis/rules.mk b/keyboards/kinesis/rules.mk index f7c238144..ddae2e886 100644 --- a/keyboards/kinesis/rules.mk +++ b/keyboards/kinesis/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output should be port E6, current quantum library hardcodes C6, which we use for programming | 29 | AUDIO_ENABLE = no # Audio output should be port E6, current quantum library hardcodes C6, which we use for programming |
diff --git a/keyboards/kingly_keys/romac_plus/rules.mk b/keyboards/kingly_keys/romac_plus/rules.mk index 14be02a3c..23e161ed0 100644 --- a/keyboards/kingly_keys/romac_plus/rules.mk +++ b/keyboards/kingly_keys/romac_plus/rules.mk | |||
@@ -23,7 +23,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
23 | NKRO_ENABLE = no # USB Nkey Rollover | 23 | NKRO_ENABLE = no # USB Nkey Rollover |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
25 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 25 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kingly_keys/ropro/rules.mk b/keyboards/kingly_keys/ropro/rules.mk index 6a62451dd..f5bad3f64 100644 --- a/keyboards/kingly_keys/ropro/rules.mk +++ b/keyboards/kingly_keys/ropro/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
23 | NKRO_ENABLE = yes # USB Nkey Rollover | 23 | NKRO_ENABLE = yes # USB Nkey Rollover |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kingly_keys/soap/rules.mk b/keyboards/kingly_keys/soap/rules.mk index 0b0272fbd..821830ad1 100644 --- a/keyboards/kingly_keys/soap/rules.mk +++ b/keyboards/kingly_keys/soap/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
23 | NKRO_ENABLE = yes # USB Nkey Rollover | 23 | NKRO_ENABLE = yes # USB Nkey Rollover |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kira75/config.h b/keyboards/kira75/config.h index ca6c16fcd..408714cb3 100644 --- a/keyboards/kira75/config.h +++ b/keyboards/kira75/config.h | |||
@@ -164,24 +164,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
164 | //#define NO_ACTION_MACRO | 164 | //#define NO_ACTION_MACRO |
165 | //#define NO_ACTION_FUNCTION | 165 | //#define NO_ACTION_FUNCTION |
166 | 166 | ||
167 | /* | ||
168 | * MIDI options | ||
169 | */ | ||
170 | |||
171 | /* enable basic MIDI features: | ||
172 | - MIDI notes can be sent when in Music mode is on | ||
173 | */ | ||
174 | //#define MIDI_BASIC | ||
175 | |||
176 | /* enable advanced MIDI features: | ||
177 | - MIDI notes can be added to the keymap | ||
178 | - Octave shift and transpose | ||
179 | - Virtual sustain, portamento, and modulation wheel | ||
180 | - etc. | ||
181 | */ | ||
182 | //#define MIDI_ADVANCED | ||
183 | |||
184 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
185 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
186 | |||
187 | #endif | 167 | #endif |
diff --git a/keyboards/kira75/rules.mk b/keyboards/kira75/rules.mk index 906f3482b..e1bd282f2 100644 --- a/keyboards/kira75/rules.mk +++ b/keyboards/kira75/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kmac/config.h b/keyboards/kmac/config.h index 54d29dd62..e916b4972 100644 --- a/keyboards/kmac/config.h +++ b/keyboards/kmac/config.h | |||
@@ -150,23 +150,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
150 | //#define NO_ACTION_ONESHOT | 150 | //#define NO_ACTION_ONESHOT |
151 | //#define NO_ACTION_MACRO | 151 | //#define NO_ACTION_MACRO |
152 | //#define NO_ACTION_FUNCTION | 152 | //#define NO_ACTION_FUNCTION |
153 | |||
154 | /* | ||
155 | * MIDI options | ||
156 | */ | ||
157 | |||
158 | /* enable basic MIDI features: | ||
159 | - MIDI notes can be sent when in Music mode is on | ||
160 | */ | ||
161 | //#define MIDI_BASIC | ||
162 | |||
163 | /* enable advanced MIDI features: | ||
164 | - MIDI notes can be added to the keymap | ||
165 | - Octave shift and transpose | ||
166 | - Virtual sustain, portamento, and modulation wheel | ||
167 | - etc. | ||
168 | */ | ||
169 | //#define MIDI_ADVANCED | ||
170 | |||
171 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
172 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/kmac/rules.mk b/keyboards/kmac/rules.mk index 5c3e170c0..810de56a2 100644 --- a/keyboards/kmac/rules.mk +++ b/keyboards/kmac/rules.mk | |||
@@ -29,7 +29,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
29 | NKRO_ENABLE = yes # USB Nkey Rollover | 29 | NKRO_ENABLE = yes # USB Nkey Rollover |
30 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 30 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
31 | BACKLIGHT_DRIVER = custom | 31 | BACKLIGHT_DRIVER = custom |
32 | MIDI_ENABLE = no # MIDI support | ||
33 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
34 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
35 | AUDIO_ENABLE = no # Audio output on port C6 | 34 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kmini/rules.mk b/keyboards/kmini/rules.mk index 9e24ebe2c..f4b00e7d1 100755 --- a/keyboards/kmini/rules.mk +++ b/keyboards/kmini/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | NKRO_ENABLE = yes # USB Nkey Rollover | 29 | NKRO_ENABLE = yes # USB Nkey Rollover |
30 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 30 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
34 | AUDIO_ENABLE = no # Audio output on port C6 | 33 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/knops/mini/config.h b/keyboards/knops/mini/config.h index 000a9c623..cf603fbf6 100644 --- a/keyboards/knops/mini/config.h +++ b/keyboards/knops/mini/config.h | |||
@@ -157,24 +157,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | 159 | ||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
179 | |||
180 | #endif | 160 | #endif |
diff --git a/keyboards/knops/mini/rules.mk b/keyboards/knops/mini/rules.mk index 7434e8a43..4ee7fa222 100644 --- a/keyboards/knops/mini/rules.mk +++ b/keyboards/knops/mini/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kona_classic/config.h b/keyboards/kona_classic/config.h index 083a3e90a..e16f3017d 100644 --- a/keyboards/kona_classic/config.h +++ b/keyboards/kona_classic/config.h | |||
@@ -154,24 +154,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
154 | //#define NO_ACTION_MACRO | 154 | //#define NO_ACTION_MACRO |
155 | //#define NO_ACTION_FUNCTION | 155 | //#define NO_ACTION_FUNCTION |
156 | 156 | ||
157 | /* | ||
158 | * MIDI options | ||
159 | */ | ||
160 | |||
161 | /* enable basic MIDI features: | ||
162 | - MIDI notes can be sent when in Music mode is on | ||
163 | */ | ||
164 | //#define MIDI_BASIC | ||
165 | |||
166 | /* enable advanced MIDI features: | ||
167 | - MIDI notes can be added to the keymap | ||
168 | - Octave shift and transpose | ||
169 | - Virtual sustain, portamento, and modulation wheel | ||
170 | - etc. | ||
171 | */ | ||
172 | //#define MIDI_ADVANCED | ||
173 | |||
174 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
175 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
176 | |||
177 | #endif | 157 | #endif |
diff --git a/keyboards/kona_classic/rules.mk b/keyboards/kona_classic/rules.mk index 1f2ebda5a..04a659636 100644 --- a/keyboards/kona_classic/rules.mk +++ b/keyboards/kona_classic/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kudox/rules.mk b/keyboards/kudox/rules.mk index 6021251b8..05fafb7b5 100644 --- a/keyboards/kudox/rules.mk +++ b/keyboards/kudox/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kudox_game/rules.mk b/keyboards/kudox_game/rules.mk index 4f6f879c9..7ccaff5cd 100644 --- a/keyboards/kudox_game/rules.mk +++ b/keyboards/kudox_game/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/kv/revt/rules.mk b/keyboards/kv/revt/rules.mk index ffb3cd747..10425b2ac 100644 --- a/keyboards/kv/revt/rules.mk +++ b/keyboards/kv/revt/rules.mk | |||
@@ -19,6 +19,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
24 | AUDIO_ENABLE = no # Audio output on port C6 | 23 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/laptreus/rules.mk b/keyboards/laptreus/rules.mk index c85dbb9b7..765c4cdc7 100644 --- a/keyboards/laptreus/rules.mk +++ b/keyboards/laptreus/rules.mk | |||
@@ -25,7 +25,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
25 | COMMAND_ENABLE = yes # Commands for debug and configuration | 25 | COMMAND_ENABLE = yes # Commands for debug and configuration |
26 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 26 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
27 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 27 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
28 | #MIDI_ENABLE = no # MIDI controls | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | KEY_LOCK_ENABLE = no | 29 | KEY_LOCK_ENABLE = no |
31 | TAP_DANCE_ENABLE = no | 30 | TAP_DANCE_ENABLE = no |
diff --git a/keyboards/lattice60/rules.mk b/keyboards/lattice60/rules.mk index 415babde1..b04ffc44e 100644 --- a/keyboards/lattice60/rules.mk +++ b/keyboards/lattice60/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = no # USB Nkey Rollover | 28 | NKRO_ENABLE = no # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | AUDIO_ENABLE = no # Audio output on port C6 | 32 | AUDIO_ENABLE = no # Audio output on port C6 |
34 | 33 | ||
diff --git a/keyboards/launchpad/rules.mk b/keyboards/launchpad/rules.mk index bfbfd5b88..ff9dfa5de 100644 --- a/keyboards/launchpad/rules.mk +++ b/keyboards/launchpad/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lazydesigners/the30/rules.mk b/keyboards/lazydesigners/the30/rules.mk index 00be70bdb..93a26c200 100644 --- a/keyboards/lazydesigners/the30/rules.mk +++ b/keyboards/lazydesigners/the30/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/leeku/finger65/rules.mk b/keyboards/leeku/finger65/rules.mk index 8ebc04309..49dc92eb7 100644 --- a/keyboards/leeku/finger65/rules.mk +++ b/keyboards/leeku/finger65/rules.mk | |||
@@ -22,4 +22,3 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 22 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | NKRO_ENABLE = no # USB Nkey Rollover | 24 | NKRO_ENABLE = no # USB Nkey Rollover |
25 | MIDI_ENABLE = no # MIDI support | ||
diff --git a/keyboards/lets_split/rules.mk b/keyboards/lets_split/rules.mk index a67f89737..2fc9db92c 100644 --- a/keyboards/lets_split/rules.mk +++ b/keyboards/lets_split/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lets_split_eh/rules.mk b/keyboards/lets_split_eh/rules.mk index 20f10a7e9..0ed502a28 100644 --- a/keyboards/lets_split_eh/rules.mk +++ b/keyboards/lets_split_eh/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lfkeyboards/lfk78/config.h b/keyboards/lfkeyboards/lfk78/config.h index 2b0b01d86..540c40539 100644 --- a/keyboards/lfkeyboards/lfk78/config.h +++ b/keyboards/lfkeyboards/lfk78/config.h | |||
@@ -160,26 +160,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
160 | #define NO_ACTION_MACRO | 160 | #define NO_ACTION_MACRO |
161 | #define NO_ACTION_FUNCTION | 161 | #define NO_ACTION_FUNCTION |
162 | 162 | ||
163 | /* | ||
164 | * MIDI options | ||
165 | */ | ||
166 | |||
167 | /* enable basic MIDI features: | ||
168 | - MIDI notes can be sent when in Music mode is on | ||
169 | */ | ||
170 | //#define MIDI_BASIC | ||
171 | |||
172 | /* enable advanced MIDI features: | ||
173 | - MIDI notes can be added to the keymap | ||
174 | - Octave shift and transpose | ||
175 | - Virtual sustain, portamento, and modulation wheel | ||
176 | - etc. | ||
177 | */ | ||
178 | //#define MIDI_ADVANCED | ||
179 | |||
180 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
181 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
182 | |||
183 | /* Bootmagic Lite key configuration */ | 163 | /* Bootmagic Lite key configuration */ |
184 | // #define BOOTMAGIC_LITE_ROW 0 | 164 | // #define BOOTMAGIC_LITE_ROW 0 |
185 | // #define BOOTMAGIC_LITE_COLUMN 0 | 165 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/lfkeyboards/lfk78/rules.mk b/keyboards/lfkeyboards/lfk78/rules.mk index eae1231a1..1abad5557 100644 --- a/keyboards/lfkeyboards/lfk78/rules.mk +++ b/keyboards/lfkeyboards/lfk78/rules.mk | |||
@@ -19,7 +19,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
19 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 19 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 20 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
21 | BACKLIGHT_DRIVER = custom | 21 | BACKLIGHT_DRIVER = custom |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lfkeyboards/lfk87/rules.mk b/keyboards/lfkeyboards/lfk87/rules.mk index bec8cdc77..7f5621b03 100644 --- a/keyboards/lfkeyboards/lfk87/rules.mk +++ b/keyboards/lfkeyboards/lfk87/rules.mk | |||
@@ -32,7 +32,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
32 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 32 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
33 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 33 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
34 | BACKLIGHT_DRIVER = custom | 34 | BACKLIGHT_DRIVER = custom |
35 | MIDI_ENABLE = no # MIDI controls | ||
36 | AUDIO_ENABLE = yes # Audio output on port C6 | 35 | AUDIO_ENABLE = yes # Audio output on port C6 |
37 | UNICODE_ENABLE = no # Unicode | 36 | UNICODE_ENABLE = no # Unicode |
38 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 37 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/lfkeyboards/lfkpad/config.h b/keyboards/lfkeyboards/lfkpad/config.h index f3da6c8f7..e2181a9e6 100644 --- a/keyboards/lfkeyboards/lfkpad/config.h +++ b/keyboards/lfkeyboards/lfkpad/config.h | |||
@@ -177,26 +177,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
177 | #define NO_ACTION_MACRO | 177 | #define NO_ACTION_MACRO |
178 | #define NO_ACTION_FUNCTION | 178 | #define NO_ACTION_FUNCTION |
179 | 179 | ||
180 | /* | ||
181 | * MIDI options | ||
182 | */ | ||
183 | |||
184 | /* enable basic MIDI features: | ||
185 | - MIDI notes can be sent when in Music mode is on | ||
186 | */ | ||
187 | //#define MIDI_BASIC | ||
188 | |||
189 | /* enable advanced MIDI features: | ||
190 | - MIDI notes can be added to the keymap | ||
191 | - Octave shift and transpose | ||
192 | - Virtual sustain, portamento, and modulation wheel | ||
193 | - etc. | ||
194 | */ | ||
195 | //#define MIDI_ADVANCED | ||
196 | |||
197 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
198 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
199 | |||
200 | /* Bootmagic Lite key configuration */ | 180 | /* Bootmagic Lite key configuration */ |
201 | // #define BOOTMAGIC_LITE_ROW 0 | 181 | // #define BOOTMAGIC_LITE_ROW 0 |
202 | // #define BOOTMAGIC_LITE_COLUMN 0 | 182 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/lfkeyboards/lfkpad/rules.mk b/keyboards/lfkeyboards/lfkpad/rules.mk index cf019c6af..09dea7037 100644 --- a/keyboards/lfkeyboards/lfkpad/rules.mk +++ b/keyboards/lfkeyboards/lfkpad/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lfkeyboards, not qmk base | 28 | RGBLIGHT_CUSTOM_DRIVER = yes # RGB code is implemented in lfkeyboards, not qmk base |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/lily58/rules.mk b/keyboards/lily58/rules.mk index e2db0bd3b..b2d7e648b 100644 --- a/keyboards/lily58/rules.mk +++ b/keyboards/lily58/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/massdrop/alt/rules.mk b/keyboards/massdrop/alt/rules.mk index 82025dc56..c722ec7f3 100644 --- a/keyboards/massdrop/alt/rules.mk +++ b/keyboards/massdrop/alt/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/massdrop/ctrl/rules.mk b/keyboards/massdrop/ctrl/rules.mk index 21ced28b9..6b57e7858 100644 --- a/keyboards/massdrop/ctrl/rules.mk +++ b/keyboards/massdrop/ctrl/rules.mk | |||
@@ -19,7 +19,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 20 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 21 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
22 | MIDI_ENABLE = no # MIDI support | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/maxipad/rules.mk b/keyboards/maxipad/rules.mk index 9e1ce7dbf..8c7b12c6d 100644 --- a/keyboards/maxipad/rules.mk +++ b/keyboards/maxipad/rules.mk | |||
@@ -12,7 +12,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
12 | NKRO_ENABLE = yes # USB Nkey Rollover | 12 | NKRO_ENABLE = yes # USB Nkey Rollover |
13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 14 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
15 | MIDI_ENABLE = no # MIDI support | ||
16 | UNICODE_ENABLE = no # Unicode | 15 | UNICODE_ENABLE = no # Unicode |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
18 | AUDIO_ENABLE = no # Audio output on port C6 | 17 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/maxr1998/phoebe/rules.mk b/keyboards/maxr1998/phoebe/rules.mk index 3c079fec3..79bce5624 100644 --- a/keyboards/maxr1998/phoebe/rules.mk +++ b/keyboards/maxr1998/phoebe/rules.mk | |||
@@ -23,7 +23,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
23 | COMBO_ENABLE = no # Key combo feature | 23 | COMBO_ENABLE = no # Key combo feature |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI controls | ||
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/maxr1998/pulse4k/rules.mk b/keyboards/maxr1998/pulse4k/rules.mk index 871964aea..783ce5ddc 100644 --- a/keyboards/maxr1998/pulse4k/rules.mk +++ b/keyboards/maxr1998/pulse4k/rules.mk | |||
@@ -24,7 +24,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
24 | COMBO_ENABLE = yes # Key combo feature | 24 | COMBO_ENABLE = yes # Key combo feature |
25 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/mc_76k/rules.mk b/keyboards/mc_76k/rules.mk index 91bbeee34..349d6c9a6 100644 --- a/keyboards/mc_76k/rules.mk +++ b/keyboards/mc_76k/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mechkeys/mk60/config.h b/keyboards/mechkeys/mk60/config.h index f2d604397..9ce808066 100644 --- a/keyboards/mechkeys/mk60/config.h +++ b/keyboards/mechkeys/mk60/config.h | |||
@@ -191,26 +191,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
191 | //#define NO_ACTION_MACRO | 191 | //#define NO_ACTION_MACRO |
192 | //#define NO_ACTION_FUNCTION | 192 | //#define NO_ACTION_FUNCTION |
193 | 193 | ||
194 | /* | ||
195 | * MIDI options | ||
196 | */ | ||
197 | |||
198 | /* enable basic MIDI features: | ||
199 | - MIDI notes can be sent when in Music mode is on | ||
200 | */ | ||
201 | //#define MIDI_BASIC | ||
202 | |||
203 | /* enable advanced MIDI features: | ||
204 | - MIDI notes can be added to the keymap | ||
205 | - Octave shift and transpose | ||
206 | - Virtual sustain, portamento, and modulation wheel | ||
207 | - etc. | ||
208 | */ | ||
209 | //#define MIDI_ADVANCED | ||
210 | |||
211 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
212 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
213 | |||
214 | /* Bootmagic Lite key configuration */ | 194 | /* Bootmagic Lite key configuration */ |
215 | // #define BOOTMAGIC_LITE_ROW 0 | 195 | // #define BOOTMAGIC_LITE_ROW 0 |
216 | // #define BOOTMAGIC_LITE_COLUMN 0 | 196 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/mechkeys/mk60/rules.mk b/keyboards/mechkeys/mk60/rules.mk index 8cfd3ce69..24143d65b 100644 --- a/keyboards/mechkeys/mk60/rules.mk +++ b/keyboards/mechkeys/mk60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mechlovin/adelais/rules.mk b/keyboards/mechlovin/adelais/rules.mk index 513651d5e..93f28c829 100644 --- a/keyboards/mechlovin/adelais/rules.mk +++ b/keyboards/mechlovin/adelais/rules.mk | |||
@@ -17,7 +17,6 @@ COMMAND_ENABLE = yes # Commands for debug and configuration | |||
17 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 17 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
18 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 18 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
19 | NKRO_ENABLE = yes # USB Nkey Rollover | 19 | NKRO_ENABLE = yes # USB Nkey Rollover |
20 | MIDI_ENABLE = no # MIDI support | ||
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
22 | AUDIO_ENABLE = no # Audio output on port C6 | 21 | AUDIO_ENABLE = no # Audio output on port C6 |
23 | 22 | ||
diff --git a/keyboards/mechlovin/hannah910/config.h b/keyboards/mechlovin/hannah910/config.h index 56f3c97ae..b4edaae48 100644 --- a/keyboards/mechlovin/hannah910/config.h +++ b/keyboards/mechlovin/hannah910/config.h | |||
@@ -162,26 +162,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
162 | //#define NO_ACTION_MACRO | 162 | //#define NO_ACTION_MACRO |
163 | //#define NO_ACTION_FUNCTION | 163 | //#define NO_ACTION_FUNCTION |
164 | 164 | ||
165 | /* | ||
166 | * MIDI options | ||
167 | */ | ||
168 | |||
169 | /* enable basic MIDI features: | ||
170 | - MIDI notes can be sent when in Music mode is on | ||
171 | */ | ||
172 | //#define MIDI_BASIC | ||
173 | |||
174 | /* enable advanced MIDI features: | ||
175 | - MIDI notes can be added to the keymap | ||
176 | - Octave shift and transpose | ||
177 | - Virtual sustain, portamento, and modulation wheel | ||
178 | - etc. | ||
179 | */ | ||
180 | //#define MIDI_ADVANCED | ||
181 | |||
182 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
183 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
184 | |||
185 | /* Bootmagic Lite key configuration */ | 165 | /* Bootmagic Lite key configuration */ |
186 | // #define BOOTMAGIC_LITE_ROW 0 | 166 | // #define BOOTMAGIC_LITE_ROW 0 |
187 | // #define BOOTMAGIC_LITE_COLUMN 0 | 167 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/mechlovin/hannah910/rev1/rules.mk b/keyboards/mechlovin/hannah910/rev1/rules.mk index b75adf396..90bd2b3a6 100644 --- a/keyboards/mechlovin/hannah910/rev1/rules.mk +++ b/keyboards/mechlovin/hannah910/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mechlovin/infinityce/rules.mk b/keyboards/mechlovin/infinityce/rules.mk index d8aa32604..41d22b66a 100644 --- a/keyboards/mechlovin/infinityce/rules.mk +++ b/keyboards/mechlovin/infinityce/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mechlovin/pisces/rules.mk b/keyboards/mechlovin/pisces/rules.mk index 221dedac3..acbf5c7b1 100644 --- a/keyboards/mechlovin/pisces/rules.mk +++ b/keyboards/mechlovin/pisces/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/meira/featherble/config.h b/keyboards/meira/featherble/config.h index 7abe2b1d6..b3ee95474 100644 --- a/keyboards/meira/featherble/config.h +++ b/keyboards/meira/featherble/config.h | |||
@@ -145,24 +145,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
145 | //#define NO_ACTION_MACRO | 145 | //#define NO_ACTION_MACRO |
146 | //#define NO_ACTION_FUNCTION | 146 | //#define NO_ACTION_FUNCTION |
147 | 147 | ||
148 | /* | ||
149 | * MIDI options | ||
150 | */ | ||
151 | |||
152 | /* enable basic MIDI features: | ||
153 | - MIDI notes can be sent when in Music mode is on | ||
154 | */ | ||
155 | //#define MIDI_BASIC | ||
156 | |||
157 | /* enable advanced MIDI features: | ||
158 | - MIDI notes can be added to the keymap | ||
159 | - Octave shift and transpose | ||
160 | - Virtual sustain, portamento, and modulation wheel | ||
161 | - etc. | ||
162 | */ | ||
163 | //#define MIDI_ADVANCED | ||
164 | |||
165 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
166 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
167 | |||
168 | #endif | 148 | #endif |
diff --git a/keyboards/meira/promicro/config.h b/keyboards/meira/promicro/config.h index edd8a954f..53844745b 100644 --- a/keyboards/meira/promicro/config.h +++ b/keyboards/meira/promicro/config.h | |||
@@ -136,24 +136,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
136 | //#define NO_ACTION_MACRO | 136 | //#define NO_ACTION_MACRO |
137 | //#define NO_ACTION_FUNCTION | 137 | //#define NO_ACTION_FUNCTION |
138 | 138 | ||
139 | /* | ||
140 | * MIDI options | ||
141 | */ | ||
142 | |||
143 | /* enable basic MIDI features: | ||
144 | - MIDI notes can be sent when in Music mode is on | ||
145 | */ | ||
146 | //#define MIDI_BASIC | ||
147 | |||
148 | /* enable advanced MIDI features: | ||
149 | - MIDI notes can be added to the keymap | ||
150 | - Octave shift and transpose | ||
151 | - Virtual sustain, portamento, and modulation wheel | ||
152 | - etc. | ||
153 | */ | ||
154 | //#define MIDI_ADVANCED | ||
155 | |||
156 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
157 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
158 | |||
159 | #endif | 139 | #endif |
diff --git a/keyboards/meira/rules.mk b/keyboards/meira/rules.mk index 8f18875a7..0c7c33c0f 100644 --- a/keyboards/meira/rules.mk +++ b/keyboards/meira/rules.mk | |||
@@ -23,7 +23,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = no # Audio output on port C6 | 28 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/meishi/config.h b/keyboards/meishi/config.h index 6f04269c9..a32dd11ef 100644 --- a/keyboards/meishi/config.h +++ b/keyboards/meishi/config.h | |||
@@ -156,23 +156,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
156 | //#define NO_ACTION_ONESHOT | 156 | //#define NO_ACTION_ONESHOT |
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | |||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/meishi/rules.mk b/keyboards/meishi/rules.mk index 6ded000ee..8dee3ba8b 100644 --- a/keyboards/meishi/rules.mk +++ b/keyboards/meishi/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/meishi2/config.h b/keyboards/meishi2/config.h index 872169cb7..3a31952aa 100644 --- a/keyboards/meishi2/config.h +++ b/keyboards/meishi2/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/meishi2/rules.mk b/keyboards/meishi2/rules.mk index 9727ce106..a684ff876 100644 --- a/keyboards/meishi2/rules.mk +++ b/keyboards/meishi2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/meme/config.h b/keyboards/meme/config.h index e1248036f..e157ade9a 100644 --- a/keyboards/meme/config.h +++ b/keyboards/meme/config.h | |||
@@ -157,24 +157,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
157 | //#define NO_ACTION_MACRO | 157 | //#define NO_ACTION_MACRO |
158 | //#define NO_ACTION_FUNCTION | 158 | //#define NO_ACTION_FUNCTION |
159 | 159 | ||
160 | /* | ||
161 | * MIDI options | ||
162 | */ | ||
163 | |||
164 | /* enable basic MIDI features: | ||
165 | - MIDI notes can be sent when in Music mode is on | ||
166 | */ | ||
167 | //#define MIDI_BASIC | ||
168 | |||
169 | /* enable advanced MIDI features: | ||
170 | - MIDI notes can be added to the keymap | ||
171 | - Octave shift and transpose | ||
172 | - Virtual sustain, portamento, and modulation wheel | ||
173 | - etc. | ||
174 | */ | ||
175 | //#define MIDI_ADVANCED | ||
176 | |||
177 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
178 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
179 | |||
180 | #endif | 160 | #endif |
diff --git a/keyboards/meme/rules.mk b/keyboards/meme/rules.mk index f87c43588..a5b2c3877 100644 --- a/keyboards/meme/rules.mk +++ b/keyboards/meme/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/meson/rules.mk b/keyboards/meson/rules.mk index 824f79cc7..41cb672c0 100644 --- a/keyboards/meson/rules.mk +++ b/keyboards/meson/rules.mk | |||
@@ -26,7 +26,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
26 | NKRO_ENABLE = yes # USB Nkey Rollover | 26 | NKRO_ENABLE = yes # USB Nkey Rollover |
27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 27 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 28 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/metamechs/timberwolf/config.h b/keyboards/metamechs/timberwolf/config.h index c6e0a8fe3..0a1179d10 100644 --- a/keyboards/metamechs/timberwolf/config.h +++ b/keyboards/metamechs/timberwolf/config.h | |||
@@ -163,11 +163,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
163 | //#define NO_ACTION_LAYER | 163 | //#define NO_ACTION_LAYER |
164 | //#define NO_ACTION_TAPPING | 164 | //#define NO_ACTION_TAPPING |
165 | //#define NO_ACTION_ONESHOT | 165 | //#define NO_ACTION_ONESHOT |
166 | |||
167 | /* | ||
168 | * MIDI options | ||
169 | */ | ||
170 | |||
171 | /* Bootmagic Lite key configuration */ | ||
172 | #define BOOTMAGIC_LITE_ROW 0 | ||
173 | #define BOOTMAGIC_LITE_COLUMN 0 | ||
diff --git a/keyboards/miller/gm862/rules.mk b/keyboards/miller/gm862/rules.mk index 998e70e23..abad180c8 100644 --- a/keyboards/miller/gm862/rules.mk +++ b/keyboards/miller/gm862/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | RGB_MATRIX_ENABLE = yes # Use RGB matrix | 30 | RGB_MATRIX_ENABLE = yes # Use RGB matrix |
diff --git a/keyboards/miniaxe/config.h b/keyboards/miniaxe/config.h index 8119c4f8e..f9843d4b7 100644 --- a/keyboards/miniaxe/config.h +++ b/keyboards/miniaxe/config.h | |||
@@ -173,26 +173,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
173 | //#define NO_ACTION_MACRO | 173 | //#define NO_ACTION_MACRO |
174 | //#define NO_ACTION_FUNCTION | 174 | //#define NO_ACTION_FUNCTION |
175 | 175 | ||
176 | /* | ||
177 | * MIDI options | ||
178 | */ | ||
179 | |||
180 | /* enable basic MIDI features: | ||
181 | - MIDI notes can be sent when in Music mode is on | ||
182 | */ | ||
183 | //#define MIDI_BASIC | ||
184 | |||
185 | /* enable advanced MIDI features: | ||
186 | - MIDI notes can be added to the keymap | ||
187 | - Octave shift and transpose | ||
188 | - Virtual sustain, portamento, and modulation wheel | ||
189 | - etc. | ||
190 | */ | ||
191 | //#define MIDI_ADVANCED | ||
192 | |||
193 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
194 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
195 | |||
196 | /* Bootmagic Lite key configuration */ | 176 | /* Bootmagic Lite key configuration */ |
197 | // #define BOOTMAGIC_LITE_ROW 0 | 177 | // #define BOOTMAGIC_LITE_ROW 0 |
198 | // #define BOOTMAGIC_LITE_COLUMN 0 | 178 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/miniaxe/rules.mk b/keyboards/miniaxe/rules.mk index bd1fdbf4c..3c50574f2 100644 --- a/keyboards/miniaxe/rules.mk +++ b/keyboards/miniaxe/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/minidox/rules.mk b/keyboards/minidox/rules.mk index 7649639e4..e53052751 100644 --- a/keyboards/minidox/rules.mk +++ b/keyboards/minidox/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/mint60/config.h b/keyboards/mint60/config.h index db882a1d3..a21ffc648 100644 --- a/keyboards/mint60/config.h +++ b/keyboards/mint60/config.h | |||
@@ -172,23 +172,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
172 | //#define NO_ACTION_MACRO | 172 | //#define NO_ACTION_MACRO |
173 | //#define NO_ACTION_FUNCTION | 173 | //#define NO_ACTION_FUNCTION |
174 | 174 | ||
175 | /* | ||
176 | * MIDI options | ||
177 | */ | ||
178 | |||
179 | /* enable basic MIDI features: | ||
180 | - MIDI notes can be sent when in Music mode is on | ||
181 | */ | ||
182 | //#define MIDI_BASIC | ||
183 | |||
184 | /* enable advanced MIDI features: | ||
185 | - MIDI notes can be added to the keymap | ||
186 | - Octave shift and transpose | ||
187 | - Virtual sustain, portamento, and modulation wheel | ||
188 | - etc. | ||
189 | */ | ||
190 | //#define MIDI_ADVANCED | ||
191 | |||
192 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
193 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
194 | |||
diff --git a/keyboards/mint60/rules.mk b/keyboards/mint60/rules.mk index e14310e24..71e2b2495 100644 --- a/keyboards/mint60/rules.mk +++ b/keyboards/mint60/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 27 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mitosis/rules.mk b/keyboards/mitosis/rules.mk index 54fa48de7..1dae50712 100644 --- a/keyboards/mitosis/rules.mk +++ b/keyboards/mitosis/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = yes # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = yes # Unicode | 28 | UNICODE_ENABLE = yes # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/miuni32/rules.mk b/keyboards/miuni32/rules.mk index eb1274bfa..fb361c4a6 100644 --- a/keyboards/miuni32/rules.mk +++ b/keyboards/miuni32/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/montsinger/rebound/rev1/rules.mk b/keyboards/montsinger/rebound/rev1/rules.mk index 311ef6511..e57f62a57 100644 --- a/keyboards/montsinger/rebound/rev1/rules.mk +++ b/keyboards/montsinger/rebound/rev1/rules.mk | |||
@@ -22,7 +22,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | 27 | ||
diff --git a/keyboards/montsinger/rebound/rev2/rules.mk b/keyboards/montsinger/rebound/rev2/rules.mk index 9881edcce..3bd114815 100644 --- a/keyboards/montsinger/rebound/rev2/rules.mk +++ b/keyboards/montsinger/rebound/rev2/rules.mk | |||
@@ -22,7 +22,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | ENCODER_ENABLE = yes | 27 | ENCODER_ENABLE = yes |
diff --git a/keyboards/montsinger/rebound/rev3/rules.mk b/keyboards/montsinger/rebound/rev3/rules.mk index 9881edcce..3bd114815 100644 --- a/keyboards/montsinger/rebound/rev3/rules.mk +++ b/keyboards/montsinger/rebound/rev3/rules.mk | |||
@@ -22,7 +22,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | ENCODER_ENABLE = yes | 27 | ENCODER_ENABLE = yes |
diff --git a/keyboards/montsinger/rebound/rev4/rules.mk b/keyboards/montsinger/rebound/rev4/rules.mk index ba8dfc316..9d9d7aec5 100644 --- a/keyboards/montsinger/rebound/rev4/rules.mk +++ b/keyboards/montsinger/rebound/rev4/rules.mk | |||
@@ -22,7 +22,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
28 | ENCODER_ENABLE = yes | 27 | ENCODER_ENABLE = yes |
diff --git a/keyboards/montsinger/rewind/rules.mk b/keyboards/montsinger/rewind/rules.mk index 0fd7eb744..e3c260839 100644 --- a/keyboards/montsinger/rewind/rules.mk +++ b/keyboards/montsinger/rewind/rules.mk | |||
@@ -22,6 +22,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
22 | NKRO_ENABLE = no # USB Nkey Rollover | 22 | NKRO_ENABLE = no # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 24 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
25 | MIDI_ENABLE = no # MIDI support | ||
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/moon/rules.mk b/keyboards/moon/rules.mk index 0748aa29c..d5dc29e23 100644 --- a/keyboards/moon/rules.mk +++ b/keyboards/moon/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mountainblocks/mb17/rules.mk b/keyboards/mountainblocks/mb17/rules.mk index 612a69b39..1448508c2 100644 --- a/keyboards/mountainblocks/mb17/rules.mk +++ b/keyboards/mountainblocks/mb17/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/mt40/config.h b/keyboards/mt40/config.h index cb8882457..8e04fe38c 100644 --- a/keyboards/mt40/config.h +++ b/keyboards/mt40/config.h | |||
@@ -166,24 +166,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
166 | //#define NO_ACTION_MACRO | 166 | //#define NO_ACTION_MACRO |
167 | //#define NO_ACTION_FUNCTION | 167 | //#define NO_ACTION_FUNCTION |
168 | 168 | ||
169 | /* | ||
170 | * MIDI options | ||
171 | */ | ||
172 | |||
173 | /* enable basic MIDI features: | ||
174 | - MIDI notes can be sent when in Music mode is on | ||
175 | */ | ||
176 | //#define MIDI_BASIC | ||
177 | |||
178 | /* enable advanced MIDI features: | ||
179 | - MIDI notes can be added to the keymap | ||
180 | - Octave shift and transpose | ||
181 | - Virtual sustain, portamento, and modulation wheel | ||
182 | - etc. | ||
183 | */ | ||
184 | //#define MIDI_ADVANCED | ||
185 | |||
186 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
187 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
188 | |||
189 | #endif | 169 | #endif |
diff --git a/keyboards/mt40/rules.mk b/keyboards/mt40/rules.mk index a02cf4230..4248e1a9f 100644 --- a/keyboards/mt40/rules.mk +++ b/keyboards/mt40/rules.mk | |||
@@ -19,7 +19,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ # nkro-doesnt-work | 20 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ # nkro-doesnt-work |
21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/murcielago/rev1/rules.mk b/keyboards/murcielago/rev1/rules.mk index 7e57164ab..bb77ecbf2 100644 --- a/keyboards/murcielago/rev1/rules.mk +++ b/keyboards/murcielago/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | SPLIT_KEYBOARD = yes # Enable split keyboard mode | 30 | SPLIT_KEYBOARD = yes # Enable split keyboard mode |
diff --git a/keyboards/nafuda/rules.mk b/keyboards/nafuda/rules.mk index b11b77542..6a7f175ab 100644 --- a/keyboards/nafuda/rules.mk +++ b/keyboards/nafuda/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/naked48/rules.mk b/keyboards/naked48/rules.mk index 89c533606..4db4513f9 100644 --- a/keyboards/naked48/rules.mk +++ b/keyboards/naked48/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/naked60/rules.mk b/keyboards/naked60/rules.mk index 856f6f6e3..39773631f 100644 --- a/keyboards/naked60/rules.mk +++ b/keyboards/naked60/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = yes # Commands for debug and configuration | 22 | COMMAND_ENABLE = yes # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/naked64/rules.mk b/keyboards/naked64/rules.mk index c77df15f4..0e7e4bf83 100644 --- a/keyboards/naked64/rules.mk +++ b/keyboards/naked64/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = yes # Commands for debug and configuration | 21 | COMMAND_ENABLE = yes # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/namecard2x4/rev1/config.h b/keyboards/namecard2x4/rev1/config.h index 73ad7cdb5..0ca114a75 100644 --- a/keyboards/namecard2x4/rev1/config.h +++ b/keyboards/namecard2x4/rev1/config.h | |||
@@ -163,23 +163,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
163 | //#define NO_ACTION_MACRO | 163 | //#define NO_ACTION_MACRO |
164 | //#define NO_ACTION_FUNCTION | 164 | //#define NO_ACTION_FUNCTION |
165 | 165 | ||
166 | /* | ||
167 | * MIDI options | ||
168 | */ | ||
169 | |||
170 | /* enable basic MIDI features: | ||
171 | - MIDI notes can be sent when in Music mode is on | ||
172 | */ | ||
173 | //#define MIDI_BASIC | ||
174 | |||
175 | /* enable advanced MIDI features: | ||
176 | - MIDI notes can be added to the keymap | ||
177 | - Octave shift and transpose | ||
178 | - Virtual sustain, portamento, and modulation wheel | ||
179 | - etc. | ||
180 | */ | ||
181 | //#define MIDI_ADVANCED | ||
182 | |||
183 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
184 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
185 | |||
diff --git a/keyboards/namecard2x4/rev2/config.h b/keyboards/namecard2x4/rev2/config.h index 5ed6f6b66..44b8a712a 100644 --- a/keyboards/namecard2x4/rev2/config.h +++ b/keyboards/namecard2x4/rev2/config.h | |||
@@ -163,23 +163,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
163 | //#define NO_ACTION_MACRO | 163 | //#define NO_ACTION_MACRO |
164 | //#define NO_ACTION_FUNCTION | 164 | //#define NO_ACTION_FUNCTION |
165 | 165 | ||
166 | /* | ||
167 | * MIDI options | ||
168 | */ | ||
169 | |||
170 | /* enable basic MIDI features: | ||
171 | - MIDI notes can be sent when in Music mode is on | ||
172 | */ | ||
173 | //#define MIDI_BASIC | ||
174 | |||
175 | /* enable advanced MIDI features: | ||
176 | - MIDI notes can be added to the keymap | ||
177 | - Octave shift and transpose | ||
178 | - Virtual sustain, portamento, and modulation wheel | ||
179 | - etc. | ||
180 | */ | ||
181 | //#define MIDI_ADVANCED | ||
182 | |||
183 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
184 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
185 | |||
diff --git a/keyboards/namecard2x4/rules.mk b/keyboards/namecard2x4/rules.mk index 75add6927..f969bbbb6 100644 --- a/keyboards/namecard2x4/rules.mk +++ b/keyboards/namecard2x4/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/navi10/rev0/rules.mk b/keyboards/navi10/rev0/rules.mk index 3909aeecb..967547396 100644 --- a/keyboards/navi10/rev0/rules.mk +++ b/keyboards/navi10/rev0/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/navi10/rev2/rules.mk b/keyboards/navi10/rev2/rules.mk index 3909aeecb..967547396 100644 --- a/keyboards/navi10/rev2/rules.mk +++ b/keyboards/navi10/rev2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/navi10/rev3/rules.mk b/keyboards/navi10/rev3/rules.mk index 69bfefceb..61b2452ed 100644 --- a/keyboards/navi10/rev3/rules.mk +++ b/keyboards/navi10/rev3/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/ncc1701kb/rules.mk b/keyboards/ncc1701kb/rules.mk index 43539a192..d7f65a7ec 100644 --- a/keyboards/ncc1701kb/rules.mk +++ b/keyboards/ncc1701kb/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/nek_type_a/rules.mk b/keyboards/nek_type_a/rules.mk index d6c6982f0..b137b4478 100644 --- a/keyboards/nek_type_a/rules.mk +++ b/keyboards/nek_type_a/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/newgame40/rules.mk b/keyboards/newgame40/rules.mk index 6cfb8fd72..ca508d7b5 100644 --- a/keyboards/newgame40/rules.mk +++ b/keyboards/newgame40/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = yes # Unicode | 26 | UNICODE_ENABLE = yes # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/nightly_boards/alter/rev1/rules.mk b/keyboards/nightly_boards/alter/rev1/rules.mk index 98717f50e..12710094c 100644 --- a/keyboards/nightly_boards/alter/rev1/rules.mk +++ b/keyboards/nightly_boards/alter/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
31 | 30 | ||
diff --git a/keyboards/nightly_boards/n87/config.h b/keyboards/nightly_boards/n87/config.h index 0315119d8..7d81bf7fd 100644 --- a/keyboards/nightly_boards/n87/config.h +++ b/keyboards/nightly_boards/n87/config.h | |||
@@ -200,26 +200,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
200 | #define NO_ACTION_MACRO | 200 | #define NO_ACTION_MACRO |
201 | #define NO_ACTION_FUNCTION | 201 | #define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | // #define BOOTMAGIC_LITE_ROW 0 | 204 | // #define BOOTMAGIC_LITE_ROW 0 |
225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 205 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/nightmare/config.h b/keyboards/nightmare/config.h index f001d6221..3282c8ae2 100644 --- a/keyboards/nightmare/config.h +++ b/keyboards/nightmare/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | #define BOOTMAGIC_LITE_ROW 0 | 196 | #define BOOTMAGIC_LITE_ROW 0 |
217 | #define BOOTMAGIC_LITE_COLUMN 1 | 197 | #define BOOTMAGIC_LITE_COLUMN 1 |
diff --git a/keyboards/nightmare/rules.mk b/keyboards/nightmare/rules.mk index 4d10e5f8e..e28da405c 100644 --- a/keyboards/nightmare/rules.mk +++ b/keyboards/nightmare/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/niu_mini/rules.mk b/keyboards/niu_mini/rules.mk index 10655b4c6..7b324cf1f 100644 --- a/keyboards/niu_mini/rules.mk +++ b/keyboards/niu_mini/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/nomu30/rev1/rules.mk b/keyboards/nomu30/rev1/rules.mk index b227112be..7f143c799 100644 --- a/keyboards/nomu30/rev1/rules.mk +++ b/keyboards/nomu30/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/nomu30/rev2/rules.mk b/keyboards/nomu30/rev2/rules.mk index 7e67f2ce7..769316003 100644 --- a/keyboards/nomu30/rev2/rules.mk +++ b/keyboards/nomu30/rev2/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/novelpad/config.h b/keyboards/novelpad/config.h index fdee941f1..0b8edcf19 100755 --- a/keyboards/novelpad/config.h +++ b/keyboards/novelpad/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
217 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/220/config.h b/keyboards/noxary/220/config.h index 78da8ccbc..d935d2fe4 100644 --- a/keyboards/noxary/220/config.h +++ b/keyboards/noxary/220/config.h | |||
@@ -165,26 +165,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
188 | /* Bootmagic Lite key configuration */ | 168 | /* Bootmagic Lite key configuration */ |
189 | // #define BOOTMAGIC_LITE_ROW 0 | 169 | // #define BOOTMAGIC_LITE_ROW 0 |
190 | // #define BOOTMAGIC_LITE_COLUMN 0 | 170 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/220/rules.mk b/keyboards/noxary/220/rules.mk index 5a4720134..d6cc49724 100644 --- a/keyboards/noxary/220/rules.mk +++ b/keyboards/noxary/220/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/noxary/260/config.h b/keyboards/noxary/260/config.h index b447dec69..e6d5e78b4 100644 --- a/keyboards/noxary/260/config.h +++ b/keyboards/noxary/260/config.h | |||
@@ -198,26 +198,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
198 | //#define NO_ACTION_MACRO | 198 | //#define NO_ACTION_MACRO |
199 | //#define NO_ACTION_FUNCTION | 199 | //#define NO_ACTION_FUNCTION |
200 | 200 | ||
201 | /* | ||
202 | * MIDI options | ||
203 | */ | ||
204 | |||
205 | /* enable basic MIDI features: | ||
206 | - MIDI notes can be sent when in Music mode is on | ||
207 | */ | ||
208 | //#define MIDI_BASIC | ||
209 | |||
210 | /* enable advanced MIDI features: | ||
211 | - MIDI notes can be added to the keymap | ||
212 | - Octave shift and transpose | ||
213 | - Virtual sustain, portamento, and modulation wheel | ||
214 | - etc. | ||
215 | */ | ||
216 | //#define MIDI_ADVANCED | ||
217 | |||
218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
220 | |||
221 | /* Bootmagic Lite key configuration */ | 201 | /* Bootmagic Lite key configuration */ |
222 | // #define BOOTMAGIC_LITE_ROW 0 | 202 | // #define BOOTMAGIC_LITE_ROW 0 |
223 | // #define BOOTMAGIC_LITE_COLUMN 0 | 203 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/260/rules.mk b/keyboards/noxary/260/rules.mk index 52e9e2efc..7053225db 100644 --- a/keyboards/noxary/260/rules.mk +++ b/keyboards/noxary/260/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/noxary/268/rules.mk b/keyboards/noxary/268/rules.mk index 1122c094e..fcd8c566c 100644 --- a/keyboards/noxary/268/rules.mk +++ b/keyboards/noxary/268/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/noxary/268_2/config.h b/keyboards/noxary/268_2/config.h index 960977fa0..d7baf3b6a 100644 --- a/keyboards/noxary/268_2/config.h +++ b/keyboards/noxary/268_2/config.h | |||
@@ -166,26 +166,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
166 | //#define NO_ACTION_MACRO | 166 | //#define NO_ACTION_MACRO |
167 | //#define NO_ACTION_FUNCTION | 167 | //#define NO_ACTION_FUNCTION |
168 | 168 | ||
169 | /* | ||
170 | * MIDI options | ||
171 | */ | ||
172 | |||
173 | /* enable basic MIDI features: | ||
174 | - MIDI notes can be sent when in Music mode is on | ||
175 | */ | ||
176 | //#define MIDI_BASIC | ||
177 | |||
178 | /* enable advanced MIDI features: | ||
179 | - MIDI notes can be added to the keymap | ||
180 | - Octave shift and transpose | ||
181 | - Virtual sustain, portamento, and modulation wheel | ||
182 | - etc. | ||
183 | */ | ||
184 | //#define MIDI_ADVANCED | ||
185 | |||
186 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
187 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
188 | |||
189 | /* Bootmagic Lite key configuration */ | 169 | /* Bootmagic Lite key configuration */ |
190 | // #define BOOTMAGIC_LITE_ROW 0 | 170 | // #define BOOTMAGIC_LITE_ROW 0 |
191 | // #define BOOTMAGIC_LITE_COLUMN 0 | 171 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/268_2/rules.mk b/keyboards/noxary/268_2/rules.mk index b9ec6099a..ecd9c7d00 100644 --- a/keyboards/noxary/268_2/rules.mk +++ b/keyboards/noxary/268_2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/noxary/280/config.h b/keyboards/noxary/280/config.h index 53a6e5733..b1b123a63 100644 --- a/keyboards/noxary/280/config.h +++ b/keyboards/noxary/280/config.h | |||
@@ -165,26 +165,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
188 | /* Bootmagic Lite key configuration */ | 168 | /* Bootmagic Lite key configuration */ |
189 | // #define BOOTMAGIC_LITE_ROW 0 | 169 | // #define BOOTMAGIC_LITE_ROW 0 |
190 | // #define BOOTMAGIC_LITE_COLUMN 0 | 170 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/280/rules.mk b/keyboards/noxary/280/rules.mk index 30cbe2ce6..6b61a0d43 100644 --- a/keyboards/noxary/280/rules.mk +++ b/keyboards/noxary/280/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/noxary/x268/config.h b/keyboards/noxary/x268/config.h index 00a696fb7..a6da7ef83 100644 --- a/keyboards/noxary/x268/config.h +++ b/keyboards/noxary/x268/config.h | |||
@@ -168,26 +168,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
168 | //#define NO_ACTION_MACRO | 168 | //#define NO_ACTION_MACRO |
169 | //#define NO_ACTION_FUNCTION | 169 | //#define NO_ACTION_FUNCTION |
170 | 170 | ||
171 | /* | ||
172 | * MIDI options | ||
173 | */ | ||
174 | |||
175 | /* enable basic MIDI features: | ||
176 | - MIDI notes can be sent when in Music mode is on | ||
177 | */ | ||
178 | //#define MIDI_BASIC | ||
179 | |||
180 | /* enable advanced MIDI features: | ||
181 | - MIDI notes can be added to the keymap | ||
182 | - Octave shift and transpose | ||
183 | - Virtual sustain, portamento, and modulation wheel | ||
184 | - etc. | ||
185 | */ | ||
186 | //#define MIDI_ADVANCED | ||
187 | |||
188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
190 | |||
191 | /* Bootmagic Lite key configuration */ | 171 | /* Bootmagic Lite key configuration */ |
192 | // #define BOOTMAGIC_LITE_ROW 0 | 172 | // #define BOOTMAGIC_LITE_ROW 0 |
193 | // #define BOOTMAGIC_LITE_COLUMN 0 | 173 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/noxary/x268/rules.mk b/keyboards/noxary/x268/rules.mk index 7d620ba5a..5b465241a 100644 --- a/keyboards/noxary/x268/rules.mk +++ b/keyboards/noxary/x268/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/nullbitsco/nibble/rules.mk b/keyboards/nullbitsco/nibble/rules.mk index 59eb60976..233e75568 100644 --- a/keyboards/nullbitsco/nibble/rules.mk +++ b/keyboards/nullbitsco/nibble/rules.mk | |||
@@ -16,7 +16,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
16 | NKRO_ENABLE = yes # USB Nkey Rollover | 16 | NKRO_ENABLE = yes # USB Nkey Rollover |
17 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 17 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
18 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 18 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
19 | MIDI_ENABLE = no # MIDI support | ||
20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 19 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
21 | AUDIO_ENABLE = no # Audio output on port C6 | 20 | AUDIO_ENABLE = no # Audio output on port C6 |
22 | ENCODER_ENABLE = yes # Use rotary encoder | 21 | ENCODER_ENABLE = yes # Use rotary encoder |
diff --git a/keyboards/numatreus/rules.mk b/keyboards/numatreus/rules.mk index 5a24ec171..adfe4d977 100644 --- a/keyboards/numatreus/rules.mk +++ b/keyboards/numatreus/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | #BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | #MIDI_ENABLE = no # MIDI controls | ||
25 | UNICODE_ENABLE = yes # Unicode | 24 | UNICODE_ENABLE = yes # Unicode |
26 | #BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | #BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | #TAP_DANCE_ENABLE = yes | 26 | #TAP_DANCE_ENABLE = yes |
diff --git a/keyboards/oddball/config.h b/keyboards/oddball/config.h index 203b61c54..050084d2d 100644 --- a/keyboards/oddball/config.h +++ b/keyboards/oddball/config.h | |||
@@ -55,26 +55,6 @@ | |||
55 | #define CPI_2 4000 | 55 | #define CPI_2 4000 |
56 | #define CPI_3 8000 | 56 | #define CPI_3 8000 |
57 | 57 | ||
58 | /* | ||
59 | * MIDI options | ||
60 | */ | ||
61 | |||
62 | /* enable basic MIDI features: | ||
63 | - MIDI notes can be sent when in Music mode is on | ||
64 | */ | ||
65 | //#define MIDI_BASIC | ||
66 | |||
67 | /* enable advanced MIDI features: | ||
68 | - MIDI notes can be added to the keymap | ||
69 | - Octave shift and transpose | ||
70 | - Virtual sustain, portamento, and modulation wheel | ||
71 | - etc. | ||
72 | */ | ||
73 | //#define MIDI_ADVANCED | ||
74 | |||
75 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
76 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
77 | |||
78 | /* Bootmagic Lite key configuration */ | 58 | /* Bootmagic Lite key configuration */ |
79 | // #define BOOTMAGIC_LITE_ROW 0 | 59 | // #define BOOTMAGIC_LITE_ROW 0 |
80 | // #define BOOTMAGIC_LITE_COLUMN 0 | 60 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/oddball/rules.mk b/keyboards/oddball/rules.mk index 64258c2db..d9ab4b130 100644 --- a/keyboards/oddball/rules.mk +++ b/keyboards/oddball/rules.mk | |||
@@ -15,7 +15,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
15 | NKRO_ENABLE = no # USB Nkey Rollover | 15 | NKRO_ENABLE = no # USB Nkey Rollover |
16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 16 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 17 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
18 | MIDI_ENABLE = no # MIDI support | ||
19 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 18 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
20 | AUDIO_ENABLE = no # Audio output on port C6 | 19 | AUDIO_ENABLE = no # Audio output on port C6 |
21 | 20 | ||
diff --git a/keyboards/ogre/ergo_single/rules.mk b/keyboards/ogre/ergo_single/rules.mk index bb69e62a1..b2cdf8f90 100644 --- a/keyboards/ogre/ergo_single/rules.mk +++ b/keyboards/ogre/ergo_single/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | SPLIT_KEYBOARD = no | 30 | SPLIT_KEYBOARD = no |
diff --git a/keyboards/ogre/ergo_split/rules.mk b/keyboards/ogre/ergo_split/rules.mk index 7b33b6282..98202855f 100644 --- a/keyboards/ogre/ergo_split/rules.mk +++ b/keyboards/ogre/ergo_split/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | SPLIT_KEYBOARD = yes | 30 | SPLIT_KEYBOARD = yes |
diff --git a/keyboards/ok60/rules.mk b/keyboards/ok60/rules.mk index 98047b5fb..203b66f74 100644 --- a/keyboards/ok60/rules.mk +++ b/keyboards/ok60/rules.mk | |||
@@ -23,7 +23,7 @@ KEYBOARD_LOCK_ENABLE = yes # Allow locking of keyboard via magic key | |||
23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | RGBLIGHT_ENABLE = yes # Enable the RGB backlight | 25 | RGBLIGHT_ENABLE = yes # Enable the RGB backlight |
26 | # MIDI_ENABLE = YES # MIDI controls | 26 | MIDI_ENABLE = no # MIDI support |
27 | # UNICODE_ENABLE = YES # Unicode | 27 | # UNICODE_ENABLE = YES # Unicode |
28 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | 29 | ||
diff --git a/keyboards/org60/rules.mk b/keyboards/org60/rules.mk index 106093264..3ffe42f61 100644 --- a/keyboards/org60/rules.mk +++ b/keyboards/org60/rules.mk | |||
@@ -19,7 +19,6 @@ BOOTMAGIC_ENABLE = lite # Enable Bootmagic Lite | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | CONSOLE_ENABLE = no # Console for debug | 20 | CONSOLE_ENABLE = no # Console for debug |
21 | EXTRAKEY_ENABLE = yes # Audio control and System control | 21 | EXTRAKEY_ENABLE = yes # Audio control and System control |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | MOUSEKEY_ENABLE = yes # Mouse keys | 22 | MOUSEKEY_ENABLE = yes # Mouse keys |
24 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 24 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
diff --git a/keyboards/ortho5by12/rules.mk b/keyboards/ortho5by12/rules.mk index 469b577c4..602219654 100644 --- a/keyboards/ortho5by12/rules.mk +++ b/keyboards/ortho5by12/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/orthodox/rules.mk b/keyboards/orthodox/rules.mk index 6cadb4ed1..f23197e5b 100644 --- a/keyboards/orthodox/rules.mk +++ b/keyboards/orthodox/rules.mk | |||
@@ -12,7 +12,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
12 | COMMAND_ENABLE = yes # Commands for debug and configuration | 12 | COMMAND_ENABLE = yes # Commands for debug and configuration |
13 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 13 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
14 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 14 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
15 | MIDI_ENABLE = no # MIDI controls | ||
16 | AUDIO_ENABLE = no # Audio output on port C6 | 15 | AUDIO_ENABLE = no # Audio output on port C6 |
17 | UNICODE_ENABLE = no # Unicode | 16 | UNICODE_ENABLE = no # Unicode |
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/otaku_split/rev0/config.h b/keyboards/otaku_split/rev0/config.h index de1eb634e..00e003e3b 100644 --- a/keyboards/otaku_split/rev0/config.h +++ b/keyboards/otaku_split/rev0/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/otaku_split/rev0/rules.mk b/keyboards/otaku_split/rev0/rules.mk index edd6ad281..9b391f669 100644 --- a/keyboards/otaku_split/rev0/rules.mk +++ b/keyboards/otaku_split/rev0/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/otaku_split/rev1/config.h b/keyboards/otaku_split/rev1/config.h index c9b7ed4c4..ce9a78db7 100644 --- a/keyboards/otaku_split/rev1/config.h +++ b/keyboards/otaku_split/rev1/config.h | |||
@@ -198,26 +198,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
198 | //#define NO_ACTION_MACRO | 198 | //#define NO_ACTION_MACRO |
199 | //#define NO_ACTION_FUNCTION | 199 | //#define NO_ACTION_FUNCTION |
200 | 200 | ||
201 | /* | ||
202 | * MIDI options | ||
203 | */ | ||
204 | |||
205 | /* enable basic MIDI features: | ||
206 | - MIDI notes can be sent when in Music mode is on | ||
207 | */ | ||
208 | //#define MIDI_BASIC | ||
209 | |||
210 | /* enable advanced MIDI features: | ||
211 | - MIDI notes can be added to the keymap | ||
212 | - Octave shift and transpose | ||
213 | - Virtual sustain, portamento, and modulation wheel | ||
214 | - etc. | ||
215 | */ | ||
216 | //#define MIDI_ADVANCED | ||
217 | |||
218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
220 | |||
221 | /* Bootmagic Lite key configuration */ | 201 | /* Bootmagic Lite key configuration */ |
222 | // #define BOOTMAGIC_LITE_ROW 0 | 202 | // #define BOOTMAGIC_LITE_ROW 0 |
223 | // #define BOOTMAGIC_LITE_COLUMN 0 | 203 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/otaku_split/rev1/rules.mk b/keyboards/otaku_split/rev1/rules.mk index edd6ad281..9b391f669 100644 --- a/keyboards/otaku_split/rev1/rules.mk +++ b/keyboards/otaku_split/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/pabile/p18/rules.mk b/keyboards/pabile/p18/rules.mk index 8346fb257..e46c16a8d 100644 --- a/keyboards/pabile/p18/rules.mk +++ b/keyboards/pabile/p18/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/pabile/p40/rules.mk b/keyboards/pabile/p40/rules.mk index 4a6033eb2..07098307c 100644 --- a/keyboards/pabile/p40/rules.mk +++ b/keyboards/pabile/p40/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/palette1202/rules.mk b/keyboards/palette1202/rules.mk index 2c278a6f3..fc4729194 100644 --- a/keyboards/palette1202/rules.mk +++ b/keyboards/palette1202/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | ENCODER_ENABLE = yes # Enable support for rotary encoders | 30 | ENCODER_ENABLE = yes # Enable support for rotary encoders |
diff --git a/keyboards/panc40/rules.mk b/keyboards/panc40/rules.mk index 6c55a187c..925c7bfdc 100644 --- a/keyboards/panc40/rules.mk +++ b/keyboards/panc40/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/pdxkbc/config.h b/keyboards/pdxkbc/config.h index 414c1024a..2748b6309 100644 --- a/keyboards/pdxkbc/config.h +++ b/keyboards/pdxkbc/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/pdxkbc/rules.mk b/keyboards/pdxkbc/rules.mk index e0192c117..6e747adc4 100644 --- a/keyboards/pdxkbc/rules.mk +++ b/keyboards/pdxkbc/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/percent/booster/rules.mk b/keyboards/percent/booster/rules.mk index 1c9a5390e..b08679411 100644 --- a/keyboards/percent/booster/rules.mk +++ b/keyboards/percent/booster/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/pico/rules.mk b/keyboards/pico/rules.mk index e1160e49b..9f4f1a528 100644 --- a/keyboards/pico/rules.mk +++ b/keyboards/pico/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/planck/ez/config.h b/keyboards/planck/ez/config.h index ffc2d14c6..4d1f1e92f 100644 --- a/keyboards/planck/ez/config.h +++ b/keyboards/planck/ez/config.h | |||
@@ -109,26 +109,6 @@ | |||
109 | //#define NO_ACTION_MACRO | 109 | //#define NO_ACTION_MACRO |
110 | //#define NO_ACTION_FUNCTION | 110 | //#define NO_ACTION_FUNCTION |
111 | 111 | ||
112 | /* | ||
113 | * MIDI options | ||
114 | */ | ||
115 | |||
116 | /* enable basic MIDI features: | ||
117 | - MIDI notes can be sent when in Music mode is on | ||
118 | */ | ||
119 | //#define MIDI_BASIC | ||
120 | |||
121 | /* enable advanced MIDI features: | ||
122 | - MIDI notes can be added to the keymap | ||
123 | - Octave shift and transpose | ||
124 | - Virtual sustain, portamento, and modulation wheel | ||
125 | - etc. | ||
126 | */ | ||
127 | //#define MIDI_ADVANCED | ||
128 | |||
129 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
130 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
131 | |||
132 | // #define WS2812_LED_N 2 | 112 | // #define WS2812_LED_N 2 |
133 | // #define RGBLED_NUM WS2812_LED_N | 113 | // #define RGBLED_NUM WS2812_LED_N |
134 | // #define WS2812_TIM_N 2 | 114 | // #define WS2812_TIM_N 2 |
diff --git a/keyboards/planck/ez/rules.mk b/keyboards/planck/ez/rules.mk index 8b723e909..df5c983c3 100644 --- a/keyboards/planck/ez/rules.mk +++ b/keyboards/planck/ez/rules.mk | |||
@@ -16,7 +16,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
16 | COMMAND_ENABLE = yes # Commands for debug and configuration | 16 | COMMAND_ENABLE = yes # Commands for debug and configuration |
17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
19 | MIDI_ENABLE = no # MIDI controls | ||
20 | AUDIO_ENABLE = yes # Audio output on port C6 | 19 | AUDIO_ENABLE = yes # Audio output on port C6 |
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/light/rules.mk b/keyboards/planck/light/rules.mk index 67bcd25be..10e9f0b29 100644 --- a/keyboards/planck/light/rules.mk +++ b/keyboards/planck/light/rules.mk | |||
@@ -22,7 +22,7 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = yes # MIDI controls | 25 | MIDI_ENABLE = yes # MIDI support |
26 | AUDIO_ENABLE = yes # Audio output on port C6 | 26 | AUDIO_ENABLE = yes # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev1/rules.mk b/keyboards/planck/rev1/rules.mk index 31fed983b..30fcd1284 100644 --- a/keyboards/planck/rev1/rules.mk +++ b/keyboards/planck/rev1/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev2/rules.mk b/keyboards/planck/rev2/rules.mk index 31fed983b..30fcd1284 100644 --- a/keyboards/planck/rev2/rules.mk +++ b/keyboards/planck/rev2/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev3/rules.mk b/keyboards/planck/rev3/rules.mk index 31fed983b..30fcd1284 100644 --- a/keyboards/planck/rev3/rules.mk +++ b/keyboards/planck/rev3/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev4/rules.mk b/keyboards/planck/rev4/rules.mk index be40b0dd8..2f988ebbe 100644 --- a/keyboards/planck/rev4/rules.mk +++ b/keyboards/planck/rev4/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = yes # Audio output on port C6 | 25 | AUDIO_ENABLE = yes # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev5/rules.mk b/keyboards/planck/rev5/rules.mk index 304b08b3a..5c3284d7a 100644 --- a/keyboards/planck/rev5/rules.mk +++ b/keyboards/planck/rev5/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = yes # Audio output on port C6 | 25 | AUDIO_ENABLE = yes # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/planck/rev6/config.h b/keyboards/planck/rev6/config.h index 44ae7d277..bae075de1 100644 --- a/keyboards/planck/rev6/config.h +++ b/keyboards/planck/rev6/config.h | |||
@@ -106,26 +106,6 @@ | |||
106 | //#define NO_ACTION_MACRO | 106 | //#define NO_ACTION_MACRO |
107 | //#define NO_ACTION_FUNCTION | 107 | //#define NO_ACTION_FUNCTION |
108 | 108 | ||
109 | /* | ||
110 | * MIDI options | ||
111 | */ | ||
112 | |||
113 | /* enable basic MIDI features: | ||
114 | - MIDI notes can be sent when in Music mode is on | ||
115 | */ | ||
116 | //#define MIDI_BASIC | ||
117 | |||
118 | /* enable advanced MIDI features: | ||
119 | - MIDI notes can be added to the keymap | ||
120 | - Octave shift and transpose | ||
121 | - Virtual sustain, portamento, and modulation wheel | ||
122 | - etc. | ||
123 | */ | ||
124 | //#define MIDI_ADVANCED | ||
125 | |||
126 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
127 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
128 | |||
129 | 109 | ||
130 | /* | 110 | /* |
131 | * WS2812 Underglow Matrix options | 111 | * WS2812 Underglow Matrix options |
diff --git a/keyboards/planck/rev6/rules.mk b/keyboards/planck/rev6/rules.mk index 3e62cd854..e1de4a10b 100644 --- a/keyboards/planck/rev6/rules.mk +++ b/keyboards/planck/rev6/rules.mk | |||
@@ -16,7 +16,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
16 | COMMAND_ENABLE = yes # Commands for debug and configuration | 16 | COMMAND_ENABLE = yes # Commands for debug and configuration |
17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
19 | MIDI_ENABLE = no # MIDI controls | ||
20 | AUDIO_ENABLE = yes # Audio output | 19 | AUDIO_ENABLE = yes # Audio output |
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/preonic/rev1/rules.mk b/keyboards/preonic/rev1/rules.mk index 2458f3c54..5f9cd5200 100644 --- a/keyboards/preonic/rev1/rules.mk +++ b/keyboards/preonic/rev1/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = yes # Audio output | 25 | AUDIO_ENABLE = yes # Audio output |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/preonic/rev2/rules.mk b/keyboards/preonic/rev2/rules.mk index b2567f915..00db8cc39 100644 --- a/keyboards/preonic/rev2/rules.mk +++ b/keyboards/preonic/rev2/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = yes # Audio output | 25 | AUDIO_ENABLE = yes # Audio output |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/preonic/rev3/config.h b/keyboards/preonic/rev3/config.h index 0e8312445..420e7e541 100644 --- a/keyboards/preonic/rev3/config.h +++ b/keyboards/preonic/rev3/config.h | |||
@@ -94,26 +94,6 @@ | |||
94 | //#define NO_ACTION_FUNCTION | 94 | //#define NO_ACTION_FUNCTION |
95 | 95 | ||
96 | /* | 96 | /* |
97 | * MIDI options | ||
98 | */ | ||
99 | |||
100 | /* enable basic MIDI features: | ||
101 | - MIDI notes can be sent when in Music mode is on | ||
102 | */ | ||
103 | //#define MIDI_BASIC | ||
104 | |||
105 | /* enable advanced MIDI features: | ||
106 | - MIDI notes can be added to the keymap | ||
107 | - Octave shift and transpose | ||
108 | - Virtual sustain, portamento, and modulation wheel | ||
109 | - etc. | ||
110 | */ | ||
111 | //#define MIDI_ADVANCED | ||
112 | |||
113 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
114 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
115 | |||
116 | /* | ||
117 | * WS2812 Underglow Matrix options | 97 | * WS2812 Underglow Matrix options |
118 | */ | 98 | */ |
119 | #define RGB_DI_PIN A1 | 99 | #define RGB_DI_PIN A1 |
diff --git a/keyboards/preonic/rev3/rules.mk b/keyboards/preonic/rev3/rules.mk index 9e89fec8f..04760b4d2 100644 --- a/keyboards/preonic/rev3/rules.mk +++ b/keyboards/preonic/rev3/rules.mk | |||
@@ -16,7 +16,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
16 | COMMAND_ENABLE = yes # Commands for debug and configuration | 16 | COMMAND_ENABLE = yes # Commands for debug and configuration |
17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 18 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
19 | MIDI_ENABLE = no # MIDI controls | ||
20 | AUDIO_ENABLE = yes # Audio output | 19 | AUDIO_ENABLE = yes # Audio output |
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/primekb/prime_l/rules.mk b/keyboards/primekb/prime_l/rules.mk index 603600ef2..7ae142c83 100644 --- a/keyboards/primekb/prime_l/rules.mk +++ b/keyboards/primekb/prime_l/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/primekb/prime_m/rules.mk b/keyboards/primekb/prime_m/rules.mk index 9de9bf430..f2d849b07 100644 --- a/keyboards/primekb/prime_m/rules.mk +++ b/keyboards/primekb/prime_m/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/primekb/prime_o/rules.mk b/keyboards/primekb/prime_o/rules.mk index 26d37070c..e8dde0f85 100644 --- a/keyboards/primekb/prime_o/rules.mk +++ b/keyboards/primekb/prime_o/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/projectkb/alice/rev1/rules.mk b/keyboards/projectkb/alice/rev1/rules.mk index ce10d12a6..f050f03de 100644 --- a/keyboards/projectkb/alice/rev1/rules.mk +++ b/keyboards/projectkb/alice/rev1/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | WS2812_DRIVER = spi | 23 | WS2812_DRIVER = spi |
diff --git a/keyboards/projectkb/alice/rev2/rules.mk b/keyboards/projectkb/alice/rev2/rules.mk index ce10d12a6..f050f03de 100644 --- a/keyboards/projectkb/alice/rev2/rules.mk +++ b/keyboards/projectkb/alice/rev2/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | WS2812_DRIVER = spi | 23 | WS2812_DRIVER = spi |
diff --git a/keyboards/puck/rules.mk b/keyboards/puck/rules.mk index b05657bec..2c7de6f60 100644 --- a/keyboards/puck/rules.mk +++ b/keyboards/puck/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/quad_h/lb75/rules.mk b/keyboards/quad_h/lb75/rules.mk index e0b664f18..17b9d61e1 100644 --- a/keyboards/quad_h/lb75/rules.mk +++ b/keyboards/quad_h/lb75/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/quantrik/kyuu/config.h b/keyboards/quantrik/kyuu/config.h index 720ef0e1d..924395ebc 100644 --- a/keyboards/quantrik/kyuu/config.h +++ b/keyboards/quantrik/kyuu/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/quantrik/kyuu/rules.mk b/keyboards/quantrik/kyuu/rules.mk index 67398323e..e7b73f7f9 100644 --- a/keyboards/quantrik/kyuu/rules.mk +++ b/keyboards/quantrik/kyuu/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/qwertyydox/config.h b/keyboards/qwertyydox/config.h index 386a1fae9..cc77cf9c1 100644 --- a/keyboards/qwertyydox/config.h +++ b/keyboards/qwertyydox/config.h | |||
@@ -200,26 +200,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
200 | //#define NO_ACTION_MACRO | 200 | //#define NO_ACTION_MACRO |
201 | //#define NO_ACTION_FUNCTION | 201 | //#define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | // #define BOOTMAGIC_LITE_ROW 0 | 204 | // #define BOOTMAGIC_LITE_ROW 0 |
225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 205 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/qwertyydox/rules.mk b/keyboards/qwertyydox/rules.mk index e6fc573bd..50329f9cf 100644 --- a/keyboards/qwertyydox/rules.mk +++ b/keyboards/qwertyydox/rules.mk | |||
@@ -9,7 +9,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
9 | COMMAND_ENABLE = no # Commands for debug and configuration | 9 | COMMAND_ENABLE = no # Commands for debug and configuration |
10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 10 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
11 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 11 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
12 | MIDI_ENABLE = no # MIDI controls | ||
13 | AUDIO_ENABLE = no # Audio output on port C6 | 12 | AUDIO_ENABLE = no # Audio output on port C6 |
14 | UNICODE_ENABLE = no # Unicode | 13 | UNICODE_ENABLE = no # Unicode |
15 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 14 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/rabbit/rabbit68/config.h b/keyboards/rabbit/rabbit68/config.h index 33c14eda4..449f19514 100644 --- a/keyboards/rabbit/rabbit68/config.h +++ b/keyboards/rabbit/rabbit68/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/rabbit/rabbit68/rules.mk b/keyboards/rabbit/rabbit68/rules.mk index 6c6d9fc14..8597359c9 100644 --- a/keyboards/rabbit/rabbit68/rules.mk +++ b/keyboards/rabbit/rabbit68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ramonimbao/herringbone/v1/config.h b/keyboards/ramonimbao/herringbone/v1/config.h index 2d55f0916..2db97cf56 100644 --- a/keyboards/ramonimbao/herringbone/v1/config.h +++ b/keyboards/ramonimbao/herringbone/v1/config.h | |||
@@ -193,26 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | #define NO_ACTION_MACRO | 193 | #define NO_ACTION_MACRO |
194 | #define NO_ACTION_FUNCTION | 194 | #define NO_ACTION_FUNCTION |
195 | 195 | ||
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | |||
216 | /* Bootmagic Lite key configuration */ | 196 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 197 | // #define BOOTMAGIC_LITE_ROW 0 |
218 | // #define BOOTMAGIC_LITE_COLUMN 0 | 198 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/rart/rart67/rules.mk b/keyboards/rart/rart67/rules.mk index 31672c41e..efa7a821e 100644 --- a/keyboards/rart/rart67/rules.mk +++ b/keyboards/rart/rart67/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/rart/rart75/rules.mk b/keyboards/rart/rart75/rules.mk index 1b89d461c..786fe09ec 100644 --- a/keyboards/rart/rart75/rules.mk +++ b/keyboards/rart/rart75/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/redox/rules.mk b/keyboards/redox/rules.mk index 9448e2e0c..01c723f3e 100644 --- a/keyboards/redox/rules.mk +++ b/keyboards/redox/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/redox_w/rules.mk b/keyboards/redox_w/rules.mk index c0d5e3931..59af1ede0 100644 --- a/keyboards/redox_w/rules.mk +++ b/keyboards/redox_w/rules.mk | |||
@@ -24,7 +24,7 @@ CUSTOM_MATRIX = yes # Remote matrix from the wireless bridge | |||
24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | 24 | # SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend |
25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA | 25 | NKRO_ENABLE = yes # USB Nkey Rollover - not yet supported in LUFA |
26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | # BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | # MIDI_ENABLE = YES # MIDI controls | 27 | MIDI_ENABLE = no # MIDI support |
28 | UNICODE_ENABLE = YES # Unicode | 28 | UNICODE_ENABLE = YES # Unicode |
29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | # BLUETOOTH_ENABLE = yes # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | 30 | ||
diff --git a/keyboards/redscarf_i/rules.mk b/keyboards/redscarf_i/rules.mk index 877e726d2..c93ca4340 100644 --- a/keyboards/redscarf_i/rules.mk +++ b/keyboards/redscarf_i/rules.mk | |||
@@ -23,7 +23,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 25 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/redscarf_iiplus/verb/config.h b/keyboards/redscarf_iiplus/verb/config.h index 5659b53f9..6f63f7316 100755 --- a/keyboards/redscarf_iiplus/verb/config.h +++ b/keyboards/redscarf_iiplus/verb/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/redscarf_iiplus/verb/rules.mk b/keyboards/redscarf_iiplus/verb/rules.mk index 5d11ea777..f35f8b1a4 100755 --- a/keyboards/redscarf_iiplus/verb/rules.mk +++ b/keyboards/redscarf_iiplus/verb/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/redscarf_iiplus/verc/config.h b/keyboards/redscarf_iiplus/verc/config.h index 5659b53f9..6f63f7316 100755 --- a/keyboards/redscarf_iiplus/verc/config.h +++ b/keyboards/redscarf_iiplus/verc/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/redscarf_iiplus/verc/rules.mk b/keyboards/redscarf_iiplus/verc/rules.mk index 7c082ec4f..8310f5bf0 100755 --- a/keyboards/redscarf_iiplus/verc/rules.mk +++ b/keyboards/redscarf_iiplus/verc/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/redscarf_iiplus/verd/config.h b/keyboards/redscarf_iiplus/verd/config.h index abc3ae378..ca1ac9c26 100644 --- a/keyboards/redscarf_iiplus/verd/config.h +++ b/keyboards/redscarf_iiplus/verd/config.h | |||
@@ -198,26 +198,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
198 | //#define NO_ACTION_MACRO | 198 | //#define NO_ACTION_MACRO |
199 | //#define NO_ACTION_FUNCTION | 199 | //#define NO_ACTION_FUNCTION |
200 | 200 | ||
201 | /* | ||
202 | * MIDI options | ||
203 | */ | ||
204 | |||
205 | /* enable basic MIDI features: | ||
206 | - MIDI notes can be sent when in Music mode is on | ||
207 | */ | ||
208 | //#define MIDI_BASIC | ||
209 | |||
210 | /* enable advanced MIDI features: | ||
211 | - MIDI notes can be added to the keymap | ||
212 | - Octave shift and transpose | ||
213 | - Virtual sustain, portamento, and modulation wheel | ||
214 | - etc. | ||
215 | */ | ||
216 | //#define MIDI_ADVANCED | ||
217 | |||
218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
220 | |||
221 | /* Bootmagic Lite key configuration */ | 201 | /* Bootmagic Lite key configuration */ |
222 | // #define BOOTMAGIC_LITE_ROW 0 | 202 | // #define BOOTMAGIC_LITE_ROW 0 |
223 | // #define BOOTMAGIC_LITE_COLUMN 0 | 203 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/redscarf_iiplus/verd/rules.mk b/keyboards/redscarf_iiplus/verd/rules.mk index dd345b964..f9305e049 100644 --- a/keyboards/redscarf_iiplus/verd/rules.mk +++ b/keyboards/redscarf_iiplus/verd/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/retro_75/config.h b/keyboards/retro_75/config.h index 9af7af44b..78c10c3c3 100644 --- a/keyboards/retro_75/config.h +++ b/keyboards/retro_75/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | // #define BOOTMAGIC_LITE_ROW 0 | 196 | // #define BOOTMAGIC_LITE_ROW 0 |
217 | // #define BOOTMAGIC_LITE_COLUMN 0 | 197 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/retro_75/rules.mk b/keyboards/retro_75/rules.mk index d74a4d058..d39ea46b4 100644 --- a/keyboards/retro_75/rules.mk +++ b/keyboards/retro_75/rules.mk | |||
@@ -18,6 +18,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/reversestudio/decadepad/rules.mk b/keyboards/reversestudio/decadepad/rules.mk index 5a3d65244..999986783 100644 --- a/keyboards/reversestudio/decadepad/rules.mk +++ b/keyboards/reversestudio/decadepad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/reviung34/config.h b/keyboards/reviung34/config.h index 9a73c83e7..871e89c10 100755 --- a/keyboards/reviung34/config.h +++ b/keyboards/reviung34/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/reviung34/rules.mk b/keyboards/reviung34/rules.mk index 0e3405154..3395f04fe 100755 --- a/keyboards/reviung34/rules.mk +++ b/keyboards/reviung34/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/reviung39/config.h b/keyboards/reviung39/config.h index 376345b74..17cbf6734 100644 --- a/keyboards/reviung39/config.h +++ b/keyboards/reviung39/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/reviung39/rules.mk b/keyboards/reviung39/rules.mk index 0e3405154..3395f04fe 100644 --- a/keyboards/reviung39/rules.mk +++ b/keyboards/reviung39/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/reviung41/config.h b/keyboards/reviung41/config.h index f3977d9f3..afcf99108 100644 --- a/keyboards/reviung41/config.h +++ b/keyboards/reviung41/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/reviung41/rules.mk b/keyboards/reviung41/rules.mk index 2a5d6c7eb..d196d80cf 100644 --- a/keyboards/reviung41/rules.mk +++ b/keyboards/reviung41/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/rgbkb/mun/rules.mk b/keyboards/rgbkb/mun/rules.mk index de2ff78e2..bea2f354c 100644 --- a/keyboards/rgbkb/mun/rules.mk +++ b/keyboards/rgbkb/mun/rules.mk | |||
@@ -17,7 +17,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
17 | CONSOLE_ENABLE = yes # Console for debug | 17 | CONSOLE_ENABLE = yes # Console for debug |
18 | COMMAND_ENABLE = no # Commands for debug and configuration | 18 | COMMAND_ENABLE = no # Commands for debug and configuration |
19 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 19 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
20 | MIDI_ENABLE = no # MIDI controls | ||
21 | AUDIO_ENABLE = no # Audio output | 20 | AUDIO_ENABLE = no # Audio output |
22 | UNICODE_ENABLE = no # Unicode | 21 | UNICODE_ENABLE = no # Unicode |
23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/rgbkb/zen/rules.mk b/keyboards/rgbkb/zen/rules.mk index ab674a2d3..4da70baa4 100644 --- a/keyboards/rgbkb/zen/rules.mk +++ b/keyboards/rgbkb/zen/rules.mk | |||
@@ -36,7 +36,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
36 | CONSOLE_ENABLE = no # Console for debug | 36 | CONSOLE_ENABLE = no # Console for debug |
37 | COMMAND_ENABLE = yes # Commands for debug and configuration | 37 | COMMAND_ENABLE = yes # Commands for debug and configuration |
38 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 38 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
39 | MIDI_ENABLE = no # MIDI controls | ||
40 | AUDIO_ENABLE = no # Audio output on port C6 | 39 | AUDIO_ENABLE = no # Audio output on port C6 |
41 | UNICODE_ENABLE = no # Unicode | 40 | UNICODE_ENABLE = no # Unicode |
42 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 41 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/rgbkb/zygomorph/rules.mk b/keyboards/rgbkb/zygomorph/rules.mk index ebd1a8a08..8da0394ce 100644 --- a/keyboards/rgbkb/zygomorph/rules.mk +++ b/keyboards/rgbkb/zygomorph/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/rotr/rules.mk b/keyboards/rotr/rules.mk index 9e7b5e1c2..3fcc6565f 100644 --- a/keyboards/rotr/rules.mk +++ b/keyboards/rotr/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
31 | ENCODER_ENABLE = yes # Enables Rotary Encoder support | 30 | ENCODER_ENABLE = yes # Enables Rotary Encoder support |
diff --git a/keyboards/runner3680/rules.mk b/keyboards/runner3680/rules.mk index 03858d80f..02db5fc83 100644 --- a/keyboards/runner3680/rules.mk +++ b/keyboards/runner3680/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/scarletbandana/rules.mk b/keyboards/scarletbandana/rules.mk index b9dd080db..a5d9a48a1 100644 --- a/keyboards/scarletbandana/rules.mk +++ b/keyboards/scarletbandana/rules.mk | |||
@@ -23,7 +23,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 23 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
29 | AUDIO_ENABLE = yes # Audio output | 28 | AUDIO_ENABLE = yes # Audio output |
diff --git a/keyboards/sck/m0116b/config.h b/keyboards/sck/m0116b/config.h index 3246ab74f..63b74b902 100644 --- a/keyboards/sck/m0116b/config.h +++ b/keyboards/sck/m0116b/config.h | |||
@@ -192,26 +192,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
192 | //#define NO_ACTION_MACRO | 192 | //#define NO_ACTION_MACRO |
193 | //#define NO_ACTION_FUNCTION | 193 | //#define NO_ACTION_FUNCTION |
194 | 194 | ||
195 | /* | ||
196 | * MIDI options | ||
197 | */ | ||
198 | |||
199 | /* enable basic MIDI features: | ||
200 | - MIDI notes can be sent when in Music mode is on | ||
201 | */ | ||
202 | //#define MIDI_BASIC | ||
203 | |||
204 | /* enable advanced MIDI features: | ||
205 | - MIDI notes can be added to the keymap | ||
206 | - Octave shift and transpose | ||
207 | - Virtual sustain, portamento, and modulation wheel | ||
208 | - etc. | ||
209 | */ | ||
210 | //#define MIDI_ADVANCED | ||
211 | |||
212 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
213 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
214 | |||
215 | /* Bootmagic Lite key configuration */ | 195 | /* Bootmagic Lite key configuration */ |
216 | #define BOOTMAGIC_LITE_ROW 0 | 196 | #define BOOTMAGIC_LITE_ROW 0 |
217 | #define BOOTMAGIC_LITE_COLUMN 6 | 197 | #define BOOTMAGIC_LITE_COLUMN 6 |
diff --git a/keyboards/sck/m0116b/rules.mk b/keyboards/sck/m0116b/rules.mk index 3659f156c..00a0c32a3 100644 --- a/keyboards/sck/m0116b/rules.mk +++ b/keyboards/sck/m0116b/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sck/neiso/config.h b/keyboards/sck/neiso/config.h index 71f50d198..ccf4da9f1 100644 --- a/keyboards/sck/neiso/config.h +++ b/keyboards/sck/neiso/config.h | |||
@@ -141,26 +141,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
141 | //#define NO_ACTION_MACRO | 141 | //#define NO_ACTION_MACRO |
142 | //#define NO_ACTION_FUNCTION | 142 | //#define NO_ACTION_FUNCTION |
143 | 143 | ||
144 | /* | ||
145 | * MIDI options | ||
146 | */ | ||
147 | |||
148 | /* enable basic MIDI features: | ||
149 | - MIDI notes can be sent when in Music mode is on | ||
150 | */ | ||
151 | //#define MIDI_BASIC | ||
152 | |||
153 | /* enable advanced MIDI features: | ||
154 | - MIDI notes can be added to the keymap | ||
155 | - Octave shift and transpose | ||
156 | - Virtual sustain, portamento, and modulation wheel | ||
157 | - etc. | ||
158 | */ | ||
159 | //#define MIDI_ADVANCED | ||
160 | |||
161 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
162 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
163 | |||
164 | /* Bootmagic Lite key configuration */ | 144 | /* Bootmagic Lite key configuration */ |
165 | // #define BOOTMAGIC_LITE_ROW 0 | 145 | // #define BOOTMAGIC_LITE_ROW 0 |
166 | // #define BOOTMAGIC_LITE_COLUMN 0 | 146 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/sck/neiso/rules.mk b/keyboards/sck/neiso/rules.mk index 6fbeee2d2..25956d09f 100644 --- a/keyboards/sck/neiso/rules.mk +++ b/keyboards/sck/neiso/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/sck/osa/config.h b/keyboards/sck/osa/config.h index 131ae98f8..87651f1f8 100644 --- a/keyboards/sck/osa/config.h +++ b/keyboards/sck/osa/config.h | |||
@@ -198,26 +198,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
198 | //#define NO_ACTION_MACRO | 198 | //#define NO_ACTION_MACRO |
199 | //#define NO_ACTION_FUNCTION | 199 | //#define NO_ACTION_FUNCTION |
200 | 200 | ||
201 | /* | ||
202 | * MIDI options | ||
203 | */ | ||
204 | |||
205 | /* enable basic MIDI features: | ||
206 | - MIDI notes can be sent when in Music mode is on | ||
207 | */ | ||
208 | //#define MIDI_BASIC | ||
209 | |||
210 | /* enable advanced MIDI features: | ||
211 | - MIDI notes can be added to the keymap | ||
212 | - Octave shift and transpose | ||
213 | - Virtual sustain, portamento, and modulation wheel | ||
214 | - etc. | ||
215 | */ | ||
216 | //#define MIDI_ADVANCED | ||
217 | |||
218 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
219 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
220 | |||
221 | /* Bootmagic Lite key configuration */ | 201 | /* Bootmagic Lite key configuration */ |
222 | //#define BOOTMAGIC_LITE_ROW 0 | 202 | //#define BOOTMAGIC_LITE_ROW 0 |
223 | //#define BOOTMAGIC_LITE_COLUMN 0 | 203 | //#define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/sck/osa/rules.mk b/keyboards/sck/osa/rules.mk index 4c96ef4aa..d73d9bffc 100644 --- a/keyboards/sck/osa/rules.mk +++ b/keyboards/sck/osa/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/scythe/config.h b/keyboards/scythe/config.h index d59b9e7f3..a235f8d31 100644 --- a/keyboards/scythe/config.h +++ b/keyboards/scythe/config.h | |||
@@ -167,26 +167,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
167 | //#define NO_ACTION_MACRO | 167 | //#define NO_ACTION_MACRO |
168 | //#define NO_ACTION_FUNCTION | 168 | //#define NO_ACTION_FUNCTION |
169 | 169 | ||
170 | /* | ||
171 | * MIDI options | ||
172 | */ | ||
173 | |||
174 | /* enable basic MIDI features: | ||
175 | - MIDI notes can be sent when in Music mode is on | ||
176 | */ | ||
177 | //#define MIDI_BASIC | ||
178 | |||
179 | /* enable advanced MIDI features: | ||
180 | - MIDI notes can be added to the keymap | ||
181 | - Octave shift and transpose | ||
182 | - Virtual sustain, portamento, and modulation wheel | ||
183 | - etc. | ||
184 | */ | ||
185 | //#define MIDI_ADVANCED | ||
186 | |||
187 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
188 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
189 | |||
190 | /* Bootmagic Lite key configuration */ | 170 | /* Bootmagic Lite key configuration */ |
191 | // #define BOOTMAGIC_LITE_ROW 0 | 171 | // #define BOOTMAGIC_LITE_ROW 0 |
192 | // #define BOOTMAGIC_LITE_COLUMN 0 | 172 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/scythe/rules.mk b/keyboards/scythe/rules.mk index 5c6fb8583..3304c103d 100644 --- a/keyboards/scythe/rules.mk +++ b/keyboards/scythe/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sentraq/number_pad/rules.mk b/keyboards/sentraq/number_pad/rules.mk index 3b5d80f43..ac57f9939 100644 --- a/keyboards/sentraq/number_pad/rules.mk +++ b/keyboards/sentraq/number_pad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sentraq/s60_x/default/rules.mk b/keyboards/sentraq/s60_x/default/rules.mk index 6b5002640..7dd95d8d6 100644 --- a/keyboards/sentraq/s60_x/default/rules.mk +++ b/keyboards/sentraq/s60_x/default/rules.mk | |||
@@ -20,7 +20,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sentraq/s60_x/rgb/rules.mk b/keyboards/sentraq/s60_x/rgb/rules.mk index 03b5c5069..e6314c851 100644 --- a/keyboards/sentraq/s60_x/rgb/rules.mk +++ b/keyboards/sentraq/s60_x/rgb/rules.mk | |||
@@ -20,7 +20,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sentraq/s65_plus/rules.mk b/keyboards/sentraq/s65_plus/rules.mk index a1fbe9345..3888bb7ed 100644 --- a/keyboards/sentraq/s65_plus/rules.mk +++ b/keyboards/sentraq/s65_plus/rules.mk | |||
@@ -19,7 +19,6 @@ MOUSEKEY_ENABLE = no # Mouse keys | |||
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sentraq/s65_x/rules.mk b/keyboards/sentraq/s65_x/rules.mk index 5e1e4bd3c..5fe828a7f 100644 --- a/keyboards/sentraq/s65_x/rules.mk +++ b/keyboards/sentraq/s65_x/rules.mk | |||
@@ -19,7 +19,6 @@ MOUSEKEY_ENABLE = no # Mouse keys | |||
19 | EXTRAKEY_ENABLE = yes # Audio control and System control | 19 | EXTRAKEY_ENABLE = yes # Audio control and System control |
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | UNICODE_ENABLE = no # Unicode | 22 | UNICODE_ENABLE = no # Unicode |
24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 23 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/setta21/rules.mk b/keyboards/setta21/rules.mk index 8beacf967..63cca1300 100644 --- a/keyboards/setta21/rules.mk +++ b/keyboards/setta21/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | AUDIO_ENABLE = no # Audio output on port C6 | 24 | AUDIO_ENABLE = no # Audio output on port C6 |
26 | UNICODE_ENABLE = no # Unicode | 25 | UNICODE_ENABLE = no # Unicode |
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/shambles/rules.mk b/keyboards/shambles/rules.mk index 708ff7916..97fd0ba99 100644 --- a/keyboards/shambles/rules.mk +++ b/keyboards/shambles/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/shiro/config.h b/keyboards/shiro/config.h index 91633eaa4..9fbdd4477 100644 --- a/keyboards/shiro/config.h +++ b/keyboards/shiro/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/shiro/rules.mk b/keyboards/shiro/rules.mk index 9727ce106..a684ff876 100644 --- a/keyboards/shiro/rules.mk +++ b/keyboards/shiro/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/sidderskb/majbritt/rev1/rules.mk b/keyboards/sidderskb/majbritt/rev1/rules.mk index 7e2d2b8fe..6b80c55ef 100644 --- a/keyboards/sidderskb/majbritt/rev1/rules.mk +++ b/keyboards/sidderskb/majbritt/rev1/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/silverbullet44/config.h b/keyboards/silverbullet44/config.h index cd78ef341..2bd9c834b 100644 --- a/keyboards/silverbullet44/config.h +++ b/keyboards/silverbullet44/config.h | |||
@@ -237,26 +237,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
237 | #define NO_ACTION_MACRO | 237 | #define NO_ACTION_MACRO |
238 | #define NO_ACTION_FUNCTION | 238 | #define NO_ACTION_FUNCTION |
239 | 239 | ||
240 | /* | ||
241 | * MIDI options | ||
242 | */ | ||
243 | |||
244 | /* enable basic MIDI features: | ||
245 | - MIDI notes can be sent when in Music mode is on | ||
246 | */ | ||
247 | //#define MIDI_BASIC | ||
248 | |||
249 | /* enable advanced MIDI features: | ||
250 | - MIDI notes can be added to the keymap | ||
251 | - Octave shift and transpose | ||
252 | - Virtual sustain, portamento, and modulation wheel | ||
253 | - etc. | ||
254 | */ | ||
255 | //#define MIDI_ADVANCED | ||
256 | |||
257 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
258 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
259 | |||
260 | /* Bootmagic Lite key configuration */ | 240 | /* Bootmagic Lite key configuration */ |
261 | // #define BOOTMAGIC_LITE_ROW 0 | 241 | // #define BOOTMAGIC_LITE_ROW 0 |
262 | // #define BOOTMAGIC_LITE_COLUMN 0 | 242 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/silverbullet44/rules.mk b/keyboards/silverbullet44/rules.mk index 06f5e7fec..357a16c33 100644 --- a/keyboards/silverbullet44/rules.mk +++ b/keyboards/silverbullet44/rules.mk | |||
@@ -27,7 +27,6 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by d | |||
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | RGB_MATRIX_ENABLE = no | 28 | RGB_MATRIX_ENABLE = no |
29 | RGB_MATRIX_DRIVER = WS2812 | 29 | RGB_MATRIX_DRIVER = WS2812 |
30 | MIDI_ENABLE = no # MIDI support | ||
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | AUDIO_ENABLE = yes # Audio output on port B6 | 32 | AUDIO_ENABLE = yes # Audio output on port B6 |
diff --git a/keyboards/sixkeyboard/rules.mk b/keyboards/sixkeyboard/rules.mk index 9def9f4b9..60c2a4cc8 100644 --- a/keyboards/sixkeyboard/rules.mk +++ b/keyboards/sixkeyboard/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 22 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
23 | NKRO_ENABLE = no # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/smk60/rules.mk b/keyboards/smk60/rules.mk index c4f1477b0..2d390bac9 100644 --- a/keyboards/smk60/rules.mk +++ b/keyboards/smk60/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/snampad/config.h b/keyboards/snampad/config.h index 563796eec..270a36cb0 100644 --- a/keyboards/snampad/config.h +++ b/keyboards/snampad/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/snampad/rules.mk b/keyboards/snampad/rules.mk index b0c6fabc8..4972b9e60 100644 --- a/keyboards/snampad/rules.mk +++ b/keyboards/snampad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/spacetime/config.h b/keyboards/spacetime/config.h index cda5185de..1219eca2d 100644 --- a/keyboards/spacetime/config.h +++ b/keyboards/spacetime/config.h | |||
@@ -188,26 +188,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
188 | //#define NO_ACTION_MACRO | 188 | //#define NO_ACTION_MACRO |
189 | //#define NO_ACTION_FUNCTION | 189 | //#define NO_ACTION_FUNCTION |
190 | 190 | ||
191 | /* | ||
192 | * MIDI options | ||
193 | */ | ||
194 | |||
195 | /* enable basic MIDI features: | ||
196 | - MIDI notes can be sent when in Music mode is on | ||
197 | */ | ||
198 | //#define MIDI_BASIC | ||
199 | |||
200 | /* enable advanced MIDI features: | ||
201 | - MIDI notes can be added to the keymap | ||
202 | - Octave shift and transpose | ||
203 | - Virtual sustain, portamento, and modulation wheel | ||
204 | - etc. | ||
205 | */ | ||
206 | //#define MIDI_ADVANCED | ||
207 | |||
208 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
209 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
210 | |||
211 | /* Bootmagic Lite key configuration */ | 191 | /* Bootmagic Lite key configuration */ |
212 | // #define BOOTMAGIC_LITE_ROW 0 | 192 | // #define BOOTMAGIC_LITE_ROW 0 |
213 | // #define BOOTMAGIC_LITE_COLUMN 0 | 193 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/spacetime/rules.mk b/keyboards/spacetime/rules.mk index efb9460cd..14b9a07cc 100644 --- a/keyboards/spacetime/rules.mk +++ b/keyboards/spacetime/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/splitkb/kyria/rules.mk b/keyboards/splitkb/kyria/rules.mk index 86eeb85eb..cc40ef088 100644 --- a/keyboards/splitkb/kyria/rules.mk +++ b/keyboards/splitkb/kyria/rules.mk | |||
@@ -17,7 +17,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | NKRO_ENABLE = no # USB Nkey Rollover | 18 | NKRO_ENABLE = no # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
20 | MIDI_ENABLE = no # MIDI support | ||
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/splitreus62/rules.mk b/keyboards/splitreus62/rules.mk index 00ae1e8b3..fb6ae65f4 100644 --- a/keyboards/splitreus62/rules.mk +++ b/keyboards/splitreus62/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/squiggle/rev1/rules.mk b/keyboards/squiggle/rev1/rules.mk index 88d71b699..277c3612f 100644 --- a/keyboards/squiggle/rev1/rules.mk +++ b/keyboards/squiggle/rev1/rules.mk | |||
@@ -14,7 +14,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
14 | NKRO_ENABLE = no # USB Nkey Rollover | 14 | NKRO_ENABLE = no # USB Nkey Rollover |
15 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 15 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
16 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 16 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
17 | MIDI_ENABLE = no # MIDI support | ||
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
19 | AUDIO_ENABLE = no # Audio output | 18 | AUDIO_ENABLE = no # Audio output |
20 | 19 | ||
diff --git a/keyboards/standaside/config.h b/keyboards/standaside/config.h index 23ae52d7c..d6d60fd96 100644 --- a/keyboards/standaside/config.h +++ b/keyboards/standaside/config.h | |||
@@ -150,23 +150,3 @@ | |||
150 | //#define NO_ACTION_MACRO | 150 | //#define NO_ACTION_MACRO |
151 | //#define NO_ACTION_FUNCTION | 151 | //#define NO_ACTION_FUNCTION |
152 | 152 | ||
153 | /* | ||
154 | * MIDI options | ||
155 | */ | ||
156 | |||
157 | /* enable basic MIDI features: | ||
158 | - MIDI notes can be sent when in Music mode is on | ||
159 | */ | ||
160 | //#define MIDI_BASIC | ||
161 | |||
162 | /* enable advanced MIDI features: | ||
163 | - MIDI notes can be added to the keymap | ||
164 | - Octave shift and transpose | ||
165 | - Virtual sustain, portamento, and modulation wheel | ||
166 | - etc. | ||
167 | */ | ||
168 | //#define MIDI_ADVANCED | ||
169 | |||
170 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
171 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
172 | |||
diff --git a/keyboards/standaside/rules.mk b/keyboards/standaside/rules.mk index 3f13e9b93..78ad779f1 100644 --- a/keyboards/standaside/rules.mk +++ b/keyboards/standaside/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/staryu/rules.mk b/keyboards/staryu/rules.mk index f991c7e26..697a58ff7 100755 --- a/keyboards/staryu/rules.mk +++ b/keyboards/staryu/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/subatomic/rules.mk b/keyboards/subatomic/rules.mk index ba5216e44..95af9210e 100644 --- a/keyboards/subatomic/rules.mk +++ b/keyboards/subatomic/rules.mk | |||
@@ -22,7 +22,7 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = yes # MIDI controls | 25 | MIDI_ENABLE = yes # MIDI support |
26 | AUDIO_ENABLE = no # Audio output | 26 | AUDIO_ENABLE = no # Audio output |
27 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/suihankey/alpha/config.h b/keyboards/suihankey/alpha/config.h index ff0498abb..c63592298 100644 --- a/keyboards/suihankey/alpha/config.h +++ b/keyboards/suihankey/alpha/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/suihankey/rev1/config.h b/keyboards/suihankey/rev1/config.h index 889cb0cad..ddc8b95d6 100644 --- a/keyboards/suihankey/rev1/config.h +++ b/keyboards/suihankey/rev1/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/suihankey/rules.mk b/keyboards/suihankey/rules.mk index 20656e68b..63a0a2b1e 100644 --- a/keyboards/suihankey/rules.mk +++ b/keyboards/suihankey/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/suihankey/split/alpha/config.h b/keyboards/suihankey/split/alpha/config.h index b0e4311be..b54744afb 100644 --- a/keyboards/suihankey/split/alpha/config.h +++ b/keyboards/suihankey/split/alpha/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/suihankey/split/rev1/config.h b/keyboards/suihankey/split/rev1/config.h index 362816327..f2d8239db 100644 --- a/keyboards/suihankey/split/rev1/config.h +++ b/keyboards/suihankey/split/rev1/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/switchplate/southpaw_65/config.h b/keyboards/switchplate/southpaw_65/config.h index 6b7952283..ee6567b23 100644 --- a/keyboards/switchplate/southpaw_65/config.h +++ b/keyboards/switchplate/southpaw_65/config.h | |||
@@ -182,26 +182,6 @@ | |||
182 | //#define NO_ACTION_MACRO | 182 | //#define NO_ACTION_MACRO |
183 | //#define NO_ACTION_FUNCTION | 183 | //#define NO_ACTION_FUNCTION |
184 | 184 | ||
185 | /* | ||
186 | * MIDI options | ||
187 | */ | ||
188 | |||
189 | /* enable basic MIDI features: | ||
190 | - MIDI notes can be sent when in Music mode is on | ||
191 | */ | ||
192 | //#define MIDI_BASIC | ||
193 | |||
194 | /* enable advanced MIDI features: | ||
195 | - MIDI notes can be added to the keymap | ||
196 | - Octave shift and transpose | ||
197 | - Virtual sustain, portamento, and modulation wheel | ||
198 | - etc. | ||
199 | */ | ||
200 | //#define MIDI_ADVANCED | ||
201 | |||
202 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
203 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
204 | |||
205 | /* Bootmagic Lite key configuration */ | 185 | /* Bootmagic Lite key configuration */ |
206 | // #define BOOTMAGIC_LITE_ROW 0 | 186 | // #define BOOTMAGIC_LITE_ROW 0 |
207 | // #define BOOTMAGIC_LITE_COLUMN 0 | 187 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/switchplate/southpaw_65/rules.mk b/keyboards/switchplate/southpaw_65/rules.mk index 73410ab4f..f257d8c86 100644 --- a/keyboards/switchplate/southpaw_65/rules.mk +++ b/keyboards/switchplate/southpaw_65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/switchplate/southpaw_fullsize/rules.mk b/keyboards/switchplate/southpaw_fullsize/rules.mk index b82a9fcb3..2c585cc9a 100644 --- a/keyboards/switchplate/southpaw_fullsize/rules.mk +++ b/keyboards/switchplate/southpaw_fullsize/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/tada68/rules.mk b/keyboards/tada68/rules.mk index 4f70ca84c..7ccc893ea 100755 --- a/keyboards/tada68/rules.mk +++ b/keyboards/tada68/rules.mk | |||
@@ -28,7 +28,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
28 | NKRO_ENABLE = yes # USB Nkey Rollover | 28 | NKRO_ENABLE = yes # USB Nkey Rollover |
29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 30 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
31 | MIDI_ENABLE = no # MIDI support | ||
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
33 | AUDIO_ENABLE = no # Audio output on port C6 | 32 | AUDIO_ENABLE = no # Audio output on port C6 |
34 | UNICODE_ENABLE = no # Unicode | 33 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/tanuki/rules.mk b/keyboards/tanuki/rules.mk index 4c4f4eaec..4b656bbed 100644 --- a/keyboards/tanuki/rules.mk +++ b/keyboards/tanuki/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE =yes # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE =yes # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/tender/macrowo_pad/rules.mk b/keyboards/tender/macrowo_pad/rules.mk index acc483542..400128468 100644 --- a/keyboards/tender/macrowo_pad/rules.mk +++ b/keyboards/tender/macrowo_pad/rules.mk | |||
@@ -16,7 +16,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
16 | NKRO_ENABLE = no # USB Nkey Rollover | 16 | NKRO_ENABLE = no # USB Nkey Rollover |
17 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 17 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
18 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 18 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
19 | MIDI_ENABLE = no # MIDI support | ||
20 | UNICODE_ENABLE = no # Unicode | 19 | UNICODE_ENABLE = no # Unicode |
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 20 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
22 | AUDIO_ENABLE = no # Audio output on port C6 | 21 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/tg4x/config.h b/keyboards/tg4x/config.h index ca42b76ea..915ae130e 100644 --- a/keyboards/tg4x/config.h +++ b/keyboards/tg4x/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/tg4x/rules.mk b/keyboards/tg4x/rules.mk index e0aad5c65..c0a897f9c 100644 --- a/keyboards/tg4x/rules.mk +++ b/keyboards/tg4x/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/the_royal/liminal/rules.mk b/keyboards/the_royal/liminal/rules.mk index 4a4cde544..e5317c535 100644 --- a/keyboards/the_royal/liminal/rules.mk +++ b/keyboards/the_royal/liminal/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/the_royal/schwann/rules.mk b/keyboards/the_royal/schwann/rules.mk index 629f33781..161112e99 100644 --- a/keyboards/the_royal/schwann/rules.mk +++ b/keyboards/the_royal/schwann/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 25 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
26 | NKRO_ENABLE = no # USB Nkey Rollover | 26 | NKRO_ENABLE = no # USB Nkey Rollover |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/the_ruler/rules.mk b/keyboards/the_ruler/rules.mk index e8be55148..cb2732495 100644 --- a/keyboards/the_ruler/rules.mk +++ b/keyboards/the_ruler/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/thedogkeyboard/config.h b/keyboards/thedogkeyboard/config.h index 1447d2903..89698ca3d 100644 --- a/keyboards/thedogkeyboard/config.h +++ b/keyboards/thedogkeyboard/config.h | |||
@@ -189,26 +189,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/thedogkeyboard/rules.mk b/keyboards/thedogkeyboard/rules.mk index 4b43bb179..81dc46e90 100644 --- a/keyboards/thedogkeyboard/rules.mk +++ b/keyboards/thedogkeyboard/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | CUSTOM_MATRIX = yes | 30 | CUSTOM_MATRIX = yes |
diff --git a/keyboards/themadnoodle/ncc1701kb/v2/rules.mk b/keyboards/themadnoodle/ncc1701kb/v2/rules.mk index 92105ae8d..056098732 100644 --- a/keyboards/themadnoodle/ncc1701kb/v2/rules.mk +++ b/keyboards/themadnoodle/ncc1701kb/v2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/themadnoodle/noodlepad/rules.mk b/keyboards/themadnoodle/noodlepad/rules.mk index 92105ae8d..056098732 100644 --- a/keyboards/themadnoodle/noodlepad/rules.mk +++ b/keyboards/themadnoodle/noodlepad/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = yes # Unicode | 30 | UNICODE_ENABLE = yes # Unicode |
diff --git a/keyboards/thevankeyboards/caravan/rules.mk b/keyboards/thevankeyboards/caravan/rules.mk index 38f3f48a3..c78bf4c32 100644 --- a/keyboards/thevankeyboards/caravan/rules.mk +++ b/keyboards/thevankeyboards/caravan/rules.mk | |||
@@ -21,7 +21,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
21 | COMMAND_ENABLE = no # Commands for debug and configuration | 21 | COMMAND_ENABLE = no # Commands for debug and configuration |
22 | NKRO_ENABLE = yes # USB Nkey Rollover | 22 | NKRO_ENABLE = yes # USB Nkey Rollover |
23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 23 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
24 | MIDI_ENABLE = no # MIDI controls | ||
25 | UNICODE_ENABLE = no # Unicode | 24 | UNICODE_ENABLE = no # Unicode |
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/thevankeyboards/minivan/rules.mk b/keyboards/thevankeyboards/minivan/rules.mk index 5c0ac8199..5e6bfc637 100644 --- a/keyboards/thevankeyboards/minivan/rules.mk +++ b/keyboards/thevankeyboards/minivan/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/thevankeyboards/roadkit/rules.mk b/keyboards/thevankeyboards/roadkit/rules.mk index 1ab8e4339..cc4500379 100644 --- a/keyboards/thevankeyboards/roadkit/rules.mk +++ b/keyboards/thevankeyboards/roadkit/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI controls | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/tkc/candybar/lefty/config.h b/keyboards/tkc/candybar/lefty/config.h index 0f789a7b6..ba5c0b077 100644 --- a/keyboards/tkc/candybar/lefty/config.h +++ b/keyboards/tkc/candybar/lefty/config.h | |||
@@ -80,26 +80,6 @@ | |||
80 | //#define NO_ACTION_MACRO | 80 | //#define NO_ACTION_MACRO |
81 | //#define NO_ACTION_FUNCTION | 81 | //#define NO_ACTION_FUNCTION |
82 | 82 | ||
83 | /* | ||
84 | * MIDI options | ||
85 | */ | ||
86 | |||
87 | /* enable basic MIDI features: | ||
88 | - MIDI notes can be sent when in Music mode is on | ||
89 | */ | ||
90 | //#define MIDI_BASIC | ||
91 | |||
92 | /* enable advanced MIDI features: | ||
93 | - MIDI notes can be added to the keymap | ||
94 | - Octave shift and transpose | ||
95 | - Virtual sustain, portamento, and modulation wheel | ||
96 | - etc. | ||
97 | */ | ||
98 | //#define MIDI_ADVANCED | ||
99 | |||
100 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
101 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
102 | |||
103 | // #define WS2812_LED_N 2 | 83 | // #define WS2812_LED_N 2 |
104 | // #define RGBLED_NUM WS2812_LED_N | 84 | // #define RGBLED_NUM WS2812_LED_N |
105 | // #define WS2812_TIM_N 2 | 85 | // #define WS2812_TIM_N 2 |
diff --git a/keyboards/tkc/candybar/righty/config.h b/keyboards/tkc/candybar/righty/config.h index 4c269c299..47e3985ff 100644 --- a/keyboards/tkc/candybar/righty/config.h +++ b/keyboards/tkc/candybar/righty/config.h | |||
@@ -80,26 +80,6 @@ | |||
80 | //#define NO_ACTION_MACRO | 80 | //#define NO_ACTION_MACRO |
81 | //#define NO_ACTION_FUNCTION | 81 | //#define NO_ACTION_FUNCTION |
82 | 82 | ||
83 | /* | ||
84 | * MIDI options | ||
85 | */ | ||
86 | |||
87 | /* enable basic MIDI features: | ||
88 | - MIDI notes can be sent when in Music mode is on | ||
89 | */ | ||
90 | //#define MIDI_BASIC | ||
91 | |||
92 | /* enable advanced MIDI features: | ||
93 | - MIDI notes can be added to the keymap | ||
94 | - Octave shift and transpose | ||
95 | - Virtual sustain, portamento, and modulation wheel | ||
96 | - etc. | ||
97 | */ | ||
98 | //#define MIDI_ADVANCED | ||
99 | |||
100 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
101 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
102 | |||
103 | // #define WS2812_LED_N 2 | 83 | // #define WS2812_LED_N 2 |
104 | // #define RGBLED_NUM WS2812_LED_N | 84 | // #define RGBLED_NUM WS2812_LED_N |
105 | // #define WS2812_TIM_N 2 | 85 | // #define WS2812_TIM_N 2 |
diff --git a/keyboards/tkc/godspeed75/config.h b/keyboards/tkc/godspeed75/config.h index 93604a9a6..f50d4c638 100644 --- a/keyboards/tkc/godspeed75/config.h +++ b/keyboards/tkc/godspeed75/config.h | |||
@@ -80,26 +80,6 @@ | |||
80 | //#define NO_ACTION_MACRO | 80 | //#define NO_ACTION_MACRO |
81 | //#define NO_ACTION_FUNCTION | 81 | //#define NO_ACTION_FUNCTION |
82 | 82 | ||
83 | /* | ||
84 | * MIDI options | ||
85 | */ | ||
86 | |||
87 | /* enable basic MIDI features: | ||
88 | - MIDI notes can be sent when in Music mode is on | ||
89 | */ | ||
90 | //#define MIDI_BASIC | ||
91 | |||
92 | /* enable advanced MIDI features: | ||
93 | - MIDI notes can be added to the keymap | ||
94 | - Octave shift and transpose | ||
95 | - Virtual sustain, portamento, and modulation wheel | ||
96 | - etc. | ||
97 | */ | ||
98 | //#define MIDI_ADVANCED | ||
99 | |||
100 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
101 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
102 | |||
103 | #define RGB_DI_PIN A13 | 83 | #define RGB_DI_PIN A13 |
104 | #define RGBLED_NUM 14 | 84 | #define RGBLED_NUM 14 |
105 | #define RGBLIGHT_ANIMATIONS | 85 | #define RGBLIGHT_ANIMATIONS |
diff --git a/keyboards/tkc/osav2/config.h b/keyboards/tkc/osav2/config.h index aaac1a0a9..c70fdc981 100644 --- a/keyboards/tkc/osav2/config.h +++ b/keyboards/tkc/osav2/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | //#define NO_ACTION_MACRO | 194 | //#define NO_ACTION_MACRO |
195 | //#define NO_ACTION_FUNCTION | 195 | //#define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | //#define BOOTMAGIC_LITE_ROW 0 | 198 | //#define BOOTMAGIC_LITE_ROW 0 |
219 | //#define BOOTMAGIC_LITE_COLUMN 0 | 199 | //#define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/tkc/osav2/rules.mk b/keyboards/tkc/osav2/rules.mk index 8da4c4683..835ccebd2 100644 --- a/keyboards/tkc/osav2/rules.mk +++ b/keyboards/tkc/osav2/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
31 | AUDIO_ENABLE = no # Audio output | 30 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/tkc/tkc1800/config.h b/keyboards/tkc/tkc1800/config.h index 82d599c55..17441b084 100644 --- a/keyboards/tkc/tkc1800/config.h +++ b/keyboards/tkc/tkc1800/config.h | |||
@@ -161,23 +161,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
161 | //#define NO_ACTION_ONESHOT | 161 | //#define NO_ACTION_ONESHOT |
162 | //#define NO_ACTION_MACRO | 162 | //#define NO_ACTION_MACRO |
163 | //#define NO_ACTION_FUNCTION | 163 | //#define NO_ACTION_FUNCTION |
164 | |||
165 | /* | ||
166 | * MIDI options | ||
167 | */ | ||
168 | |||
169 | /* enable basic MIDI features: | ||
170 | - MIDI notes can be sent when in Music mode is on | ||
171 | */ | ||
172 | //#define MIDI_BASIC | ||
173 | |||
174 | /* enable advanced MIDI features: | ||
175 | - MIDI notes can be added to the keymap | ||
176 | - Octave shift and transpose | ||
177 | - Virtual sustain, portamento, and modulation wheel | ||
178 | - etc. | ||
179 | */ | ||
180 | //#define MIDI_ADVANCED | ||
181 | |||
182 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
183 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/tkc/tkc1800/rules.mk b/keyboards/tkc/tkc1800/rules.mk index cc5d3676b..a81223745 100644 --- a/keyboards/tkc/tkc1800/rules.mk +++ b/keyboards/tkc/tkc1800/rules.mk | |||
@@ -26,7 +26,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
26 | NKRO_ENABLE = yes # USB Nkey Rollover | 26 | NKRO_ENABLE = yes # USB Nkey Rollover |
27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 27 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
28 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. | 28 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. Do not enable this with audio at the same time. |
29 | MIDI_ENABLE = no # MIDI controls | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/tmo50/config.h b/keyboards/tmo50/config.h index 33d32eb0c..666f9fef1 100644 --- a/keyboards/tmo50/config.h +++ b/keyboards/tmo50/config.h | |||
@@ -176,23 +176,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
176 | //#define NO_ACTION_ONESHOT | 176 | //#define NO_ACTION_ONESHOT |
177 | //#define NO_ACTION_MACRO | 177 | //#define NO_ACTION_MACRO |
178 | //#define NO_ACTION_FUNCTION | 178 | //#define NO_ACTION_FUNCTION |
179 | |||
180 | /* | ||
181 | * MIDI options | ||
182 | */ | ||
183 | |||
184 | /* enable basic MIDI features: | ||
185 | - MIDI notes can be sent when in Music mode is on | ||
186 | */ | ||
187 | //#define MIDI_BASIC | ||
188 | |||
189 | /* enable advanced MIDI features: | ||
190 | - MIDI notes can be added to the keymap | ||
191 | - Octave shift and transpose | ||
192 | - Virtual sustain, portamento, and modulation wheel | ||
193 | - etc. | ||
194 | */ | ||
195 | //#define MIDI_ADVANCED | ||
196 | |||
197 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
198 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/tmo50/rules.mk b/keyboards/tmo50/rules.mk index ffe3c7130..b7253b188 100644 --- a/keyboards/tmo50/rules.mk +++ b/keyboards/tmo50/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/tokyokeyboard/tokyo60/rules.mk b/keyboards/tokyokeyboard/tokyo60/rules.mk index f5725ed41..549bf76dc 100644 --- a/keyboards/tokyokeyboard/tokyo60/rules.mk +++ b/keyboards/tokyokeyboard/tokyo60/rules.mk | |||
@@ -20,7 +20,6 @@ EXTRAKEY_ENABLE = yes # Audio control and System control | |||
20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE | 20 | # Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE |
21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | 21 | SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend |
22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | MIDI_ENABLE = no # MIDI controls | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/touchpad/rules.mk b/keyboards/touchpad/rules.mk index 99f0c8454..eaa7e2dad 100644 --- a/keyboards/touchpad/rules.mk +++ b/keyboards/touchpad/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/tr60w/rules.mk b/keyboards/tr60w/rules.mk index d8aa32604..41d22b66a 100644 --- a/keyboards/tr60w/rules.mk +++ b/keyboards/tr60w/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/treadstone32/rules.mk b/keyboards/treadstone32/rules.mk index 7a39b9e9c..89b9398fb 100644 --- a/keyboards/treadstone32/rules.mk +++ b/keyboards/treadstone32/rules.mk | |||
@@ -11,7 +11,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
11 | COMMAND_ENABLE = no # Commands for debug and configuration | 11 | COMMAND_ENABLE = no # Commands for debug and configuration |
12 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 12 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 13 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
14 | MIDI_ENABLE = no # MIDI controls | ||
15 | AUDIO_ENABLE = no # Audio output on port C6 | 14 | AUDIO_ENABLE = no # Audio output on port C6 |
16 | UNICODE_ENABLE = no # Unicode | 15 | UNICODE_ENABLE = no # Unicode |
17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 16 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/treadstone48/rev1/config.h b/keyboards/treadstone48/rev1/config.h index e16622df9..75e5252b3 100644 --- a/keyboards/treadstone48/rev1/config.h +++ b/keyboards/treadstone48/rev1/config.h | |||
@@ -200,26 +200,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
200 | #define NO_ACTION_MACRO | 200 | #define NO_ACTION_MACRO |
201 | #define NO_ACTION_FUNCTION | 201 | #define NO_ACTION_FUNCTION |
202 | 202 | ||
203 | /* | ||
204 | * MIDI options | ||
205 | */ | ||
206 | |||
207 | /* enable basic MIDI features: | ||
208 | - MIDI notes can be sent when in Music mode is on | ||
209 | */ | ||
210 | //#define MIDI_BASIC | ||
211 | |||
212 | /* enable advanced MIDI features: | ||
213 | - MIDI notes can be added to the keymap | ||
214 | - Octave shift and transpose | ||
215 | - Virtual sustain, portamento, and modulation wheel | ||
216 | - etc. | ||
217 | */ | ||
218 | //#define MIDI_ADVANCED | ||
219 | |||
220 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
221 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
222 | |||
223 | /* Bootmagic Lite key configuration */ | 203 | /* Bootmagic Lite key configuration */ |
224 | // #define BOOTMAGIC_LITE_ROW 0 | 204 | // #define BOOTMAGIC_LITE_ROW 0 |
225 | // #define BOOTMAGIC_LITE_COLUMN 0 | 205 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/treadstone48/rev2/config.h b/keyboards/treadstone48/rev2/config.h index ae1d92dcb..e5be65f55 100644 --- a/keyboards/treadstone48/rev2/config.h +++ b/keyboards/treadstone48/rev2/config.h | |||
@@ -193,25 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | /* disable these deprecated features by default */ | 193 | /* disable these deprecated features by default */ |
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | 196 | ||
216 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/treadstone48/rules.mk b/keyboards/treadstone48/rules.mk index 05c15dc4d..5c0cf4b92 100644 --- a/keyboards/treadstone48/rules.mk +++ b/keyboards/treadstone48/rules.mk | |||
@@ -23,7 +23,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
23 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | NKRO_ENABLE = no # USB Nkey Rollover | 24 | NKRO_ENABLE = no # USB Nkey Rollover |
25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 25 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
26 | MIDI_ENABLE = no # MIDI support | ||
27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
28 | AUDIO_ENABLE = no # Audio output on port C6 | 27 | AUDIO_ENABLE = no # Audio output on port C6 |
29 | SPLIT_KEYBOARD = yes | 28 | SPLIT_KEYBOARD = yes |
diff --git a/keyboards/treasure/type9/config.h b/keyboards/treasure/type9/config.h index eae8cdc55..1c65a3643 100644 --- a/keyboards/treasure/type9/config.h +++ b/keyboards/treasure/type9/config.h | |||
@@ -165,23 +165,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_MACRO | 165 | //#define NO_ACTION_MACRO |
166 | //#define NO_ACTION_FUNCTION | 166 | //#define NO_ACTION_FUNCTION |
167 | 167 | ||
168 | /* | ||
169 | * MIDI options | ||
170 | */ | ||
171 | |||
172 | /* enable basic MIDI features: | ||
173 | - MIDI notes can be sent when in Music mode is on | ||
174 | */ | ||
175 | //#define MIDI_BASIC | ||
176 | |||
177 | /* enable advanced MIDI features: | ||
178 | - MIDI notes can be added to the keymap | ||
179 | - Octave shift and transpose | ||
180 | - Virtual sustain, portamento, and modulation wheel | ||
181 | - etc. | ||
182 | */ | ||
183 | //#define MIDI_ADVANCED | ||
184 | |||
185 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
186 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
187 | |||
diff --git a/keyboards/treasure/type9/rules.mk b/keyboards/treasure/type9/rules.mk index ba3ec99bc..91677ac3c 100644 --- a/keyboards/treasure/type9/rules.mk +++ b/keyboards/treasure/type9/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ua62/config.h b/keyboards/ua62/config.h index 2b1ab31dc..c27ceafeb 100644 --- a/keyboards/ua62/config.h +++ b/keyboards/ua62/config.h | |||
@@ -193,26 +193,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
193 | //#define NO_ACTION_MACRO | 193 | //#define NO_ACTION_MACRO |
194 | //#define NO_ACTION_FUNCTION | 194 | //#define NO_ACTION_FUNCTION |
195 | 195 | ||
196 | /* | ||
197 | * MIDI options | ||
198 | */ | ||
199 | |||
200 | /* enable basic MIDI features: | ||
201 | - MIDI notes can be sent when in Music mode is on | ||
202 | */ | ||
203 | //#define MIDI_BASIC | ||
204 | |||
205 | /* enable advanced MIDI features: | ||
206 | - MIDI notes can be added to the keymap | ||
207 | - Octave shift and transpose | ||
208 | - Virtual sustain, portamento, and modulation wheel | ||
209 | - etc. | ||
210 | */ | ||
211 | //#define MIDI_ADVANCED | ||
212 | |||
213 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
214 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
215 | |||
216 | /* Bootmagic Lite key configuration */ | 196 | /* Bootmagic Lite key configuration */ |
217 | // #define BOOTMAGIC_LITE_ROW 0 | 197 | // #define BOOTMAGIC_LITE_ROW 0 |
218 | // #define BOOTMAGIC_LITE_COLUMN 0 | 198 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/ua62/rules.mk b/keyboards/ua62/rules.mk index 612a69b39..1448508c2 100644 --- a/keyboards/ua62/rules.mk +++ b/keyboards/ua62/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ungodly/launch_pad/rules.mk b/keyboards/ungodly/launch_pad/rules.mk index 1b796bbfe..059401b80 100644 --- a/keyboards/ungodly/launch_pad/rules.mk +++ b/keyboards/ungodly/launch_pad/rules.mk | |||
@@ -20,7 +20,7 @@ BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | |||
20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
21 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
22 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
23 | MIDI_ENABLE = yes | 23 | MIDI_ENABLE = yes # MIDI support |
24 | OLED_DRIVER_ENABLE = yes | 24 | OLED_DRIVER_ENABLE = yes |
25 | ENCODER_ENABLE = yes | 25 | ENCODER_ENABLE = yes |
26 | RGB_MATRIX_ENABLE = yes | 26 | RGB_MATRIX_ENABLE = yes |
diff --git a/keyboards/uranuma/config.h b/keyboards/uranuma/config.h index ea5b66fb3..b3dc62b52 100644 --- a/keyboards/uranuma/config.h +++ b/keyboards/uranuma/config.h | |||
@@ -179,26 +179,6 @@ | |||
179 | //#define NO_ACTION_MACRO | 179 | //#define NO_ACTION_MACRO |
180 | //#define NO_ACTION_FUNCTION | 180 | //#define NO_ACTION_FUNCTION |
181 | 181 | ||
182 | /* | ||
183 | * MIDI options | ||
184 | */ | ||
185 | |||
186 | /* enable basic MIDI features: | ||
187 | - MIDI notes can be sent when in Music mode is on | ||
188 | */ | ||
189 | //#define MIDI_BASIC | ||
190 | |||
191 | /* enable advanced MIDI features: | ||
192 | - MIDI notes can be added to the keymap | ||
193 | - Octave shift and transpose | ||
194 | - Virtual sustain, portamento, and modulation wheel | ||
195 | - etc. | ||
196 | */ | ||
197 | //#define MIDI_ADVANCED | ||
198 | |||
199 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
200 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
201 | |||
202 | /* Bootmagic Lite key configuration */ | 182 | /* Bootmagic Lite key configuration */ |
203 | // #define BOOTMAGIC_LITE_ROW 0 | 183 | // #define BOOTMAGIC_LITE_ROW 0 |
204 | // #define BOOTMAGIC_LITE_COLUMN 0 | 184 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/uranuma/rules.mk b/keyboards/uranuma/rules.mk index 8123c4ab4..96e0f35c2 100644 --- a/keyboards/uranuma/rules.mk +++ b/keyboards/uranuma/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/ut472/rules.mk b/keyboards/ut472/rules.mk index 468f930c1..6fca0a9da 100644 --- a/keyboards/ut472/rules.mk +++ b/keyboards/ut472/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/uzu42/rules.mk b/keyboards/uzu42/rules.mk index 792a09df1..0a0c0a760 100644 --- a/keyboards/uzu42/rules.mk +++ b/keyboards/uzu42/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/v60_type_r/config.h b/keyboards/v60_type_r/config.h index 38758d4ad..cc6c1f450 100644 --- a/keyboards/v60_type_r/config.h +++ b/keyboards/v60_type_r/config.h | |||
@@ -165,23 +165,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
165 | //#define NO_ACTION_ONESHOT | 165 | //#define NO_ACTION_ONESHOT |
166 | //#define NO_ACTION_MACRO | 166 | //#define NO_ACTION_MACRO |
167 | //#define NO_ACTION_FUNCTION | 167 | //#define NO_ACTION_FUNCTION |
168 | |||
169 | /* | ||
170 | * MIDI options | ||
171 | */ | ||
172 | |||
173 | /* enable basic MIDI features: | ||
174 | - MIDI notes can be sent when in Music mode is on | ||
175 | */ | ||
176 | //#define MIDI_BASIC | ||
177 | |||
178 | /* enable advanced MIDI features: | ||
179 | - MIDI notes can be added to the keymap | ||
180 | - Octave shift and transpose | ||
181 | - Virtual sustain, portamento, and modulation wheel | ||
182 | - etc. | ||
183 | */ | ||
184 | //#define MIDI_ADVANCED | ||
185 | |||
186 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
187 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/v60_type_r/rules.mk b/keyboards/v60_type_r/rules.mk index dfd505e68..3a6304246 100644 --- a/keyboards/v60_type_r/rules.mk +++ b/keyboards/v60_type_r/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = no # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable the RGB Underglow | 27 | RGBLIGHT_ENABLE = yes # Enable the RGB Underglow |
28 | RGBLIGHT_CUSTOM_DRIVER = yes | 28 | RGBLIGHT_CUSTOM_DRIVER = yes |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/vitamins_included/rules.mk b/keyboards/vitamins_included/rules.mk index f9923b014..4805f2fe0 100644 --- a/keyboards/vitamins_included/rules.mk +++ b/keyboards/vitamins_included/rules.mk | |||
@@ -13,7 +13,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
13 | CONSOLE_ENABLE = no # Console for debug | 13 | CONSOLE_ENABLE = no # Console for debug |
14 | DEBUG_ENABLE = no # Enable more debug info | 14 | DEBUG_ENABLE = no # Enable more debug info |
15 | EXTRAKEY_ENABLE = yes # Audio control and System control | 15 | EXTRAKEY_ENABLE = yes # Audio control and System control |
16 | MIDI_ENABLE = no # MIDI controls | ||
17 | MOUSEKEY_ENABLE = no # Mouse keys | 16 | MOUSEKEY_ENABLE = no # Mouse keys |
18 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
19 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. | 18 | RGBLIGHT_ENABLE = yes # Enable WS2812 RGB underlight. |
diff --git a/keyboards/waldo/rules.mk b/keyboards/waldo/rules.mk index 972f89c39..5578ca941 100644 --- a/keyboards/waldo/rules.mk +++ b/keyboards/waldo/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = yes # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wallaby/config.h b/keyboards/wallaby/config.h index 98377098f..c81c97ff1 100644 --- a/keyboards/wallaby/config.h +++ b/keyboards/wallaby/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/wallaby/rules.mk b/keyboards/wallaby/rules.mk index 9fa05eb3b..b5d7a7300 100644 --- a/keyboards/wallaby/rules.mk +++ b/keyboards/wallaby/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/westfoxtrot/aanzee/rules.mk b/keyboards/westfoxtrot/aanzee/rules.mk index fa2f44603..881cab930 100644 --- a/keyboards/westfoxtrot/aanzee/rules.mk +++ b/keyboards/westfoxtrot/aanzee/rules.mk | |||
@@ -22,7 +22,6 @@ COMMAND_ENABLE = no # Commands for debug and configuration | |||
22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 22 | NKRO_ENABLE = yes # USB Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard underlight functionality |
24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no | 25 | AUDIO_ENABLE = no |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/westfoxtrot/cyclops/config.h b/keyboards/westfoxtrot/cyclops/config.h index 9757c6c21..4ad660695 100644 --- a/keyboards/westfoxtrot/cyclops/config.h +++ b/keyboards/westfoxtrot/cyclops/config.h | |||
@@ -152,26 +152,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
152 | //#define NO_ACTION_MACRO | 152 | //#define NO_ACTION_MACRO |
153 | //#define NO_ACTION_FUNCTION | 153 | //#define NO_ACTION_FUNCTION |
154 | 154 | ||
155 | /* | ||
156 | * MIDI options | ||
157 | */ | ||
158 | |||
159 | /* enable basic MIDI features: | ||
160 | - MIDI notes can be sent when in Music mode is on | ||
161 | */ | ||
162 | //#define MIDI_BASIC | ||
163 | |||
164 | /* enable advanced MIDI features: | ||
165 | - MIDI notes can be added to the keymap | ||
166 | - Octave shift and transpose | ||
167 | - Virtual sustain, portamento, and modulation wheel | ||
168 | - etc. | ||
169 | */ | ||
170 | //#define MIDI_ADVANCED | ||
171 | |||
172 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
173 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
174 | |||
175 | /* Bootmagic Lite key configuration */ | 155 | /* Bootmagic Lite key configuration */ |
176 | // #define BOOTMAGIC_LITE_ROW 0 | 156 | // #define BOOTMAGIC_LITE_ROW 0 |
177 | // #define BOOTMAGIC_LITE_COLUMN 0 | 157 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/westfoxtrot/cyclops/rules.mk b/keyboards/westfoxtrot/cyclops/rules.mk index 6f8f3bfec..d54779838 100644 --- a/keyboards/westfoxtrot/cyclops/rules.mk +++ b/keyboards/westfoxtrot/cyclops/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/westfoxtrot/cypher/rev1/rules.mk b/keyboards/westfoxtrot/cypher/rev1/rules.mk index 61cf14a77..c89f2224f 100644 --- a/keyboards/westfoxtrot/cypher/rev1/rules.mk +++ b/keyboards/westfoxtrot/cypher/rev1/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/westfoxtrot/cypher/rev5/rules.mk b/keyboards/westfoxtrot/cypher/rev5/rules.mk index 729463a0e..3c8b00873 100644 --- a/keyboards/westfoxtrot/cypher/rev5/rules.mk +++ b/keyboards/westfoxtrot/cypher/rev5/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wheatfield/blocked65/rules.mk b/keyboards/wheatfield/blocked65/rules.mk index 6747fae7a..a24b420d4 100644 --- a/keyboards/wheatfield/blocked65/rules.mk +++ b/keyboards/wheatfield/blocked65/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI controls | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/wilba_tech/rama_works_koyu/rules.mk b/keyboards/wilba_tech/rama_works_koyu/rules.mk index b5afe506f..235e853d5 100644 --- a/keyboards/wilba_tech/rama_works_koyu/rules.mk +++ b/keyboards/wilba_tech/rama_works_koyu/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/rama_works_m10_b/config.h b/keyboards/wilba_tech/rama_works_m10_b/config.h index 083ff35e8..4d41aae56 100644 --- a/keyboards/wilba_tech/rama_works_m10_b/config.h +++ b/keyboards/wilba_tech/rama_works_m10_b/config.h | |||
@@ -156,24 +156,4 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
156 | //#define NO_ACTION_MACRO | 156 | //#define NO_ACTION_MACRO |
157 | //#define NO_ACTION_FUNCTION | 157 | //#define NO_ACTION_FUNCTION |
158 | 158 | ||
159 | /* | ||
160 | * MIDI options | ||
161 | */ | ||
162 | |||
163 | /* enable basic MIDI features: | ||
164 | - MIDI notes can be sent when in Music mode is on | ||
165 | */ | ||
166 | //#define MIDI_BASIC | ||
167 | |||
168 | /* enable advanced MIDI features: | ||
169 | - MIDI notes can be added to the keymap | ||
170 | - Octave shift and transpose | ||
171 | - Virtual sustain, portamento, and modulation wheel | ||
172 | - etc. | ||
173 | */ | ||
174 | //#define MIDI_ADVANCED | ||
175 | |||
176 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
177 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
178 | |||
179 | #define DYNAMIC_KEYMAP_LAYER_COUNT 10 | 159 | #define DYNAMIC_KEYMAP_LAYER_COUNT 10 |
diff --git a/keyboards/wilba_tech/rama_works_m10_b/rules.mk b/keyboards/wilba_tech/rama_works_m10_b/rules.mk index 296a74162..826fc8aec 100644 --- a/keyboards/wilba_tech/rama_works_m10_b/rules.mk +++ b/keyboards/wilba_tech/rama_works_m10_b/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/rama_works_m60_a/rules.mk b/keyboards/wilba_tech/rama_works_m60_a/rules.mk index 867319ff3..5c1efef89 100644 --- a/keyboards/wilba_tech/rama_works_m60_a/rules.mk +++ b/keyboards/wilba_tech/rama_works_m60_a/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/rama_works_m6_a/rules.mk b/keyboards/wilba_tech/rama_works_m6_a/rules.mk index 4b1049c69..b9cb562e5 100644 --- a/keyboards/wilba_tech/rama_works_m6_a/rules.mk +++ b/keyboards/wilba_tech/rama_works_m6_a/rules.mk | |||
@@ -26,7 +26,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
26 | COMMAND_ENABLE = no # Commands for debug and configuration | 26 | COMMAND_ENABLE = no # Commands for debug and configuration |
27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
28 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 28 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
29 | MIDI_ENABLE = no # MIDI controls | ||
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/rama_works_m6_b/rules.mk b/keyboards/wilba_tech/rama_works_m6_b/rules.mk index 98377ea22..5a7a15c2b 100644 --- a/keyboards/wilba_tech/rama_works_m6_b/rules.mk +++ b/keyboards/wilba_tech/rama_works_m6_b/rules.mk | |||
@@ -26,7 +26,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
26 | COMMAND_ENABLE = no # Commands for debug and configuration | 26 | COMMAND_ENABLE = no # Commands for debug and configuration |
27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 27 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
28 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 28 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
29 | MIDI_ENABLE = no # MIDI controls | ||
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/rama_works_u80_a/config.h b/keyboards/wilba_tech/rama_works_u80_a/config.h index 91922d7a8..0985183d3 100644 --- a/keyboards/wilba_tech/rama_works_u80_a/config.h +++ b/keyboards/wilba_tech/rama_works_u80_a/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // IS31FL3731 driver | 158 | // IS31FL3731 driver |
179 | #define DRIVER_COUNT 3 | 159 | #define DRIVER_COUNT 3 |
180 | #define DRIVER_LED_TOTAL 108 | 160 | #define DRIVER_LED_TOTAL 108 |
diff --git a/keyboards/wilba_tech/rama_works_u80_a/rules.mk b/keyboards/wilba_tech/rama_works_u80_a/rules.mk index 06f13389b..b6c0a1e2a 100644 --- a/keyboards/wilba_tech/rama_works_u80_a/rules.mk +++ b/keyboards/wilba_tech/rama_works_u80_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt60_a/config.h b/keyboards/wilba_tech/wt60_a/config.h index 82ab42463..bfb524c4e 100644 --- a/keyboards/wilba_tech/wt60_a/config.h +++ b/keyboards/wilba_tech/wt60_a/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt60_a/rules.mk b/keyboards/wilba_tech/wt60_a/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt60_a/rules.mk +++ b/keyboards/wilba_tech/wt60_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt60_b/rules.mk b/keyboards/wilba_tech/wt60_b/rules.mk index c9d96d4ac..91ddcf536 100644 --- a/keyboards/wilba_tech/wt60_b/rules.mk +++ b/keyboards/wilba_tech/wt60_b/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/wt60_bx/rules.mk b/keyboards/wilba_tech/wt60_bx/rules.mk index c9d96d4ac..91ddcf536 100644 --- a/keyboards/wilba_tech/wt60_bx/rules.mk +++ b/keyboards/wilba_tech/wt60_bx/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/wt60_c/rules.mk b/keyboards/wilba_tech/wt60_c/rules.mk index c9d96d4ac..91ddcf536 100644 --- a/keyboards/wilba_tech/wt60_c/rules.mk +++ b/keyboards/wilba_tech/wt60_c/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/wt60_d/config.h b/keyboards/wilba_tech/wt60_d/config.h index 578b3a554..1588f4c57 100644 --- a/keyboards/wilba_tech/wt60_d/config.h +++ b/keyboards/wilba_tech/wt60_d/config.h | |||
@@ -154,23 +154,3 @@ | |||
154 | //#define NO_ACTION_ONESHOT | 154 | //#define NO_ACTION_ONESHOT |
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | |||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/wilba_tech/wt60_d/rules.mk b/keyboards/wilba_tech/wt60_d/rules.mk index 296a74162..826fc8aec 100644 --- a/keyboards/wilba_tech/wt60_d/rules.mk +++ b/keyboards/wilba_tech/wt60_d/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt60_xt/config.h b/keyboards/wilba_tech/wt60_xt/config.h index 5914e59fd..a16c3c063 100644 --- a/keyboards/wilba_tech/wt60_xt/config.h +++ b/keyboards/wilba_tech/wt60_xt/config.h | |||
@@ -157,23 +157,3 @@ | |||
157 | //#define NO_ACTION_ONESHOT | 157 | //#define NO_ACTION_ONESHOT |
158 | //#define NO_ACTION_MACRO | 158 | //#define NO_ACTION_MACRO |
159 | //#define NO_ACTION_FUNCTION | 159 | //#define NO_ACTION_FUNCTION |
160 | |||
161 | /* | ||
162 | * MIDI options | ||
163 | */ | ||
164 | |||
165 | /* enable basic MIDI features: | ||
166 | - MIDI notes can be sent when in Music mode is on | ||
167 | */ | ||
168 | //#define MIDI_BASIC | ||
169 | |||
170 | /* enable advanced MIDI features: | ||
171 | - MIDI notes can be added to the keymap | ||
172 | - Octave shift and transpose | ||
173 | - Virtual sustain, portamento, and modulation wheel | ||
174 | - etc. | ||
175 | */ | ||
176 | //#define MIDI_ADVANCED | ||
177 | |||
178 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
179 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/wilba_tech/wt60_xt/rules.mk b/keyboards/wilba_tech/wt60_xt/rules.mk index aee8c6615..75c0d3cf0 100644 --- a/keyboards/wilba_tech/wt60_xt/rules.mk +++ b/keyboards/wilba_tech/wt60_xt/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = yes # Audio output on port C6 | 29 | AUDIO_ENABLE = yes # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt65_a/config.h b/keyboards/wilba_tech/wt65_a/config.h index 69979d5fd..a64a99efd 100644 --- a/keyboards/wilba_tech/wt65_a/config.h +++ b/keyboards/wilba_tech/wt65_a/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt65_a/rules.mk b/keyboards/wilba_tech/wt65_a/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt65_a/rules.mk +++ b/keyboards/wilba_tech/wt65_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt65_b/config.h b/keyboards/wilba_tech/wt65_b/config.h index 15a8dba7e..fdc44de84 100644 --- a/keyboards/wilba_tech/wt65_b/config.h +++ b/keyboards/wilba_tech/wt65_b/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt65_b/rules.mk b/keyboards/wilba_tech/wt65_b/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt65_b/rules.mk +++ b/keyboards/wilba_tech/wt65_b/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt69_a/config.h b/keyboards/wilba_tech/wt69_a/config.h index b96fc2c9f..d4d50e24b 100644 --- a/keyboards/wilba_tech/wt69_a/config.h +++ b/keyboards/wilba_tech/wt69_a/config.h | |||
@@ -154,23 +154,3 @@ | |||
154 | //#define NO_ACTION_ONESHOT | 154 | //#define NO_ACTION_ONESHOT |
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | |||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
diff --git a/keyboards/wilba_tech/wt69_a/rules.mk b/keyboards/wilba_tech/wt69_a/rules.mk index 2d07bfc83..c823d28a6 100644 --- a/keyboards/wilba_tech/wt69_a/rules.mk +++ b/keyboards/wilba_tech/wt69_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt75_a/config.h b/keyboards/wilba_tech/wt75_a/config.h index 23fa8eb46..1bcfb08ad 100644 --- a/keyboards/wilba_tech/wt75_a/config.h +++ b/keyboards/wilba_tech/wt75_a/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt75_a/rules.mk b/keyboards/wilba_tech/wt75_a/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt75_a/rules.mk +++ b/keyboards/wilba_tech/wt75_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt75_b/config.h b/keyboards/wilba_tech/wt75_b/config.h index f703d7e0c..ee7783e72 100644 --- a/keyboards/wilba_tech/wt75_b/config.h +++ b/keyboards/wilba_tech/wt75_b/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt75_b/rules.mk b/keyboards/wilba_tech/wt75_b/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt75_b/rules.mk +++ b/keyboards/wilba_tech/wt75_b/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt75_c/config.h b/keyboards/wilba_tech/wt75_c/config.h index 00fbfbd8a..900c8fb1a 100644 --- a/keyboards/wilba_tech/wt75_c/config.h +++ b/keyboards/wilba_tech/wt75_c/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt75_c/rules.mk b/keyboards/wilba_tech/wt75_c/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt75_c/rules.mk +++ b/keyboards/wilba_tech/wt75_c/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt80_a/config.h b/keyboards/wilba_tech/wt80_a/config.h index 0fe4972fe..33c4299a6 100644 --- a/keyboards/wilba_tech/wt80_a/config.h +++ b/keyboards/wilba_tech/wt80_a/config.h | |||
@@ -155,26 +155,6 @@ | |||
155 | //#define NO_ACTION_MACRO | 155 | //#define NO_ACTION_MACRO |
156 | //#define NO_ACTION_FUNCTION | 156 | //#define NO_ACTION_FUNCTION |
157 | 157 | ||
158 | /* | ||
159 | * MIDI options | ||
160 | */ | ||
161 | |||
162 | /* enable basic MIDI features: | ||
163 | - MIDI notes can be sent when in Music mode is on | ||
164 | */ | ||
165 | //#define MIDI_BASIC | ||
166 | |||
167 | /* enable advanced MIDI features: | ||
168 | - MIDI notes can be added to the keymap | ||
169 | - Octave shift and transpose | ||
170 | - Virtual sustain, portamento, and modulation wheel | ||
171 | - etc. | ||
172 | */ | ||
173 | //#define MIDI_ADVANCED | ||
174 | |||
175 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
176 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
177 | |||
178 | // enable the mono backlight | 158 | // enable the mono backlight |
179 | #define MONO_BACKLIGHT_ENABLED 1 | 159 | #define MONO_BACKLIGHT_ENABLED 1 |
180 | 160 | ||
diff --git a/keyboards/wilba_tech/wt80_a/rules.mk b/keyboards/wilba_tech/wt80_a/rules.mk index 79845956c..a7b51dd1f 100644 --- a/keyboards/wilba_tech/wt80_a/rules.mk +++ b/keyboards/wilba_tech/wt80_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt80_bc/rules.mk b/keyboards/wilba_tech/wt80_bc/rules.mk index f04683621..df9009047 100644 --- a/keyboards/wilba_tech/wt80_bc/rules.mk +++ b/keyboards/wilba_tech/wt80_bc/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/wt8_a/rules.mk b/keyboards/wilba_tech/wt8_a/rules.mk index 2d07bfc83..c823d28a6 100644 --- a/keyboards/wilba_tech/wt8_a/rules.mk +++ b/keyboards/wilba_tech/wt8_a/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wilba_tech/zeal60/rules.mk b/keyboards/wilba_tech/zeal60/rules.mk index b213b942f..c290c6e7e 100644 --- a/keyboards/wilba_tech/zeal60/rules.mk +++ b/keyboards/wilba_tech/zeal60/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wilba_tech/zeal65/rules.mk b/keyboards/wilba_tech/zeal65/rules.mk index c73d2ecd4..e8680c901 100644 --- a/keyboards/wilba_tech/zeal65/rules.mk +++ b/keyboards/wilba_tech/zeal65/rules.mk | |||
@@ -27,7 +27,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
27 | COMMAND_ENABLE = no # Commands for debug and configuration | 27 | COMMAND_ENABLE = no # Commands for debug and configuration |
28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 28 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 29 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
30 | MIDI_ENABLE = no # MIDI controls | ||
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
32 | UNICODE_ENABLE = no # Unicode | 31 | UNICODE_ENABLE = no # Unicode |
33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 32 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/wolfmarkclub/wm1/rules.mk b/keyboards/wolfmarkclub/wm1/rules.mk index 952b625d0..ead1c3466 100644 --- a/keyboards/wolfmarkclub/wm1/rules.mk +++ b/keyboards/wolfmarkclub/wm1/rules.mk | |||
@@ -21,7 +21,6 @@ SLEEP_LED_ENABLE = yes # Breathing sleep LED during USB suspend | |||
21 | NKRO_ENABLE = yes # USB Nkey Rollover | 21 | NKRO_ENABLE = yes # USB Nkey Rollover |
22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 22 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
23 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 23 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
24 | MIDI_ENABLE = no # MIDI support | ||
25 | UNICODE_ENABLE = no # Unicode | 24 | UNICODE_ENABLE = no # Unicode |
26 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
27 | AUDIO_ENABLE = no # Audio output on port C6 | 26 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wsk/gothic50/rules.mk b/keyboards/wsk/gothic50/rules.mk index be75a243d..dfe93b5f6 100644 --- a/keyboards/wsk/gothic50/rules.mk +++ b/keyboards/wsk/gothic50/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wsk/gothic70/rules.mk b/keyboards/wsk/gothic70/rules.mk index be75a243d..dfe93b5f6 100644 --- a/keyboards/wsk/gothic70/rules.mk +++ b/keyboards/wsk/gothic70/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/wsk/tkl30/rules.mk b/keyboards/wsk/tkl30/rules.mk index 9e2345b13..1a6d29e89 100644 --- a/keyboards/wsk/tkl30/rules.mk +++ b/keyboards/wsk/tkl30/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/x16/config.h b/keyboards/x16/config.h index 2711566b9..23509e430 100644 --- a/keyboards/x16/config.h +++ b/keyboards/x16/config.h | |||
@@ -189,26 +189,6 @@ | |||
189 | //#define NO_ACTION_MACRO | 189 | //#define NO_ACTION_MACRO |
190 | //#define NO_ACTION_FUNCTION | 190 | //#define NO_ACTION_FUNCTION |
191 | 191 | ||
192 | /* | ||
193 | * MIDI options | ||
194 | */ | ||
195 | |||
196 | /* enable basic MIDI features: | ||
197 | - MIDI notes can be sent when in Music mode is on | ||
198 | */ | ||
199 | //#define MIDI_BASIC | ||
200 | |||
201 | /* enable advanced MIDI features: | ||
202 | - MIDI notes can be added to the keymap | ||
203 | - Octave shift and transpose | ||
204 | - Virtual sustain, portamento, and modulation wheel | ||
205 | - etc. | ||
206 | */ | ||
207 | //#define MIDI_ADVANCED | ||
208 | |||
209 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
210 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
211 | |||
212 | /* Bootmagic Lite key configuration */ | 192 | /* Bootmagic Lite key configuration */ |
213 | // #define BOOTMAGIC_LITE_ROW 0 | 193 | // #define BOOTMAGIC_LITE_ROW 0 |
214 | // #define BOOTMAGIC_LITE_COLUMN 0 | 194 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/x16/rules.mk b/keyboards/x16/rules.mk index e98b65202..e9da92072 100644 --- a/keyboards/x16/rules.mk +++ b/keyboards/x16/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth |
30 | AUDIO_ENABLE = no # Audio output | 29 | AUDIO_ENABLE = no # Audio output |
diff --git a/keyboards/xd002/rules.mk b/keyboards/xd002/rules.mk index 51c4ea1e0..0c97b334c 100644 --- a/keyboards/xd002/rules.mk +++ b/keyboards/xd002/rules.mk | |||
@@ -20,7 +20,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
20 | NKRO_ENABLE = no # USB Nkey Rollover | 20 | NKRO_ENABLE = no # USB Nkey Rollover |
21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
22 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 22 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
23 | MIDI_ENABLE = no # MIDI support | ||
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xd004/v1/rules.mk b/keyboards/xd004/v1/rules.mk index a512d967b..d5d270f3f 100644 --- a/keyboards/xd004/v1/rules.mk +++ b/keyboards/xd004/v1/rules.mk | |||
@@ -19,7 +19,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 20 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/xd60/rev2/rules.mk b/keyboards/xd60/rev2/rules.mk index c1aee2667..a41c8d99e 100644 --- a/keyboards/xd60/rev2/rules.mk +++ b/keyboards/xd60/rev2/rules.mk | |||
@@ -19,7 +19,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 20 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/xd60/rev3/rules.mk b/keyboards/xd60/rev3/rules.mk index c1aee2667..a41c8d99e 100644 --- a/keyboards/xd60/rev3/rules.mk +++ b/keyboards/xd60/rev3/rules.mk | |||
@@ -19,7 +19,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
19 | COMMAND_ENABLE = no # Commands for debug and configuration | 19 | COMMAND_ENABLE = no # Commands for debug and configuration |
20 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 20 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 21 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
22 | MIDI_ENABLE = no # MIDI controls | ||
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
24 | UNICODE_ENABLE = no # Unicode | 23 | UNICODE_ENABLE = no # Unicode |
25 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 24 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/xd68/rules.mk b/keyboards/xd68/rules.mk index ba8f48a21..c6db7ea63 100644 --- a/keyboards/xd68/rules.mk +++ b/keyboards/xd68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | UNICODE_ENABLE = no # Unicode | 30 | UNICODE_ENABLE = no # Unicode |
diff --git a/keyboards/xd84/config.h b/keyboards/xd84/config.h index 5253848e8..9aa63a93f 100644 --- a/keyboards/xd84/config.h +++ b/keyboards/xd84/config.h | |||
@@ -186,26 +186,6 @@ | |||
186 | //#define NO_ACTION_MACRO | 186 | //#define NO_ACTION_MACRO |
187 | //#define NO_ACTION_FUNCTION | 187 | //#define NO_ACTION_FUNCTION |
188 | 188 | ||
189 | /* | ||
190 | * MIDI options | ||
191 | */ | ||
192 | |||
193 | /* enable basic MIDI features: | ||
194 | - MIDI notes can be sent when in Music mode is on | ||
195 | */ | ||
196 | //#define MIDI_BASIC | ||
197 | |||
198 | /* enable advanced MIDI features: | ||
199 | - MIDI notes can be added to the keymap | ||
200 | - Octave shift and transpose | ||
201 | - Virtual sustain, portamento, and modulation wheel | ||
202 | - etc. | ||
203 | */ | ||
204 | //#define MIDI_ADVANCED | ||
205 | |||
206 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
207 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
208 | |||
209 | /* Bootmagic Lite key configuration */ | 189 | /* Bootmagic Lite key configuration */ |
210 | // #define BOOTMAGIC_LITE_ROW 0 | 190 | // #define BOOTMAGIC_LITE_ROW 0 |
211 | // #define BOOTMAGIC_LITE_COLUMN 0 | 191 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/xd84/rules.mk b/keyboards/xd84/rules.mk index e19e36da2..92f231570 100644 --- a/keyboards/xd84/rules.mk +++ b/keyboards/xd84/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xd87/config.h b/keyboards/xd87/config.h index aa07e3225..24e2dc233 100644 --- a/keyboards/xd87/config.h +++ b/keyboards/xd87/config.h | |||
@@ -171,23 +171,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
171 | //#define NO_ACTION_MACRO | 171 | //#define NO_ACTION_MACRO |
172 | //#define NO_ACTION_FUNCTION | 172 | //#define NO_ACTION_FUNCTION |
173 | 173 | ||
174 | /* | ||
175 | * MIDI options | ||
176 | */ | ||
177 | |||
178 | /* enable basic MIDI features: | ||
179 | - MIDI notes can be sent when in Music mode is on | ||
180 | */ | ||
181 | //#define MIDI_BASIC | ||
182 | |||
183 | /* enable advanced MIDI features: | ||
184 | - MIDI notes can be added to the keymap | ||
185 | - Octave shift and transpose | ||
186 | - Virtual sustain, portamento, and modulation wheel | ||
187 | - etc. | ||
188 | */ | ||
189 | //#define MIDI_ADVANCED | ||
190 | |||
191 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
192 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
193 | |||
diff --git a/keyboards/xd87/rules.mk b/keyboards/xd87/rules.mk index 9e9c25032..d63716a98 100644 --- a/keyboards/xd87/rules.mk +++ b/keyboards/xd87/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xd96/config.h b/keyboards/xd96/config.h index d7197d006..280fd39df 100644 --- a/keyboards/xd96/config.h +++ b/keyboards/xd96/config.h | |||
@@ -187,26 +187,6 @@ | |||
187 | //#define NO_ACTION_MACRO | 187 | //#define NO_ACTION_MACRO |
188 | //#define NO_ACTION_FUNCTION | 188 | //#define NO_ACTION_FUNCTION |
189 | 189 | ||
190 | /* | ||
191 | * MIDI options | ||
192 | */ | ||
193 | |||
194 | /* enable basic MIDI features: | ||
195 | - MIDI notes can be sent when in Music mode is on | ||
196 | */ | ||
197 | //#define MIDI_BASIC | ||
198 | |||
199 | /* enable advanced MIDI features: | ||
200 | - MIDI notes can be added to the keymap | ||
201 | - Octave shift and transpose | ||
202 | - Virtual sustain, portamento, and modulation wheel | ||
203 | - etc. | ||
204 | */ | ||
205 | //#define MIDI_ADVANCED | ||
206 | |||
207 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
208 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
209 | |||
210 | /* Bootmagic Lite key configuration */ | 190 | /* Bootmagic Lite key configuration */ |
211 | // #define BOOTMAGIC_LITE_ROW 0 | 191 | // #define BOOTMAGIC_LITE_ROW 0 |
212 | // #define BOOTMAGIC_LITE_COLUMN 0 | 192 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/xd96/rules.mk b/keyboards/xd96/rules.mk index 944936b33..8230ff8f4 100644 --- a/keyboards/xd96/rules.mk +++ b/keyboards/xd96/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xelus/dawn60/rev1/rules.mk b/keyboards/xelus/dawn60/rev1/rules.mk index cda0ad468..09971e4bb 100644 --- a/keyboards/xelus/dawn60/rev1/rules.mk +++ b/keyboards/xelus/dawn60/rev1/rules.mk | |||
@@ -29,7 +29,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
30 | NKRO_ENABLE = yes # USB Nkey Rollover | 30 | NKRO_ENABLE = yes # USB Nkey Rollover |
31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
32 | MIDI_ENABLE = no # MIDI support | ||
33 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
34 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
35 | AUDIO_ENABLE = no # Audio output on port C6 | 34 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xelus/dawn60/rev1_qmk/rules.mk b/keyboards/xelus/dawn60/rev1_qmk/rules.mk index 2ddfd00f4..595236ad6 100644 --- a/keyboards/xelus/dawn60/rev1_qmk/rules.mk +++ b/keyboards/xelus/dawn60/rev1_qmk/rules.mk | |||
@@ -29,7 +29,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 29 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
30 | NKRO_ENABLE = yes # USB Nkey Rollover | 30 | NKRO_ENABLE = yes # USB Nkey Rollover |
31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 31 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
32 | MIDI_ENABLE = no # MIDI support | ||
33 | UNICODE_ENABLE = no # Unicode | 32 | UNICODE_ENABLE = no # Unicode |
34 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 33 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
35 | AUDIO_ENABLE = no # Audio output on port C6 | 34 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xelus/pachi/rgb/rules.mk b/keyboards/xelus/pachi/rgb/rules.mk index d54628bf9..37bf9937c 100644 --- a/keyboards/xelus/pachi/rgb/rules.mk +++ b/keyboards/xelus/pachi/rgb/rules.mk | |||
@@ -17,7 +17,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 17 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
20 | MIDI_ENABLE = no # MIDI support | ||
21 | UNICODE_ENABLE = no # Unicode | 20 | UNICODE_ENABLE = no # Unicode |
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output on port C6 | 22 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xelus/snap96/rules.mk b/keyboards/xelus/snap96/rules.mk index 1ed999988..34c7ebea7 100644 --- a/keyboards/xelus/snap96/rules.mk +++ b/keyboards/xelus/snap96/rules.mk | |||
@@ -24,7 +24,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 24 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | MIDI_ENABLE = no # MIDI support | ||
28 | UNICODE_ENABLE = no # Unicode | 27 | UNICODE_ENABLE = no # Unicode |
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/xw60/rules.mk b/keyboards/xw60/rules.mk index 6691a152b..9f51e199a 100644 --- a/keyboards/xw60/rules.mk +++ b/keyboards/xw60/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = yes # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/yatara/drink_me/rules.mk b/keyboards/yatara/drink_me/rules.mk index 2eedd7813..fc2df61a3 100644 --- a/keyboards/yatara/drink_me/rules.mk +++ b/keyboards/yatara/drink_me/rules.mk | |||
@@ -25,6 +25,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/yd60mq/rules.mk b/keyboards/yd60mq/rules.mk index d22cda225..728d786e4 100644 --- a/keyboards/yd60mq/rules.mk +++ b/keyboards/yd60mq/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = yes # USB Nkey Rollover | 25 | NKRO_ENABLE = yes # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = yes # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/yd68/config.h b/keyboards/yd68/config.h index a17d3d92b..0a2b93e61 100644 --- a/keyboards/yd68/config.h +++ b/keyboards/yd68/config.h | |||
@@ -168,23 +168,3 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
168 | //#define NO_ACTION_MACRO | 168 | //#define NO_ACTION_MACRO |
169 | //#define NO_ACTION_FUNCTION | 169 | //#define NO_ACTION_FUNCTION |
170 | 170 | ||
171 | /* | ||
172 | * MIDI options | ||
173 | */ | ||
174 | |||
175 | /* enable basic MIDI features: | ||
176 | - MIDI notes can be sent when in Music mode is on | ||
177 | */ | ||
178 | //#define MIDI_BASIC | ||
179 | |||
180 | /* enable advanced MIDI features: | ||
181 | - MIDI notes can be added to the keymap | ||
182 | - Octave shift and transpose | ||
183 | - Virtual sustain, portamento, and modulation wheel | ||
184 | - etc. | ||
185 | */ | ||
186 | //#define MIDI_ADVANCED | ||
187 | |||
188 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
189 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
190 | |||
diff --git a/keyboards/yd68/rules.mk b/keyboards/yd68/rules.mk index f93ba919f..2032537ea 100644 --- a/keyboards/yd68/rules.mk +++ b/keyboards/yd68/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality on B7 by default |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | UNICODE_ENABLE = no # Unicode | 28 | UNICODE_ENABLE = no # Unicode |
30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
31 | AUDIO_ENABLE = no # Audio output on port C6 | 30 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/yeehaw/rules.mk b/keyboards/yeehaw/rules.mk index 3fc8514b5..ce866949f 100644 --- a/keyboards/yeehaw/rules.mk +++ b/keyboards/yeehaw/rules.mk | |||
@@ -15,6 +15,5 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
15 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 15 | # if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
16 | NKRO_ENABLE = no # USB Nkey Rollover | 16 | NKRO_ENABLE = no # USB Nkey Rollover |
17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 17 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
18 | MIDI_ENABLE = no # MIDI support | ||
19 | UNICODE_ENABLE = no # Unicode | 18 | UNICODE_ENABLE = no # Unicode |
20 | ENCODER_ENABLE = yes | 19 | ENCODER_ENABLE = yes |
diff --git a/keyboards/ymdk/ymd09/rules.mk b/keyboards/ymdk/ymd09/rules.mk index 57deb0d42..dafb7d373 100644 --- a/keyboards/ymdk/ymd09/rules.mk +++ b/keyboards/ymdk/ymd09/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | LTO_ENABLE = yes # reduce firmware size | 30 | LTO_ENABLE = yes # reduce firmware size |
diff --git a/keyboards/yncognito/batpad/rules.mk b/keyboards/yncognito/batpad/rules.mk index f007deb0b..b53a3c6d3 100644 --- a/keyboards/yncognito/batpad/rules.mk +++ b/keyboards/yncognito/batpad/rules.mk | |||
@@ -26,7 +26,6 @@ NKRO_ENABLE = yes # USB Nkey Rollover | |||
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGB_MATRIX_ENABLE = yes | 27 | RGB_MATRIX_ENABLE = yes |
28 | RGB_MATRIX_DRIVER = WS2812 | 28 | RGB_MATRIX_DRIVER = WS2812 |
29 | MIDI_ENABLE = no # MIDI support | ||
30 | UNICODE_ENABLE = no # Unicode | 29 | UNICODE_ENABLE = no # Unicode |
31 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 30 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
32 | AUDIO_ENABLE = no # Audio output on port C6 | 31 | AUDIO_ENABLE = no # Audio output on port C6 |
diff --git a/keyboards/yosino58/rules.mk b/keyboards/yosino58/rules.mk index f9974412d..54f7ca066 100644 --- a/keyboards/yosino58/rules.mk +++ b/keyboards/yosino58/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/yurei/config.h b/keyboards/yurei/config.h index 81ddbe428..c3527956a 100644 --- a/keyboards/yurei/config.h +++ b/keyboards/yurei/config.h | |||
@@ -194,26 +194,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
194 | #define NO_ACTION_MACRO | 194 | #define NO_ACTION_MACRO |
195 | #define NO_ACTION_FUNCTION | 195 | #define NO_ACTION_FUNCTION |
196 | 196 | ||
197 | /* | ||
198 | * MIDI options | ||
199 | */ | ||
200 | |||
201 | /* enable basic MIDI features: | ||
202 | - MIDI notes can be sent when in Music mode is on | ||
203 | */ | ||
204 | //#define MIDI_BASIC | ||
205 | |||
206 | /* enable advanced MIDI features: | ||
207 | - MIDI notes can be added to the keymap | ||
208 | - Octave shift and transpose | ||
209 | - Virtual sustain, portamento, and modulation wheel | ||
210 | - etc. | ||
211 | */ | ||
212 | //#define MIDI_ADVANCED | ||
213 | |||
214 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
215 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
216 | |||
217 | /* Bootmagic Lite key configuration */ | 197 | /* Bootmagic Lite key configuration */ |
218 | // #define BOOTMAGIC_LITE_ROW 0 | 198 | // #define BOOTMAGIC_LITE_ROW 0 |
219 | // #define BOOTMAGIC_LITE_COLUMN 0 | 199 | // #define BOOTMAGIC_LITE_COLUMN 0 |
diff --git a/keyboards/yurei/rules.mk b/keyboards/yurei/rules.mk index 771854d8d..233b96375 100644 --- a/keyboards/yurei/rules.mk +++ b/keyboards/yurei/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = no # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/yushakobo/quick7/config.h b/keyboards/yushakobo/quick7/config.h index e5bcfe761..fdff5d92e 100644 --- a/keyboards/yushakobo/quick7/config.h +++ b/keyboards/yushakobo/quick7/config.h | |||
@@ -195,25 +195,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. | |||
195 | #define NO_ACTION_MACRO | 195 | #define NO_ACTION_MACRO |
196 | #define NO_ACTION_FUNCTION | 196 | #define NO_ACTION_FUNCTION |
197 | #endif | 197 | #endif |
198 | /* | ||
199 | * MIDI options | ||
200 | */ | ||
201 | |||
202 | /* enable basic MIDI features: | ||
203 | - MIDI notes can be sent when in Music mode is on | ||
204 | */ | ||
205 | //#define MIDI_BASIC | ||
206 | |||
207 | /* enable advanced MIDI features: | ||
208 | - MIDI notes can be added to the keymap | ||
209 | - Octave shift and transpose | ||
210 | - Virtual sustain, portamento, and modulation wheel | ||
211 | - etc. | ||
212 | */ | ||
213 | //#define MIDI_ADVANCED | ||
214 | |||
215 | /* override number of MIDI tone keycodes (each octave adds 12 keycodes and allocates 12 bytes) */ | ||
216 | //#define MIDI_TONE_KEYCODE_OCTAVES 1 | ||
217 | 198 | ||
218 | /* Bootmagic Lite key configuration */ | 199 | /* Bootmagic Lite key configuration */ |
219 | // #define BOOTMAGIC_LITE_ROW 0 | 200 | // #define BOOTMAGIC_LITE_ROW 0 |
diff --git a/keyboards/yushakobo/quick7/rules.mk b/keyboards/yushakobo/quick7/rules.mk index a6916fdad..eb2cf50e0 100644 --- a/keyboards/yushakobo/quick7/rules.mk +++ b/keyboards/yushakobo/quick7/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | 30 | ||
diff --git a/keyboards/zfrontier/big_switch/rules.mk b/keyboards/zfrontier/big_switch/rules.mk index 82baf38d8..5acc380f6 100644 --- a/keyboards/zfrontier/big_switch/rules.mk +++ b/keyboards/zfrontier/big_switch/rules.mk | |||
@@ -25,7 +25,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
25 | NKRO_ENABLE = no # USB Nkey Rollover | 25 | NKRO_ENABLE = no # USB Nkey Rollover |
26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 26 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 27 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
28 | MIDI_ENABLE = no # MIDI support | ||
29 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
30 | AUDIO_ENABLE = no # Audio output on port C6 | 29 | AUDIO_ENABLE = no # Audio output on port C6 |
31 | TAP_DANCE_ENABLE = no | 30 | TAP_DANCE_ENABLE = no |
diff --git a/keyboards/zinc/rules.mk b/keyboards/zinc/rules.mk index 9b400e5d5..c6386a10a 100644 --- a/keyboards/zinc/rules.mk +++ b/keyboards/zinc/rules.mk | |||
@@ -22,7 +22,6 @@ CONSOLE_ENABLE = no # Console for debug | |||
22 | COMMAND_ENABLE = no # Commands for debug and configuration | 22 | COMMAND_ENABLE = no # Commands for debug and configuration |
23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work | 23 | NKRO_ENABLE = no # Nkey Rollover - if this doesn't work, see here: https://github.com/tmk/tmk_keyboard/wiki/FAQ#nkro-doesnt-work |
24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 24 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
25 | MIDI_ENABLE = no # MIDI controls | ||
26 | AUDIO_ENABLE = no # Audio output on port C6 | 25 | AUDIO_ENABLE = no # Audio output on port C6 |
27 | UNICODE_ENABLE = no # Unicode | 26 | UNICODE_ENABLE = no # Unicode |
28 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 27 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
diff --git a/keyboards/zvecr/split_blackpill/rules.mk b/keyboards/zvecr/split_blackpill/rules.mk index 7f2acfd44..e54f20489 100644 --- a/keyboards/zvecr/split_blackpill/rules.mk +++ b/keyboards/zvecr/split_blackpill/rules.mk | |||
@@ -18,7 +18,6 @@ SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend | |||
18 | NKRO_ENABLE = yes # USB Nkey Rollover | 18 | NKRO_ENABLE = yes # USB Nkey Rollover |
19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 19 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 20 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
21 | MIDI_ENABLE = no # MIDI support | ||
22 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 21 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
23 | AUDIO_ENABLE = no # Audio output | 22 | AUDIO_ENABLE = no # Audio output |
24 | 23 | ||
diff --git a/keyboards/zvecr/zv48/rules.mk b/keyboards/zvecr/zv48/rules.mk index 4ebb593e8..375a64c99 100644 --- a/keyboards/zvecr/zv48/rules.mk +++ b/keyboards/zvecr/zv48/rules.mk | |||
@@ -14,7 +14,6 @@ NKRO_ENABLE = yes # USB Nkey Rollover | |||
14 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality | 14 | BACKLIGHT_ENABLE = no # Enable keyboard backlight functionality |
15 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow | 15 | RGBLIGHT_ENABLE = yes # Enable keyboard RGB underglow |
16 | ENCODER_ENABLE = yes # Enable rotary encoder support | 16 | ENCODER_ENABLE = yes # Enable rotary encoder support |
17 | MIDI_ENABLE = no # MIDI support | ||
18 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID | 17 | BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID |
19 | AUDIO_ENABLE = no # Audio output | 18 | AUDIO_ENABLE = no # Audio output |
20 | 19 | ||