Implement minimal connection update logic (#25334)

This commit is contained in:
Joel Challis 2025-11-06 23:34:23 +00:00 committed by GitHub
parent 1a991ffd24
commit 01952bf39a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 49 additions and 2 deletions

View file

@ -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. */