X-Git-Url: https://git.friedersdorff.com/?a=blobdiff_plain;f=converter%2Fadb_usb%2Fmatrix.c;h=966ccf5215f9c27a15777a7729af7587f43750ed;hb=6b1976d05bd86086c529eefb7e733e3b87b37665;hp=83f460411122e21e77dc056dae00f419f3db2066;hpb=cccd4186f43ee89a8841373fa1557daf48ae7181;p=max%2Ftmk_keyboard.git diff --git a/converter/adb_usb/matrix.c b/converter/adb_usb/matrix.c index 83f46041..966ccf52 100644 --- a/converter/adb_usb/matrix.c +++ b/converter/adb_usb/matrix.c @@ -30,13 +30,13 @@ along with this program. If not, see . #include "report.h" #include "host.h" #include "led.h" +#include "timer.h" static bool has_media_keys = false; static bool is_iso_layout = false; -static report_mouse_t mouse_report = {}; // matrix state buffer(1:on, 0:off) static matrix_row_t matrix[MATRIX_ROWS]; @@ -76,6 +76,7 @@ void matrix_init(void) is_iso_layout = false; break; } + xprintf("hadler_id: %02X, is_iso_layout: %s\n", handler_id, (is_iso_layout ? "yes" : "no")); // Adjustable keyboard media keys: address=0x07 and handlerID=0x02 has_media_keys = (0x02 == (adb_host_talk(ADB_ADDR_APPLIANCE, ADB_REG_3) & 0xff)); @@ -122,12 +123,21 @@ void matrix_init(void) #endif #define MAX(X, Y) ((X) > (Y) ? (X) : (Y)) +static report_mouse_t mouse_report = {}; + void adb_mouse_task(void) { uint16_t codes; int16_t x, y; static int8_t mouseacc; - _delay_ms(12); // delay for preventing overload of poor ADB keyboard controller + + /* tick of last polling */ + static uint16_t tick_ms; + + // polling with 12ms interval + if (timer_elapsed(tick_ms) < 12) return; + tick_ms = timer_read(); + codes = adb_host_mouse_recv(); // If nothing received reset mouse acceleration, and quit. if (!codes) { @@ -185,12 +195,18 @@ uint8_t matrix_scan(void) uint16_t codes; uint8_t key0, key1; + /* tick of last polling */ + static uint16_t tick_ms; + codes = extra_key; extra_key = 0xFFFF; if ( codes == 0xFFFF ) { - _delay_ms(12); // delay for preventing overload of poor ADB keyboard controller + // polling with 12ms interval + if (timer_elapsed(tick_ms) < 12) return 0; + tick_ms = timer_read(); + codes = adb_host_kbd_recv(ADB_ADDR_KEYBOARD); // Adjustable keybaord media keys