diff options
author | brickbots <rich@brickbots.com> | 2020-03-22 06:06:16 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-23 00:06:16 +1100 |
commit | bfb2f8e0a8f809374fdec102eb02c3bce46a14ee (patch) | |
tree | 2bab982f9b1cc9184b58ca9764d1ba09e133335c /quantum/quantum.h | |
parent | d8f3c28a3786e7888fe3157c173845107c3ccc95 (diff) | |
download | qmk_firmware-bfb2f8e0a8f809374fdec102eb02c3bce46a14ee.tar.gz qmk_firmware-bfb2f8e0a8f809374fdec102eb02c3bce46a14ee.zip |
Add Word Per Minute calculation feature (#8054)
* Add Word Per Minute calculation feature
* Fix copyright info
* Remove header from quantum.c, setup overloadable keycode inclusion for WPM, update docs
* Simplify logic for keycode filtering
* Adding link from summary to wpm_feature info
* Update docs/feature_wpm.md
Typo in function prototype example in docs
Co-Authored-By: James Young <18669334+noroadsleft@users.noreply.github.com>
* Add WPM transport via i2c
Co-authored-by: James Young <18669334+noroadsleft@users.noreply.github.com>
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index d03ba5942..191407fab 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h | |||
@@ -178,6 +178,10 @@ extern layer_state_t layer_state; | |||
178 | # include "via.h" | 178 | # include "via.h" |
179 | #endif | 179 | #endif |
180 | 180 | ||
181 | #ifdef WPM_ENABLE | ||
182 | # include "wpm.h" | ||
183 | #endif | ||
184 | |||
181 | // Function substitutions to ease GPIO manipulation | 185 | // Function substitutions to ease GPIO manipulation |
182 | #if defined(__AVR__) | 186 | #if defined(__AVR__) |
183 | typedef uint8_t pin_t; | 187 | typedef uint8_t pin_t; |