[Keyboard] PloopyCo VIA updates (#11290)
Co-authored-by: ridingqwerty <george.g.koenig@gmail.com> Co-authored-by: Glen D'souza <gdsouza@linuxmail.org>
This commit is contained in:
parent
9ee1282019
commit
e768fb83bd
10 changed files with 144 additions and 116 deletions
|
@ -17,46 +17,11 @@
|
||||||
*/
|
*/
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// used for tracking the state
|
|
||||||
bool is_drag_scroll = false;
|
|
||||||
|
|
||||||
enum custom_keycodes {
|
|
||||||
DRAG_SCROLL = PLOOPY_SAFE_RANGE,
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
[0] = LAYOUT(/* Base */
|
[0] = LAYOUT(/* Base */
|
||||||
C(KC_C), KC_BTN1, KC_BTN3, KC_BTN2, C(KC_V), KC_BTN4, KC_BTN5, DPI_CONFIG)
|
C(KC_C), KC_BTN1, KC_BTN3, LT(1, KC_BTN2), C(KC_V), KC_BTN4, KC_BTN5, DPI_CONFIG),
|
||||||
|
[1] = LAYOUT(/* Base */
|
||||||
|
_______, DRAG_SCROLL, _______, _______, _______, _______, _______, RESET),
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
||||||
switch (keycode) {
|
|
||||||
case DRAG_SCROLL:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
// this toggles the state each time you tap it
|
|
||||||
is_drag_scroll ^= 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// The real magic is here.
|
|
||||||
// This function is called to translate the processed sensor movement
|
|
||||||
// from the mouse sensor and translates it into x and y movement for
|
|
||||||
// the mouse report. Normally. So if "drag scroll" is toggled on,
|
|
||||||
// moving the ball scrolls instead. You could remove the x or y here
|
|
||||||
// to only scroll in one direction, if you wanted, as well. In fact,
|
|
||||||
// there is no reason that you need to send this to the mouse report.
|
|
||||||
// You could have it register a key, instead.
|
|
||||||
void process_mouse_user(report_mouse_t* mouse_report, int16_t x, int16_t y) {
|
|
||||||
if (is_drag_scroll) {
|
|
||||||
mouse_report->h = x;
|
|
||||||
mouse_report->v = y;
|
|
||||||
} else {
|
|
||||||
mouse_report->x = x;
|
|
||||||
mouse_report->y = y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
[0] = LAYOUT(C(KC_C), KC_BTN1, KC_BTN3, KC_BTN2, C(KC_V), KC_BTN4, KC_BTN5, C(KC_Z)),
|
[0] = LAYOUT(C(KC_C), KC_BTN1, KC_BTN3, KC_BTN2, C(KC_V), KC_BTN4, KC_BTN5, DPI_CONFIG),
|
||||||
[1] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
[1] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
||||||
[2] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
[2] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
||||||
[3] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
[3] = LAYOUT(_______, _______, _______, _______, _______, _______, _______, _______),
|
||||||
|
|
|
@ -39,6 +39,12 @@
|
||||||
#ifndef PLOOPY_DPI_DEFAULT
|
#ifndef PLOOPY_DPI_DEFAULT
|
||||||
# define PLOOPY_DPI_DEFAULT 0
|
# define PLOOPY_DPI_DEFAULT 0
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_DPI
|
||||||
|
# define PLOOPY_DRAGSCROLL_DPI 100 // Fixed-DPI Drag Scroll
|
||||||
|
#endif
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_MULTIPLIER
|
||||||
|
# define PLOOPY_DRAGSCROLL_MULTIPLIER 0.75 // Variable-DPI Drag Scroll
|
||||||
|
#endif
|
||||||
|
|
||||||
keyboard_config_t keyboard_config;
|
keyboard_config_t keyboard_config;
|
||||||
uint16_t dpi_array[] = PLOOPY_DPI_OPTIONS;
|
uint16_t dpi_array[] = PLOOPY_DPI_OPTIONS;
|
||||||
|
@ -57,6 +63,7 @@ uint16_t lastScroll = 0; // Previous confirmed wheel event
|
||||||
uint16_t lastMidClick = 0; // Stops scrollwheel from being read if it was pressed
|
uint16_t lastMidClick = 0; // Stops scrollwheel from being read if it was pressed
|
||||||
uint8_t OptLowPin = OPT_ENC1;
|
uint8_t OptLowPin = OPT_ENC1;
|
||||||
bool debug_encoder = false;
|
bool debug_encoder = false;
|
||||||
|
bool is_drag_scroll = false;
|
||||||
|
|
||||||
__attribute__((weak)) void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
|
__attribute__((weak)) void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
|
||||||
mouse_report->h = h;
|
mouse_report->h = h;
|
||||||
|
@ -155,13 +162,30 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
||||||
is_scroll_clicked = record->event.pressed;
|
is_scroll_clicked = record->event.pressed;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!process_record_user(keycode, record)) { return false; }
|
if (!process_record_user(keycode, record)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (keycode == DPI_CONFIG && record->event.pressed) {
|
if (keycode == DPI_CONFIG && record->event.pressed) {
|
||||||
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
||||||
eeconfig_update_kb(keyboard_config.raw);
|
eeconfig_update_kb(keyboard_config.raw);
|
||||||
pmw_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
pmw_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (keycode == DRAG_SCROLL) {
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_MOMENTARY
|
||||||
|
if (record->event.pressed)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
is_drag_scroll ^= 1;
|
||||||
|
}
|
||||||
|
#ifdef PLOOPY_DRAGSCROLL_FIXED
|
||||||
|
pmw_set_cpi(is_drag_scroll ? PLOOPY_DRAGSCROLL_DPI : dpi_array[keyboard_config.dpi_config]);
|
||||||
|
#else
|
||||||
|
pmw_set_cpi(is_drag_scroll ? (dpi_array[keyboard_config.dpi_config] * PLOOPY_DRAGSCROLL_MULTIPLIER) : dpi_array[keyboard_config.dpi_config]);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* If Mousekeys is disabled, then use handle the mouse button
|
/* If Mousekeys is disabled, then use handle the mouse button
|
||||||
* keycodes. This makes things simpler, and allows usage of
|
* keycodes. This makes things simpler, and allows usage of
|
||||||
* the keycodes in a consistent manner. But only do this if
|
* the keycodes in a consistent manner. But only do this if
|
||||||
|
@ -223,24 +247,40 @@ void pointing_device_init(void) {
|
||||||
opt_encoder_init();
|
opt_encoder_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool has_report_changed (report_mouse_t first, report_mouse_t second) {
|
bool has_report_changed(report_mouse_t new, report_mouse_t old) { return (new.buttons != old.buttons) || (new.x && new.x != old.x) || (new.y && new.y != old.y) || (new.h && new.h != old.h) || (new.v && new.v != old.v); }
|
||||||
return !(
|
|
||||||
(!first.buttons && first.buttons == second.buttons) &&
|
|
||||||
(!first.x && first.x == second.x) &&
|
|
||||||
(!first.y && first.y == second.y) &&
|
|
||||||
(!first.h && first.h == second.h) &&
|
|
||||||
(!first.v && first.v == second.v) );
|
|
||||||
}
|
|
||||||
|
|
||||||
void pointing_device_task(void) {
|
void pointing_device_task(void) {
|
||||||
report_mouse_t mouse_report = pointing_device_get_report();
|
report_mouse_t mouse_report = pointing_device_get_report();
|
||||||
process_wheel(&mouse_report);
|
process_wheel(&mouse_report);
|
||||||
process_mouse(&mouse_report);
|
process_mouse(&mouse_report);
|
||||||
|
|
||||||
|
if (is_drag_scroll) {
|
||||||
|
mouse_report.h = mouse_report.x;
|
||||||
|
mouse_report.v = mouse_report.y;
|
||||||
|
mouse_report.x = 0;
|
||||||
|
mouse_report.y = 0;
|
||||||
|
}
|
||||||
|
|
||||||
pointing_device_set_report(mouse_report);
|
pointing_device_set_report(mouse_report);
|
||||||
if (has_report_changed(mouse_report, pointing_device_get_report())) {
|
|
||||||
pointing_device_send();
|
pointing_device_send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void pointing_device_send(void) {
|
||||||
|
static report_mouse_t old_report = {};
|
||||||
|
report_mouse_t mouseReport = pointing_device_get_report();
|
||||||
|
|
||||||
|
// If you need to do other things, like debugging, this is the place to do it.
|
||||||
|
if (has_report_changed(mouseReport, old_report)) {
|
||||||
|
host_mouse_send(&mouseReport);
|
||||||
|
}
|
||||||
|
|
||||||
|
// send it and 0 it out except for buttons, so those stay until they are explicity over-ridden using update_pointing_device
|
||||||
|
mouseReport.x = 0;
|
||||||
|
mouseReport.y = 0;
|
||||||
|
mouseReport.v = 0;
|
||||||
|
mouseReport.h = 0;
|
||||||
|
pointing_device_set_report(mouseReport);
|
||||||
|
old_report = mouseReport;
|
||||||
}
|
}
|
||||||
|
|
||||||
void eeconfig_init_kb(void) {
|
void eeconfig_init_kb(void) {
|
||||||
|
|
|
@ -47,8 +47,18 @@ typedef union {
|
||||||
} keyboard_config_t;
|
} keyboard_config_t;
|
||||||
|
|
||||||
extern keyboard_config_t keyboard_config;
|
extern keyboard_config_t keyboard_config;
|
||||||
|
extern uint16_t dpi_array[];
|
||||||
|
|
||||||
enum ploopy_keycodes {
|
enum ploopy_keycodes {
|
||||||
|
#ifdef VIA_ENABLE
|
||||||
|
DPI_CONFIG = USER00,
|
||||||
|
#else
|
||||||
DPI_CONFIG = SAFE_RANGE,
|
DPI_CONFIG = SAFE_RANGE,
|
||||||
|
#endif
|
||||||
|
DRAG_SCROLL,
|
||||||
|
#ifdef VIA_ENABLE
|
||||||
|
PLOOPY_SAFE_RANGE = SAFE_RANGE,
|
||||||
|
#else
|
||||||
PLOOPY_SAFE_RANGE,
|
PLOOPY_SAFE_RANGE,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
|
@ -12,7 +12,7 @@ BOOTLOADER = atmel-dfu
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
|
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -24,7 +24,7 @@ UNICODE_ENABLE = no # Unicode
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||||
AUDIO_ENABLE = no # Audio output
|
AUDIO_ENABLE = no # Audio output
|
||||||
POINTING_DEVICE_ENABLE = yes
|
POINTING_DEVICE_ENABLE = yes
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||||
|
|
||||||
QUANTUM_LIB_SRC += analog.c spi_master.c
|
QUANTUM_LIB_SRC += analog.c spi_master.c
|
||||||
SRC += pmw3360.c opt_encoder.c
|
SRC += pmw3360.c opt_encoder.c
|
||||||
|
|
|
@ -17,42 +17,6 @@
|
||||||
*/
|
*/
|
||||||
#include QMK_KEYBOARD_H
|
#include QMK_KEYBOARD_H
|
||||||
|
|
||||||
// used for tracking the state
|
|
||||||
bool is_drag_scroll = false;
|
|
||||||
|
|
||||||
enum custom_keycodes {
|
|
||||||
DRAG_SCROLL = PLOOPY_SAFE_RANGE,
|
|
||||||
};
|
|
||||||
|
|
||||||
bool process_record_user(uint16_t keycode, keyrecord_t *record) {
|
|
||||||
switch (keycode) {
|
|
||||||
case DRAG_SCROLL:
|
|
||||||
if (record->event.pressed) {
|
|
||||||
// this toggles the state each time you tap it
|
|
||||||
is_drag_scroll ^= 1;
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// The real magic is here.
|
|
||||||
// This function is called to translate the processed sensor movement
|
|
||||||
// from the mouse sensor and translates it into x and y movement for
|
|
||||||
// the mouse report. Normally. So if "drag scroll" is toggled on,
|
|
||||||
// moving the ball scrolls instead. You could remove the x or y here
|
|
||||||
// to only scroll in one direction, if you wanted, as well. In fact,
|
|
||||||
// there is no reason that you need to send this to the mouse report.
|
|
||||||
// You could have it register a key, instead.
|
|
||||||
void process_mouse_user(report_mouse_t* mouse_report, int16_t x, int16_t y) {
|
|
||||||
if (is_drag_scroll) {
|
|
||||||
mouse_report->h = x;
|
|
||||||
mouse_report->v = y;
|
|
||||||
} else {
|
|
||||||
mouse_report->x = x;
|
|
||||||
mouse_report->y = y;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = {
|
||||||
[0] = LAYOUT( /* Base */
|
[0] = LAYOUT( /* Base */
|
||||||
|
|
|
@ -13,8 +13,8 @@ Once you have that, you'll need to [ISP Flash](https://docs.qmk.fm/#/isp_flashin
|
||||||
|
|
||||||
| Fuse | Setting |
|
| Fuse | Setting |
|
||||||
|----------|------------------|
|
|----------|------------------|
|
||||||
| Low | `0xDF` |
|
| Low | `0x52` |
|
||||||
| High | `0xD8` or `0x98` |
|
| High | `0x99` |
|
||||||
| Extended | `0xCB` |
|
| Extended | `0xCB` |
|
||||||
|
|
||||||
Original (Caterina) settings:
|
Original (Caterina) settings:
|
||||||
|
|
|
@ -9,7 +9,7 @@ F_CPU = 8000000
|
||||||
#
|
#
|
||||||
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
|
BOOTMAGIC_ENABLE = lite # Virtual DIP switch configuration
|
||||||
EXTRAKEY_ENABLE = yes # Audio control and System control
|
EXTRAKEY_ENABLE = yes # Audio control and System control
|
||||||
CONSOLE_ENABLE = yes # Console for debug
|
CONSOLE_ENABLE = no # Console for debug
|
||||||
COMMAND_ENABLE = no # Commands for debug and configuration
|
COMMAND_ENABLE = no # Commands for debug and configuration
|
||||||
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
# Do not enable SLEEP_LED_ENABLE. it uses the same timer as BACKLIGHT_ENABLE
|
||||||
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
SLEEP_LED_ENABLE = no # Breathing sleep LED during USB suspend
|
||||||
|
@ -21,7 +21,7 @@ UNICODE_ENABLE = no # Unicode
|
||||||
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
BLUETOOTH_ENABLE = no # Enable Bluetooth
|
||||||
AUDIO_ENABLE = no # Audio output
|
AUDIO_ENABLE = no # Audio output
|
||||||
POINTING_DEVICE_ENABLE = yes
|
POINTING_DEVICE_ENABLE = yes
|
||||||
MOUSEKEY_ENABLE = no # Mouse keys
|
MOUSEKEY_ENABLE = yes # Mouse keys
|
||||||
|
|
||||||
QUANTUM_LIB_SRC += analog.c spi_master.c
|
QUANTUM_LIB_SRC += analog.c spi_master.c
|
||||||
SRC += pmw3360.c opt_encoder.c
|
SRC += pmw3360.c opt_encoder.c
|
||||||
|
|
|
@ -39,6 +39,12 @@
|
||||||
#ifndef PLOOPY_DPI_DEFAULT
|
#ifndef PLOOPY_DPI_DEFAULT
|
||||||
# define PLOOPY_DPI_DEFAULT 0
|
# define PLOOPY_DPI_DEFAULT 0
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_DPI
|
||||||
|
# define PLOOPY_DRAGSCROLL_DPI 100 // Fixed-DPI Drag Scroll
|
||||||
|
#endif
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_MULTIPLIER
|
||||||
|
# define PLOOPY_DRAGSCROLL_MULTIPLIER 0.75 // Variable-DPI Drag Scroll
|
||||||
|
#endif
|
||||||
|
|
||||||
keyboard_config_t keyboard_config;
|
keyboard_config_t keyboard_config;
|
||||||
uint16_t dpi_array[] = PLOOPY_DPI_OPTIONS;
|
uint16_t dpi_array[] = PLOOPY_DPI_OPTIONS;
|
||||||
|
@ -57,6 +63,7 @@ uint16_t lastScroll = 0; // Previous confirmed wheel event
|
||||||
uint16_t lastMidClick = 0; // Stops scrollwheel from being read if it was pressed
|
uint16_t lastMidClick = 0; // Stops scrollwheel from being read if it was pressed
|
||||||
uint8_t OptLowPin = OPT_ENC1;
|
uint8_t OptLowPin = OPT_ENC1;
|
||||||
bool debug_encoder = false;
|
bool debug_encoder = false;
|
||||||
|
bool is_drag_scroll = false;
|
||||||
|
|
||||||
__attribute__((weak)) void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
|
__attribute__((weak)) void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v) {
|
||||||
mouse_report->h = h;
|
mouse_report->h = h;
|
||||||
|
@ -155,7 +162,9 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
||||||
is_scroll_clicked = record->event.pressed;
|
is_scroll_clicked = record->event.pressed;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!process_record_user(keycode, record)) { return false; }
|
if (!process_record_user(keycode, record)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
if (keycode == DPI_CONFIG && record->event.pressed) {
|
if (keycode == DPI_CONFIG && record->event.pressed) {
|
||||||
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
||||||
|
@ -163,6 +172,20 @@ bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
||||||
pmw_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
pmw_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (keycode == DRAG_SCROLL) {
|
||||||
|
#ifndef PLOOPY_DRAGSCROLL_MOMENTARY
|
||||||
|
if (record->event.pressed)
|
||||||
|
#endif
|
||||||
|
{
|
||||||
|
is_drag_scroll ^= 1;
|
||||||
|
}
|
||||||
|
#ifdef PLOOPY_DRAGSCROLL_FIXED
|
||||||
|
pmw_set_cpi(is_drag_scroll ? PLOOPY_DRAGSCROLL_DPI : dpi_array[keyboard_config.dpi_config]);
|
||||||
|
#else
|
||||||
|
pmw_set_cpi(is_drag_scroll ? (dpi_array[keyboard_config.dpi_config] * PLOOPY_DRAGSCROLL_MULTIPLIER) : dpi_array[keyboard_config.dpi_config]);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
|
||||||
/* If Mousekeys is disabled, then use handle the mouse button
|
/* If Mousekeys is disabled, then use handle the mouse button
|
||||||
* keycodes. This makes things simpler, and allows usage of
|
* keycodes. This makes things simpler, and allows usage of
|
||||||
* the keycodes in a consistent manner. But only do this if
|
* the keycodes in a consistent manner. But only do this if
|
||||||
|
@ -223,24 +246,40 @@ void pointing_device_init(void) {
|
||||||
opt_encoder_init();
|
opt_encoder_init();
|
||||||
}
|
}
|
||||||
|
|
||||||
bool has_report_changed (report_mouse_t first, report_mouse_t second) {
|
bool has_report_changed(report_mouse_t new, report_mouse_t old) { return (new.buttons != old.buttons) || (new.x && new.x != old.x) || (new.y && new.y != old.y) || (new.h && new.h != old.h) || (new.v && new.v != old.v); }
|
||||||
return !(
|
|
||||||
(!first.buttons && first.buttons == second.buttons) &&
|
|
||||||
(!first.x && first.x == second.x) &&
|
|
||||||
(!first.y && first.y == second.y) &&
|
|
||||||
(!first.h && first.h == second.h) &&
|
|
||||||
(!first.v && first.v == second.v) );
|
|
||||||
}
|
|
||||||
|
|
||||||
void pointing_device_task(void) {
|
void pointing_device_task(void) {
|
||||||
report_mouse_t mouse_report = pointing_device_get_report();
|
report_mouse_t mouse_report = pointing_device_get_report();
|
||||||
process_wheel(&mouse_report);
|
process_wheel(&mouse_report);
|
||||||
process_mouse(&mouse_report);
|
process_mouse(&mouse_report);
|
||||||
|
|
||||||
|
if (is_drag_scroll) {
|
||||||
|
mouse_report.h = mouse_report.x;
|
||||||
|
mouse_report.v = mouse_report.y;
|
||||||
|
mouse_report.x = 0;
|
||||||
|
mouse_report.y = 0;
|
||||||
|
}
|
||||||
|
|
||||||
pointing_device_set_report(mouse_report);
|
pointing_device_set_report(mouse_report);
|
||||||
if (has_report_changed(mouse_report, pointing_device_get_report())) {
|
|
||||||
pointing_device_send();
|
pointing_device_send();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void pointing_device_send(void) {
|
||||||
|
static report_mouse_t old_report = {};
|
||||||
|
report_mouse_t mouseReport = pointing_device_get_report();
|
||||||
|
|
||||||
|
// If you need to do other things, like debugging, this is the place to do it.
|
||||||
|
if (has_report_changed(mouseReport, old_report)) {
|
||||||
|
host_mouse_send(&mouseReport);
|
||||||
|
}
|
||||||
|
|
||||||
|
// send it and 0 it out except for buttons, so those stay until they are explicity over-ridden using update_pointing_device
|
||||||
|
mouseReport.x = 0;
|
||||||
|
mouseReport.y = 0;
|
||||||
|
mouseReport.v = 0;
|
||||||
|
mouseReport.h = 0;
|
||||||
|
pointing_device_set_report(mouseReport);
|
||||||
|
old_report = mouseReport;
|
||||||
}
|
}
|
||||||
|
|
||||||
void eeconfig_init_kb(void) {
|
void eeconfig_init_kb(void) {
|
||||||
|
|
|
@ -52,8 +52,18 @@ typedef union {
|
||||||
} keyboard_config_t;
|
} keyboard_config_t;
|
||||||
|
|
||||||
extern keyboard_config_t keyboard_config;
|
extern keyboard_config_t keyboard_config;
|
||||||
|
extern uint16_t dpi_array[];
|
||||||
|
|
||||||
enum ploopy_keycodes {
|
enum ploopy_keycodes {
|
||||||
|
#ifdef VIA_ENABLE
|
||||||
|
DPI_CONFIG = USER00,
|
||||||
|
#else
|
||||||
DPI_CONFIG = SAFE_RANGE,
|
DPI_CONFIG = SAFE_RANGE,
|
||||||
|
#endif
|
||||||
|
DRAG_SCROLL,
|
||||||
|
#ifdef VIA_ENABLE
|
||||||
|
PLOOPY_SAFE_RANGE = SAFE_RANGE,
|
||||||
|
#else
|
||||||
PLOOPY_SAFE_RANGE,
|
PLOOPY_SAFE_RANGE,
|
||||||
|
#endif
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue