diff options
author | Nick Brassel <nick@tzarc.org> | 2022-02-04 14:44:51 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-04 03:44:51 +0000 |
commit | 3403f5813cc1daa29a2da0690341152abae3aa86 (patch) | |
tree | b3befd697e439a05143b08a26dba0ba1fee7fd95 /docs | |
parent | 333dd5d48c5bb4b80a0a17876bca5eda087ed10b (diff) | |
download | qmk_firmware-3403f5813cc1daa29a2da0690341152abae3aa86.tar.gz qmk_firmware-3403f5813cc1daa29a2da0690341152abae3aa86.zip |
Point out that deferred execution needs to be enabled in rules.mk (#16196)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/custom_quantum_functions.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/custom_quantum_functions.md b/docs/custom_quantum_functions.md index dd1654bd2..f9a6e1bcc 100644 --- a/docs/custom_quantum_functions.md +++ b/docs/custom_quantum_functions.md | |||
@@ -408,7 +408,7 @@ The `val` is the value of the data that you want to write to EEPROM. And the `e | |||
408 | 408 | ||
409 | ### Deferred Execution :id=deferred-execution | 409 | ### Deferred Execution :id=deferred-execution |
410 | 410 | ||
411 | QMK has the ability to execute a callback after a specified period of time, rather than having to manually manage timers. | 411 | QMK has the ability to execute a callback after a specified period of time, rather than having to manually manage timers. To enable this functionality, set `DEFERRED_EXEC_ENABLE = yes` in rules.mk. |
412 | 412 | ||
413 | #### Deferred executor callbacks | 413 | #### Deferred executor callbacks |
414 | 414 | ||