diff options
| author | Drashna Jaelre <drashna@live.com> | 2021-03-01 08:57:02 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-01 08:57:02 -0800 |
| commit | 0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3 (patch) | |
| tree | 1e85b1d15a9ea6ad86fcb6ae8d084f926dd11ab8 /quantum/quantum.c | |
| parent | 86f6f682744b81bba1003e555f902af78dcdaad4 (diff) | |
| download | qmk_firmware-0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3.tar.gz qmk_firmware-0e984b6e7e216a62df0b5d53f6a8f0d4bc13dca3.zip | |
Add ability to toggle One Shot functionality (#4198)
Co-authored-by: Nick Brassel <nick@tzarc.org>
Co-authored-by: Ryan <fauxpark@gmail.com>
Diffstat (limited to 'quantum/quantum.c')
| -rw-r--r-- | quantum/quantum.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/quantum/quantum.c b/quantum/quantum.c index ef751a233..78601ce6b 100644 --- a/quantum/quantum.c +++ b/quantum/quantum.c | |||
| @@ -319,6 +319,17 @@ bool process_record_quantum(keyrecord_t *record) { | |||
| 319 | set_output(OUTPUT_BLUETOOTH); | 319 | set_output(OUTPUT_BLUETOOTH); |
| 320 | return false; | 320 | return false; |
| 321 | #endif | 321 | #endif |
| 322 | #ifndef NO_ACTION_ONESHOT | ||
| 323 | case ONESHOT_TOGGLE: | ||
| 324 | oneshot_toggle(); | ||
| 325 | break; | ||
| 326 | case ONESHOT_ENABLE: | ||
| 327 | oneshot_enable(); | ||
| 328 | break; | ||
| 329 | case ONESHOT_DISABLE: | ||
| 330 | oneshot_disable(); | ||
| 331 | break; | ||
| 332 | #endif | ||
| 322 | } | 333 | } |
| 323 | } | 334 | } |
| 324 | 335 | ||
