Nick Brassel 
							
						 
					 
					
						
						
							
						
						154d35ac14 
					 
					
						
						
							
							Remove UNUSED_PINS ( #17931 )  
						
						
						
						
					 
					
						2022-08-06 23:23:35 +10:00 
						 
				 
			
				
					
						
							
							
								Ryan 
							
						 
					 
					
						
						
							
						
						674422eb13 
					 
					
						
						
							
							Move keyboard USB IDs and strings to data driven: A ( #17781 )  
						
						
						
						
					 
					
						2022-07-26 01:52:18 +01:00 
						 
				 
			
				
					
						
							
							
								Ryan 
							
						 
					 
					
						
						
							
						
						764dc18a81 
					 
					
						
						
							
							Remove NO_ACTION_MACRO and NO_ACTION_FUNCTION from keyboard config.h ( #16655 )  
						
						
						
						
					 
					
						2022-03-15 13:56:58 +00:00 
						 
				 
			
				
					
						
							
							
								James Young 
							
						 
					 
					
						
						
							
						
						6f36eb469d 
					 
					
						
						
							
							Remove unused IS_COMMAND() instances and Magic Key definitions ( #14610 )  
						
						... 
						
						
						
						* Remove unused IS_COMMAND() instances from keyboard-level config.h, 0-9
* Remove unused IS_COMMAND() instances from keyboard-level config.h, A-B
* Remove unused IS_COMMAND() instances from keyboard-level config.h, C-D
* Remove unused IS_COMMAND() instances from keyboard-level config.h, E-G
* Remove unused IS_COMMAND() instances from keyboard-level config.h, handwired
* Remove unused IS_COMMAND() instances from keyboard-level config.h, H-M
* Remove unused IS_COMMAND() instances from keyboard-level config.h, N-R
* Remove unused IS_COMMAND() instances from keyboard-level config.h, S-Z
* Remove unused Magic Key definitions from keyboard-level config.h, 0-9
* Remove unused Magic Key definitions from keyboard-level config.h, A
* Remove unused Magic Key definitions from keyboard-level config.h, B
* Remove unused Magic Key definitions from keyboard-level config.h, C
* Remove unused Magic Key definitions from keyboard-level config.h, D-E
* Remove unused Magic Key definitions from keyboard-level config.h, F-H
* Remove unused Magic Key definitions from keyboard-level config.h, handwired
* Remove unused Magic Key definitions from keyboard-level config.h, I-K
* Remove unused Magic Key definitions from keyboard-level config.h, L-M
* Remove unused Magic Key definitions from keyboard-level config.h, N-R
* Remove unused Magic Key definitions from keyboard-level config.h, S-V
* Remove unused Magic Key definitions from keyboard-level config.h, W-Z
* Merge remote-tracking branch 'upstream/master' into clean/command_and_magic
* Remove remaining unused IS_COMMAND() instances from keyboard-level config.h 
						
						
					 
					
						2021-09-26 02:57:20 -07:00 
						 
				 
			
				
					
						
							
							
								James Young 
							
						 
					 
					
						
						
							
						
						4b453dca92 
					 
					
						
						
							
							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 > 
						
						
					 
					
						2021-08-16 06:51:13 +10:00 
						 
				 
			
				
					
						
							
							
								Ryan 
							
						 
					 
					
						
						
							
						
						6937f1d70e 
					 
					
						
						
							
							Remove MIDI_ENABLE_STRICT from keyboards' config.h ( #11679 )  
						
						
						
						
					 
					
						2021-01-27 17:26:26 +11:00 
						 
				 
			
				
					
						
							
							
								Ryan 
							
						 
					 
					
						
						
							
						
						d8b9825a8b 
					 
					
						
						
							
							Remove DESCRIPTION, 0-A ( #11369 )  
						
						
						
						
					 
					
						2021-01-11 19:47:02 +11:00 
						 
				 
			
				
					
						
							
							
								Joel Challis 
							
						 
					 
					
						
						
							
						
						ddcb1794fa 
					 
					
						
						
							
							Refactor to use led config - Part 1 ( #10905 )  
						
						... 
						
						
						
						* Refactor to use led config
* Refactor to use led config
* Refactor to use led config
* Refactor to use led config
* Refactor to use led config 
						
						
					 
					
						2020-11-17 17:06:30 +00:00 
						 
				 
			
				
					
						
							
							
								James Young 
							
						 
					 
					
						
						
							
						
						aaf58155c7 
					 
					
						
						
							
							Remove HD44780 References, Part 1 ( #9052 )  
						
						... 
						
						
						
						* remove HD44780_ENABLE rules: 0-9, A-B
* remove HD44780_ENABLE config: 0-9, A-B 
						
						
					 
					
						2020-07-27 06:11:16 +10:00 
						 
				 
			
				
					
						
							
							
								Drashna Jaelre 
							
						 
					 
					
						
						
							
						
						faaaa134fd 
					 
					
						
						
							
							Replace DEBOUNCING_DELAY (deprecated) with DEBOUNCE ( #5997 )  
						
						
						
						
					 
					
						2019-06-06 12:09:56 -07:00 
						 
				 
			
				
					
						
							
							
								MechMerlin 
							
						 
					 
					
						
						
							
						
						67495ae24a 
					 
					
						
						
							
							[Keyboard] Alf X1.1 QMK Support ( #5189 )  
						
						... 
						
						
						
						* initial commit
* get rid of vanilla cookie cutter code  and replace with  more correct info
* edit config file for pins and switch matrix size
* turn on bootmagic lite, and backlight/rgb settings
* copy pasta switch matrix from noroads tool
* create an appropriate keymap (copy pasta)
* disable some features to decrease firmware file size
* add qmk configurator support
* add in support for caps lock, scroll lock, and num lock leds 
						
						
					 
					
						2019-02-19 20:57:15 -08:00