1
0
Fork 0

Move converter specific tmk_core protocols (#14743)

This commit is contained in:
Joel Challis 2021-10-07 23:14:26 +01:00 committed by GitHub
parent c39170b7ef
commit e0d688d4c8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
13 changed files with 15 additions and 34 deletions

View file

@ -31,6 +31,10 @@ Ported to QMK by Peter Roe <pete@13bit.me>
#include "led.h"
#include "timer.h"
#ifndef ADB_MOUSE_MAXACC
# define ADB_MOUSE_MAXACC 8
#endif
static bool is_iso_layout = false;
// matrix state buffer(1:on, 0:off)
@ -84,6 +88,10 @@ void matrix_init(void)
static report_mouse_t mouse_report = {};
void housekeeping_task_kb(void) {
adb_mouse_task();
}
void adb_mouse_task(void)
{
uint16_t codes;