aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/config_options.md2
-rw-r--r--docs/custom_quantum_functions.md66
-rw-r--r--docs/getting_started_make_guide.md4
3 files changed, 72 insertions, 0 deletions
diff --git a/docs/config_options.md b/docs/config_options.md
index ece7ab8ee..9f2453b69 100644
--- a/docs/config_options.md
+++ b/docs/config_options.md
@@ -446,6 +446,8 @@ Use these to enable or disable building certain features. The more you have enab
446 * Forces the keyboard to wait for a USB connection to be established before it starts up 446 * Forces the keyboard to wait for a USB connection to be established before it starts up
447* `NO_USB_STARTUP_CHECK` 447* `NO_USB_STARTUP_CHECK`
448 * Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master. 448 * Disables usb suspend check after keyboard startup. Usually the keyboard waits for the host to wake it up before any tasks are performed. This is useful for split keyboards as one half will not get a wakeup call but must send commands to the master.
449* `DEFERRED_EXEC_ENABLE`
450 * Enables deferred executor support -- timed delays before callbacks are invoked. See [deferred execution](custom_quantum_functions.md#deferred-execution) for more information.
449 451
450## USB Endpoint Limitations 452## USB Endpoint Limitations
451 453
diff --git a/docs/custom_quantum_functions.md b/docs/custom_quantum_functions.md
index 798c346e6..dd1654bd2 100644
--- a/docs/custom_quantum_functions.md
+++ b/docs/custom_quantum_functions.md
@@ -405,3 +405,69 @@ And you're done. The RGB layer indication will only work if you want it to. And
405* Keymap: `void eeconfig_init_user(void)`, `uint32_t eeconfig_read_user(void)` and `void eeconfig_update_user(uint32_t val)` 405* Keymap: `void eeconfig_init_user(void)`, `uint32_t eeconfig_read_user(void)` and `void eeconfig_update_user(uint32_t val)`
406 406
407The `val` is the value of the data that you want to write to EEPROM. And the `eeconfig_read_*` function return a 32 bit (DWORD) value from the EEPROM. 407The `val` is the value of the data that you want to write to EEPROM. And the `eeconfig_read_*` function return a 32 bit (DWORD) value from the EEPROM.
408
409### Deferred Execution :id=deferred-execution
410
411QMK has the ability to execute a callback after a specified period of time, rather than having to manually manage timers.
412
413#### Deferred executor callbacks
414
415All _deferred executor callbacks_ have a common function signature and look like:
416
417```c
418uint32_t my_callback(uint32_t trigger_time, void *cb_arg) {
419 /* do something */
420 bool repeat = my_deferred_functionality();
421 return repeat ? 500 : 0;
422}
423```
424
425The first argument `trigger_time` is the intended time of execution. If other delays prevent executing at the exact trigger time, this allows for "catch-up" or even skipping intervals, depending on the required behaviour.
426
427The second argument `cb_arg` is the same argument passed into `defer_exec()` below, and can be used to access state information from the original call context.
428
429The return value is the number of milliseconds to use if the function should be repeated -- if the callback returns `0` then it's automatically unregistered. In the example above, a hypothetical `my_deferred_functionality()` is invoked to determine if the callback needs to be repeated -- if it does, it reschedules for a `500` millisecond delay, otherwise it informs the deferred execution background task that it's done, by returning `0`.
430
431?> Note that the returned delay will be applied to the intended trigger time, not the time of callback invocation. This allows for generally consistent timing even in the face of occasional late execution.
432
433#### Deferred executor registration
434
435Once a callback has been defined, it can be scheduled using the following API:
436
437```c
438deferred_token my_token = defer_exec(1500, my_callback, NULL);
439```
440
441The first argument is the number of milliseconds to wait until executing `my_callback` -- in the case above, `1500` milliseconds, or 1.5 seconds.
442
443The third parameter is the `cb_arg` that gets passed to the callback at the point of execution. This value needs to be valid at the time the callback is invoked -- a local function value will be destroyed before the callback is executed and should not be used. If this is not required, `NULL` should be used.
444
445The return value is a `deferred_token` that can consequently be used to cancel the deferred executor callback before it's invoked. If a failure occurs, the returned value will be `INVALID_DEFERRED_TOKEN`. Usually this will be as a result of supplying `0` to the delay, or a `NULL` for the callback. The other failure case is if there are too many deferred executions "in flight" -- this can be increased by changing the limit, described below.
446
447#### Extending a deferred execution
448
449The `deferred_token` returned by `defer_exec()` can be used to extend a the duration a pending execution waits before it gets invoked:
450```c
451// This will re-delay my_token's future execution such that it is invoked 800ms after the current time
452extend_deferred_exec(my_token, 800);
453```
454
455#### Cancelling a deferred execution
456
457The `deferred_token` returned by `defer_exec()` can be used to cancel a pending execution before it gets invoked:
458```c
459// This will cancel my_token's future execution
460cancel_deferred_exec(my_token);
461```
462
463Once a token has been canceled, it should be considered invalid. Reusing the same token is not supported.
464
465#### Deferred callback limits
466
467There are a maximum number of deferred callbacks that can be scheduled, controlled by the value of the define `MAX_DEFERRED_EXECUTORS`.
468
469If registrations fail, then you can increase this value in your keyboard or keymap `config.h` file, for example to 16 instead of the default 8:
470
471```c
472#define MAX_DEFERRED_EXECUTORS 16
473```
diff --git a/docs/getting_started_make_guide.md b/docs/getting_started_make_guide.md
index a51486435..1a7e27609 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
145 145
146Lets you replace the default key debouncing routine with an alternative one. If `custom` you will need to provide your own implementation. 146Lets you replace the default key debouncing routine with an alternative one. If `custom` you will need to provide your own implementation.
147 147
148`DEFERRED_EXEC_ENABLE`
149
150Enables deferred executor support -- timed delays before callbacks are invoked. See [deferred execution](custom_quantum_functions.md#deferred-execution) for more information.
151
148## Customizing Makefile Options on a Per-Keymap Basis 152## Customizing Makefile Options on a Per-Keymap Basis
149 153
150If 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. 154If 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.