aboutsummaryrefslogtreecommitdiff
path: root/quantum/main.c
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 /quantum/main.c
parentb3ee124da666287ef13787523ea88bf40713ff4c (diff)
downloadqmk_firmware-36d123e9c5a9ce0e29b9bc22ef87661bf479e299.tar.gz
qmk_firmware-36d123e9c5a9ce0e29b9bc22ef87661bf479e299.zip
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 'quantum/main.c')
-rw-r--r--quantum/main.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/quantum/main.c b/quantum/main.c
index 3814d371c..6ed6b9574 100644
--- a/quantum/main.c
+++ b/quantum/main.c
@@ -43,6 +43,10 @@ void protocol_task(void) {
43 protocol_post_task(); 43 protocol_post_task();
44} 44}
45 45
46#ifdef DEFERRED_EXEC_ENABLE
47void deferred_exec_task(void);
48#endif // DEFERRED_EXEC_ENABLE
49
46/** \brief Main 50/** \brief Main
47 * 51 *
48 * FIXME: Needs doc 52 * FIXME: Needs doc
@@ -58,6 +62,12 @@ int main(void) {
58 /* Main loop */ 62 /* Main loop */
59 while (true) { 63 while (true) {
60 protocol_task(); 64 protocol_task();
65
66#ifdef DEFERRED_EXEC_ENABLE
67 // Run deferred executions
68 deferred_exec_task();
69#endif // DEFERRED_EXEC_ENABLE
70
61 housekeeping_task(); 71 housekeeping_task();
62 } 72 }
63} 73}