diff options
| author | Joel Challis | 2025-11-07 00:34:23 +0100 |
|---|---|---|
| committer | GitHub | 2025-11-07 00:34:23 +0100 |
| commit | 01952bf39aadc42a70221f91d8cc0536ad458b04 (patch) | |
| tree | 420abd3dd9ce60588cb564778fb122c21e1e5bbc /quantum | |
| parent | 1a991ffd24b8a5414b72c10dfc0fbea0afc085c2 (diff) | |
Implement minimal connection update logic (#25334)
Diffstat (limited to 'quantum')
| -rw-r--r-- | quantum/keyboard.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/keyboard.c b/quantum/keyboard.c index 173c696e2d..ce8c8efa68 100644 --- a/quantum/keyboard.c +++ b/quantum/keyboard.c @@ -29,6 +29,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. #include "debug.h" #include "command.h" #include "util.h" +#include "host.h" #include "sendchar.h" #include "eeconfig.h" #include "action_layer.h" @@ -471,6 +472,7 @@ void keyboard_init(void) { #ifdef CONNECTION_ENABLE connection_init(); #endif + host_init(); led_init_ports(); #ifdef BACKLIGHT_ENABLE backlight_init_ports(); @@ -699,6 +701,8 @@ void quantum_task(void) { #ifdef LAYER_LOCK_ENABLE layer_lock_task(); #endif + + host_task(); } /** \brief Main task that is repeatedly called as fast as possible. */ |