diff options
author | tmk <nobody@nowhere> | 2011-09-17 22:39:50 +0900 |
---|---|---|
committer | tmk <nobody@nowhere> | 2011-09-17 23:53:18 +0900 |
commit | e67c988824f5ec0c965beb412f8ee5953dfd3c8c (patch) | |
tree | 190543f5bddfd31a326234aad91a0a995e55863a /mousekey.c | |
parent | b703de7b298f8463bf4654fa3730ba1958a7fa9e (diff) |
Added Bulegiga iWRAP support into HHKB.(Bluetooth)
Diffstat (limited to 'mousekey.c')
-rwxr-xr-x[-rw-r--r--] | mousekey.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mousekey.c b/mousekey.c index 69b75240fd..76bd0fd363 100644..100755 --- a/mousekey.c +++ b/mousekey.c @@ -63,10 +63,10 @@ void mousekey_decode(uint8_t code) else if (code == KB_MS_BTN3) report.buttons |= MOUSE_BTN3; else if (code == KB_MS_BTN4) report.buttons |= MOUSE_BTN4; else if (code == KB_MS_BTN5) report.buttons |= MOUSE_BTN5; - else if (code == KB_MS_WH_UP) report.v += 1; - else if (code == KB_MS_WH_DOWN) report.v -= 1; - else if (code == KB_MS_WH_LEFT) report.h -= 1; - else if (code == KB_MS_WH_RIGHT)report.h += 1; + else if (code == KB_MS_WH_UP) report.v += move_unit()/4; + else if (code == KB_MS_WH_DOWN) report.v -= move_unit()/4; + else if (code == KB_MS_WH_LEFT) report.h -= move_unit()/4; + else if (code == KB_MS_WH_RIGHT)report.h += move_unit()/4; } bool mousekey_changed(void) @@ -87,7 +87,7 @@ void mousekey_send(void) // send immediately when buttun state is changed if (report.buttons == report_prev.buttons) { - if (timer_elapsed(last_timer) < 5) { + if (timer_elapsed(last_timer) < 100) { mousekey_clear_report(); return; } |