aboutsummaryrefslogtreecommitdiff
path: root/common/mousekey.c
diff options
context:
space:
mode:
Diffstat (limited to 'common/mousekey.c')
-rw-r--r--common/mousekey.c36
1 files changed, 21 insertions, 15 deletions
diff --git a/common/mousekey.c b/common/mousekey.c
index 58a6e35bb..6fe8e2d26 100644
--- a/common/mousekey.c
+++ b/common/mousekey.c
@@ -37,7 +37,7 @@ static void mousekey_debug(void);
37 * see wikipedia http://en.wikipedia.org/wiki/Mouse_keys 37 * see wikipedia http://en.wikipedia.org/wiki/Mouse_keys
38 */ 38 */
39#ifndef MOUSEKEY_DELAY_TIME 39#ifndef MOUSEKEY_DELAY_TIME
40# define MOUSEKEY_DELAY_TIME 20 40# define MOUSEKEY_DELAY_TIME 100
41#endif 41#endif
42 42
43#define MOUSEKEY_MOVE_INIT 5 43#define MOUSEKEY_MOVE_INIT 5
@@ -54,10 +54,16 @@ static uint16_t last_timer = 0;
54 54
55static inline uint8_t move_unit(void) 55static inline uint8_t move_unit(void)
56{ 56{
57 uint16_t unit = 5 + mousekey_repeat*4; 57 uint16_t unit = MOUSEKEY_MOVE_INIT + MOUSEKEY_MOVE_ACCEL * mousekey_repeat;
58 return (unit > 63 ? 63 : unit); 58 return (unit > 63 ? 63 : unit);
59} 59}
60 60
61static inline uint8_t wheel_unit(void)
62{
63 uint16_t unit = MOUSEKEY_WHEEL_INIT + MOUSEKEY_WHEEL_ACCEL * mousekey_repeat;
64 return (unit > 15 ? 15 : unit);
65}
66
61void mousekey_task(void) 67void mousekey_task(void)
62{ 68{
63 if (timer_elapsed(last_timer) < MOUSEKEY_DELAY_TIME) 69 if (timer_elapsed(last_timer) < MOUSEKEY_DELAY_TIME)
@@ -80,10 +86,10 @@ void mousekey_task(void)
80 report.y *= 0.7; 86 report.y *= 0.7;
81 } 87 }
82 88
83 if (report.v > 0) report.v = move_unit(); 89 if (report.v > 0) report.v = wheel_unit();
84 if (report.v < 0) report.v = move_unit() * -1; 90 if (report.v < 0) report.v = wheel_unit() * -1;
85 if (report.h > 0) report.h = move_unit(); 91 if (report.h > 0) report.h = wheel_unit();
86 if (report.h < 0) report.h = move_unit() * -1; 92 if (report.h < 0) report.h = wheel_unit() * -1;
87 93
88 mousekey_send(); 94 mousekey_send();
89} 95}
@@ -107,19 +113,19 @@ void mousekey_on(uint8_t code)
107 113
108void mousekey_off(uint8_t code) 114void mousekey_off(uint8_t code)
109{ 115{
110 if (code == KC_MS_UP && report.y < 0) report.y = 0; 116 if (code == KC_MS_UP && report.y < 0) report.y = 0;
111 else if (code == KC_MS_DOWN && report.y > 0) report.y = 0; 117 else if (code == KC_MS_DOWN && report.y > 0) report.y = 0;
112 else if (code == KC_MS_LEFT && report.x < 0) report.x = 0; 118 else if (code == KC_MS_LEFT && report.x < 0) report.x = 0;
113 else if (code == KC_MS_RIGHT && report.x > 0) report.x = 0; 119 else if (code == KC_MS_RIGHT && report.x > 0) report.x = 0;
114 else if (code == KC_MS_WH_UP && report.v > 0) report.v = 0; 120 else if (code == KC_MS_WH_UP && report.v > 0) report.v = 0;
115 else if (code == KC_MS_WH_DOWN && report.v < 0) report.v = 0; 121 else if (code == KC_MS_WH_DOWN && report.v < 0) report.v = 0;
116 else if (code == KC_MS_WH_LEFT && report.h < 0) report.h = 0; 122 else if (code == KC_MS_WH_LEFT && report.h < 0) report.h = 0;
117 else if (code == KC_MS_WH_RIGHT && report.h > 0) report.h = 0; 123 else if (code == KC_MS_WH_RIGHT && report.h > 0) report.h = 0;
118 else if (code == KC_MS_BTN1) report.buttons &= ~MOUSE_BTN1; 124 else if (code == KC_MS_BTN1) report.buttons &= ~MOUSE_BTN1;
119 else if (code == KC_MS_BTN2) report.buttons &= ~MOUSE_BTN2; 125 else if (code == KC_MS_BTN2) report.buttons &= ~MOUSE_BTN2;
120 else if (code == KC_MS_BTN3) report.buttons &= ~MOUSE_BTN3; 126 else if (code == KC_MS_BTN3) report.buttons &= ~MOUSE_BTN3;
121 else if (code == KC_MS_BTN4) report.buttons &= ~MOUSE_BTN4; 127 else if (code == KC_MS_BTN4) report.buttons &= ~MOUSE_BTN4;
122 else if (code == KC_MS_BTN5) report.buttons &= ~MOUSE_BTN5; 128 else if (code == KC_MS_BTN5) report.buttons &= ~MOUSE_BTN5;
123 129
124 if (report.x == 0 && report.y == 0 && report.v == 0 && report.h == 0) 130 if (report.x == 0 && report.y == 0 && report.v == 0 && report.h == 0)
125 mousekey_repeat = 0; 131 mousekey_repeat = 0;