qmk-dactyl-manuform-a/keyboards/hadron
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
..
ver2 Remove MIDI Configuration boilerplate (#11151) 2021-08-16 06:51:13 +10:00
ver3 Remove MIDI Configuration boilerplate (#11151) 2021-08-16 06:51:13 +10:00
.noci Initial list of keyboards to exclude from CI (#11213) 2020-12-21 15:38:39 +01:00
config.h Remove `DESCRIPTION`, H-J (#11616) 2021-01-20 00:38:12 +11:00
hadron.c adding Hadron v3 keyboard, QWIIC devices support, haptic feedback support (#4462) 2018-12-04 08:04:57 -08:00
hadron.h 2021 May 29 Breaking Changes Update (#13034) 2021-05-29 14:38:50 -07:00
i2c.c Adds Hadron Keyboard (#1492) 2017-07-11 13:53:50 -04:00
i2c.h Adds Hadron Keyboard (#1492) 2017-07-11 13:53:50 -04:00
info.json Hadron: Readme, Refactor, and Configurator support (#3170) 2018-06-12 17:34:04 -07:00
readme.md Modified URLs to point to new locations 2019-01-13 09:11:18 -08:00
rules.mk [Core] Cleanup rules.mk for F303 keyboards (#7306) 2019-11-14 18:25:40 -08:00

readme.md

Hadron

Hadron

A low-profile ortholinear build.

Keyboard Maintainer: ishtob, QMK
Hardware Supported: Hadron PCB rev0, rev2, rev3

Make example for this keyboard (after setting up your build environment):

make hadron:default

See build environment setup then the make instructions for more information.