summaryrefslogtreecommitdiff
path: root/quantum
diff options
context:
space:
mode:
authorJoel Challis <git@zvecr.com>2025-11-06 23:34:23 +0000
committerGitHub <noreply@github.com>2025-11-06 23:34:23 +0000
commit01952bf39aadc42a70221f91d8cc0536ad458b04 (patch)
tree420abd3dd9ce60588cb564778fb122c21e1e5bbc /quantum
parent1a991ffd24b8a5414b72c10dfc0fbea0afc085c2 (diff)
Implement minimal connection update logic (#25334)
Diffstat (limited to 'quantum')
-rw-r--r--quantum/keyboard.c4
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/>.
29#include "debug.h" 29#include "debug.h"
30#include "command.h" 30#include "command.h"
31#include "util.h" 31#include "util.h"
32#include "host.h"
32#include "sendchar.h" 33#include "sendchar.h"
33#include "eeconfig.h" 34#include "eeconfig.h"
34#include "action_layer.h" 35#include "action_layer.h"
@@ -471,6 +472,7 @@ void keyboard_init(void) {
471#ifdef CONNECTION_ENABLE 472#ifdef CONNECTION_ENABLE
472 connection_init(); 473 connection_init();
473#endif 474#endif
475 host_init();
474 led_init_ports(); 476 led_init_ports();
475#ifdef BACKLIGHT_ENABLE 477#ifdef BACKLIGHT_ENABLE
476 backlight_init_ports(); 478 backlight_init_ports();
@@ -699,6 +701,8 @@ void quantum_task(void) {
699#ifdef LAYER_LOCK_ENABLE 701#ifdef LAYER_LOCK_ENABLE
700 layer_lock_task(); 702 layer_lock_task();
701#endif 703#endif
704
705 host_task();
702} 706}
703 707
704/** \brief Main task that is repeatedly called as fast as possible. */ 708/** \brief Main task that is repeatedly called as fast as possible. */