diff options
author | Jack Humbert <jack.humb@gmail.com> | 2017-07-24 18:44:03 +0200 |
---|---|---|
committer | Jack Humbert <jack.humb@gmail.com> | 2017-07-24 18:45:34 +0200 |
commit | cefc09ae7dd88cd6b92412881888404da1abdfcb (patch) | |
tree | d19e222daf3aa1e2a1c7341ace677c5b2a86c770 /docs | |
parent | a543ad4c1d2c9782b779d63e3eef8d39370441af (diff) | |
download | qmk_firmware-cefc09ae7dd88cd6b92412881888404da1abdfcb.tar.gz qmk_firmware-cefc09ae7dd88cd6b92412881888404da1abdfcb.tar.xz |
adds option for alt pitch standards
Diffstat (limited to 'docs')
-rw-r--r-- | docs/modding_your_keyboard.md | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/modding_your_keyboard.md b/docs/modding_your_keyboard.md index 5613bf525..a58fbd52b 100644 --- a/docs/modding_your_keyboard.md +++ b/docs/modding_your_keyboard.md @@ -79,6 +79,10 @@ By default, `MUSIC_MASK` is set to `keycode < 0xFF` which means keycodes less th Which will capture all keycodes - be careful, this will get you stuck in music mode until you restart your keyboard! +The pitch standard (`PITCH_STANDARD_A`) is 440.0f by default - to change this, add something like this to your `config.h`: + + #define PITCH_STANDARD_A 432.0f + ## MIDI functionalty This is still a WIP, but check out `quantum/keymap_midi.c` to see what's happening. Enable from the Makefile. |