summaryrefslogtreecommitdiff
path: root/docs/getting_started_make_guide.md
diff options
context:
space:
mode:
authorNick Brassel <nick@tzarc.org>2021-11-16 05:21:09 +1100
committerGitHub <noreply@github.com>2021-11-15 18:21:09 +0000
commit36d123e9c5a9ce0e29b9bc22ef87661bf479e299 (patch)
tree1033718afb33e1eb7dc3cd7b99db59a90668fa8a /docs/getting_started_make_guide.md
parentb3ee124da666287ef13787523ea88bf40713ff4c (diff)
Add support for deferred executors. (#14859)
* Add support for deferred executors. * More docs. * Include from quantum.h * Cleanup. * Parameter checks * Comments. * qmk format-c * I accidentally a few words. * API name change. * Apply suggestions from code review Co-authored-by: Sergey Vlasov <sigprof@gmail.com> * Review comments. * qmk format-c * Review comments. Co-authored-by: Sergey Vlasov <sigprof@gmail.com>
Diffstat (limited to 'docs/getting_started_make_guide.md')
-rw-r--r--docs/getting_started_make_guide.md4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/getting_started_make_guide.md b/docs/getting_started_make_guide.md
index a514864353..1a7e276098 100644
--- a/docs/getting_started_make_guide.md
+++ b/docs/getting_started_make_guide.md
@@ -145,6 +145,10 @@ Lets you replace the default matrix scanning routine with your own code. For fur
Lets you replace the default key debouncing routine with an alternative one. If `custom` you will need to provide your own implementation.
+`DEFERRED_EXEC_ENABLE`
+
+Enables deferred executor support -- timed delays before callbacks are invoked. See [deferred execution](custom_quantum_functions.md#deferred-execution) for more information.
+
## Customizing Makefile Options on a Per-Keymap Basis
If your keymap directory has a file called `rules.mk` any options you set in that file will take precedence over other `rules.mk` options for your particular keyboard.