diff options
author | Ryan <fauxpark@gmail.com> | 2022-03-27 05:38:09 +1100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-26 18:38:09 +0000 |
commit | c05e8afe454bf3706d69314c251dc5266c557007 (patch) | |
tree | 604b8b446d111f9d5307888e9ea61acf8fada14d /quantum/quantum.h | |
parent | 71ffb41c9b7c87cbeb2b19bac058717436bcda23 (diff) |
Joystick feature updates (#16732)
* Joystick feature updates
* Move new functions to joystick.h
* Docs
Diffstat (limited to 'quantum/quantum.h')
-rw-r--r-- | quantum/quantum.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/quantum.h b/quantum/quantum.h index 020e455941..f87e5f1916 100644 --- a/quantum/quantum.h +++ b/quantum/quantum.h @@ -200,6 +200,10 @@ extern layer_state_t layer_state; # include "dynamic_keymap.h" #endif +#ifdef JOYSTICK_ENABLE +# include "joystick.h" +#endif + #ifdef VIA_ENABLE # include "via.h" #endif |