forked from mirrors/qmk_firmware
Fix build option MOUSEKEY_ENABLE.
This commit is contained in:
parent
71ac82337f
commit
5b00cf3f02
4 changed files with 34 additions and 18 deletions
|
@ -90,8 +90,10 @@ static void clear_keyboard(void)
|
|||
host_system_send(0);
|
||||
host_consumer_send(0);
|
||||
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
mousekey_clear();
|
||||
mousekey_send();
|
||||
#endif
|
||||
}
|
||||
|
||||
static void clear_keyboard_but_mods(void)
|
||||
|
@ -102,8 +104,10 @@ static void clear_keyboard_but_mods(void)
|
|||
host_system_send(0);
|
||||
host_consumer_send(0);
|
||||
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
mousekey_clear();
|
||||
mousekey_send();
|
||||
#endif
|
||||
}
|
||||
|
||||
static void layer_switch_on(uint8_t code)
|
||||
|
@ -159,8 +163,10 @@ static void register_code(uint8_t code)
|
|||
host_send_keyboard_report();
|
||||
}
|
||||
else if IS_MOUSEKEY(code) {
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
mousekey_on(code);
|
||||
mousekey_send();
|
||||
#endif
|
||||
}
|
||||
else if IS_CONSUMER(code) {
|
||||
uint16_t usage = 0;
|
||||
|
@ -251,8 +257,10 @@ static void unregister_code(uint8_t code)
|
|||
host_send_keyboard_report();
|
||||
}
|
||||
else if IS_MOUSEKEY(code) {
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
mousekey_off(code);
|
||||
mousekey_send();
|
||||
#endif
|
||||
}
|
||||
else if IS_CONSUMER(code) {
|
||||
host_consumer_send(0x0000);
|
||||
|
@ -390,7 +398,7 @@ static inline void process_key(keyevent_t event)
|
|||
case KEY_UP:
|
||||
case MOD_UP:
|
||||
unregister_code(code);
|
||||
// no key registered? mousekey, mediakey, systemkey
|
||||
// TODO: no key registered? mousekey, mediakey, systemkey
|
||||
if (!host_has_anykey())
|
||||
NEXT(IDLE);
|
||||
break;
|
||||
|
@ -570,8 +578,10 @@ void keyboard_task(void)
|
|||
}
|
||||
}
|
||||
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
// mousekey repeat & acceleration
|
||||
mousekey_task();
|
||||
#endif
|
||||
|
||||
// FAIL SAFE: clear all key if no key down
|
||||
if (matrix_change) {
|
||||
|
|
|
@ -37,7 +37,7 @@ static void mousekey_debug(void);
|
|||
* see wikipedia http://en.wikipedia.org/wiki/Mouse_keys
|
||||
*/
|
||||
#ifndef MOUSEKEY_DELAY_TIME
|
||||
# define MOUSEKEY_DELAY_TIME 20
|
||||
# define MOUSEKEY_DELAY_TIME 100
|
||||
#endif
|
||||
|
||||
#define MOUSEKEY_MOVE_INIT 5
|
||||
|
@ -54,10 +54,16 @@ static uint16_t last_timer = 0;
|
|||
|
||||
static inline uint8_t move_unit(void)
|
||||
{
|
||||
uint16_t unit = 5 + mousekey_repeat*4;
|
||||
uint16_t unit = MOUSEKEY_MOVE_INIT + MOUSEKEY_MOVE_ACCEL * mousekey_repeat;
|
||||
return (unit > 63 ? 63 : unit);
|
||||
}
|
||||
|
||||
static inline uint8_t wheel_unit(void)
|
||||
{
|
||||
uint16_t unit = MOUSEKEY_WHEEL_INIT + MOUSEKEY_WHEEL_ACCEL * mousekey_repeat;
|
||||
return (unit > 15 ? 15 : unit);
|
||||
}
|
||||
|
||||
void mousekey_task(void)
|
||||
{
|
||||
if (timer_elapsed(last_timer) < MOUSEKEY_DELAY_TIME)
|
||||
|
@ -80,10 +86,10 @@ void mousekey_task(void)
|
|||
report.y *= 0.7;
|
||||
}
|
||||
|
||||
if (report.v > 0) report.v = move_unit();
|
||||
if (report.v < 0) report.v = move_unit() * -1;
|
||||
if (report.h > 0) report.h = move_unit();
|
||||
if (report.h < 0) report.h = move_unit() * -1;
|
||||
if (report.v > 0) report.v = wheel_unit();
|
||||
if (report.v < 0) report.v = wheel_unit() * -1;
|
||||
if (report.h > 0) report.h = wheel_unit();
|
||||
if (report.h < 0) report.h = wheel_unit() * -1;
|
||||
|
||||
mousekey_send();
|
||||
}
|
||||
|
|
|
@ -42,7 +42,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
/* mouse keys */
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
# define MOUSEKEY_DELAY_TIME 192
|
||||
# define MOUSEKEY_DELAY_TIME 100
|
||||
#endif
|
||||
|
||||
|
||||
|
|
|
@ -37,7 +37,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|||
|
||||
/* mouse keys */
|
||||
#ifdef MOUSEKEY_ENABLE
|
||||
# define MOUSEKEY_DELAY_TIME 255
|
||||
# define MOUSEKEY_DELAY_TIME 100
|
||||
#endif
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue