Ryan
|
2944e93870
|
Move `USB_MAX_POWER_CONSUMPTION` to data driven (#20648)
|
2023-05-01 17:37:12 +10:00 |
Ryan
|
76cc7fe109
|
Move matrix config to info.json, part 6 (#20019)
|
2023-03-11 00:32:05 +11:00 |
Ryan
|
2da0827d4f
|
Remove matrix size defines (#19581)
|
2023-02-17 16:08:25 +11:00 |
Ryan
|
7fad94ba2d
|
Remove unused RGBLight defines from config.h (#19859)
|
2023-02-17 08:13:41 +11:00 |
Ryan
|
a988f8a169
|
Remove unused `GRAVE_ESC_CTRL_OVERRIDE` from config.h (#19752)
|
2023-02-06 02:40:23 +00:00 |
Ryan
|
f20a05440e
|
Remove unused `MATRIX_HAS_GHOST` from config.h (#19726)
|
2023-02-03 00:04:10 +00:00 |
Ryan
|
b867522f8c
|
Clean up Force NKRO in config.h (#19718)
|
2023-01-30 20:45:41 +00:00 |
Nick Brassel
|
f6dd8dea2e
|
Remove usages of config_common.h from config.h files. (#19714)
|
2023-01-31 06:03:30 +11:00 |
Ryan
|
b727434391
|
Remove commented out backlight config & stray "backlight levels" (#19703)
|
2023-01-28 15:42:44 +00:00 |
Drashna Jaelre
|
55b9a4d06e
|
Remove RGBLIGHT_ANIMATION and clean up effect defines for G-K (#18726)
|
2022-10-15 09:55:27 -07:00 |
Nick Brassel
|
154d35ac14
|
Remove `UNUSED_PINS` (#17931)
|
2022-08-06 23:23:35 +10:00 |
Ryan
|
2d778d2ff2
|
Move keyboard USB IDs and strings to data driven: handwired (#17822)
|
2022-07-30 17:31:44 +10: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
|
62f304a225
|
Remove `DESCRIPTION`, H-J (#11616)
|
2021-01-20 00:38:12 +11:00 |
James Young
|
78d5224a1d
|
Remove HD44780 References, Part 3 (#10238)
* remove HD44780_ENABLE rules: G-H
* remove HD44780_ENABLE config: G-H
|
2020-09-07 22:28:18 -07:00 |
Ryan
|
4d76d85d7b
|
V-USB: Use manufacturer and product strings from config.h (#7797)
* V-USB: Use manufacturer and product strings from config.h
* Update board configs
|
2020-03-26 13:11:32 +00:00 |
fauxpark
|
3047335729
|
Add support for configurable polling interval and power usage o… (#7336)
* Add support for custom polling interval and power usage on V-USB boards
* Use 1ms as default for now
|
2019-11-15 10:21:22 +11:00 |
vuhopkep
|
d4ff836d64
|
[Keyboard] Add Hnah40 keyboard (#6183)
* Add Hnah40 keyboard
Adding new keyboard Hnah40, open source hardware
* update infor
* make code looks neater
* move to handwired board
move and update readme file
* update
* update
* update image
* change bootloader type
* last change
|
2019-06-26 13:41:32 -07:00 |