2021-07-01 09:42:32 +02:00
|
|
|
/* Copyright 2020 Christopher Courtney <drashna@live.com> (@drashna)
|
2020-12-19 19:43:00 +01:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2021-07-01 09:42:32 +02:00
|
|
|
#include "tractyl_manuform.h"
|
|
|
|
#include "transactions.h"
|
|
|
|
#include <string.h>
|
|
|
|
#include "drivers/sensors/pmw3360.h"
|
2020-12-19 19:43:00 +01:00
|
|
|
|
|
|
|
#ifndef TRACKBALL_DPI_OPTIONS
|
2021-07-01 09:42:32 +02:00
|
|
|
# define TRACKBALL_DPI_OPTIONS \
|
|
|
|
{ 1200, 1600, 2400 }
|
2020-12-19 19:43:00 +01:00
|
|
|
# ifndef TRACKBALL_DPI_DEFAULT
|
|
|
|
# define TRACKBALL_DPI_DEFAULT 1
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifndef TRACKBALL_DPI_DEFAULT
|
|
|
|
# define TRACKBALL_DPI_DEFAULT 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
keyboard_config_t keyboard_config;
|
2021-07-01 09:42:32 +02:00
|
|
|
uint16_t dpi_array[] = TRACKBALL_DPI_OPTIONS;
|
2020-12-19 19:43:00 +01:00
|
|
|
#define DPI_OPTION_SIZE (sizeof(dpi_array) / sizeof(uint16_t))
|
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
bool BurstState = false; // init burst state for Trackball module
|
|
|
|
uint16_t MotionStart = 0; // Timer for accel, 0 is resting state
|
2020-12-19 19:43:00 +01:00
|
|
|
|
2021-08-21 22:34:44 +02:00
|
|
|
__attribute__((weak)) void process_mouse_user(report_mouse_t* mouse_report, int8_t x, int8_t y) {
|
2020-12-19 19:43:00 +01:00
|
|
|
mouse_report->x = x;
|
|
|
|
mouse_report->y = y;
|
|
|
|
}
|
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
__attribute__((weak)) void process_mouse(void) {
|
2020-12-19 19:43:00 +01:00
|
|
|
report_pmw_t data = pmw_read_burst();
|
2021-09-09 01:52:43 +02:00
|
|
|
// Reset timer if stopped moving
|
|
|
|
if (!data.isMotion) {
|
|
|
|
if (MotionStart != 0) MotionStart = 0;
|
|
|
|
return;
|
|
|
|
}
|
2020-12-19 19:43:00 +01:00
|
|
|
|
2021-09-02 06:08:58 +02:00
|
|
|
if (data.isOnSurface) {
|
2020-12-19 19:43:00 +01:00
|
|
|
// Set timer if new motion
|
2021-09-02 06:08:58 +02:00
|
|
|
if (MotionStart == 0) {
|
2020-12-19 19:43:00 +01:00
|
|
|
if (debug_mouse) dprintf("Starting motion.\n");
|
|
|
|
MotionStart = timer_read();
|
|
|
|
}
|
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
if (debug_mouse) {
|
|
|
|
dprintf("Delt] d: %d t: %u\n", abs(data.dx) + abs(data.dy), MotionStart);
|
|
|
|
}
|
|
|
|
if (debug_mouse) {
|
|
|
|
dprintf("Pre ] X: %d, Y: %d\n", data.dx, data.dy);
|
|
|
|
}
|
2020-12-19 19:43:00 +01:00
|
|
|
#if defined(PROFILE_LINEAR)
|
|
|
|
float scale = float(timer_elaspsed(MotionStart)) / 1000.0;
|
|
|
|
data.dx *= scale;
|
|
|
|
data.dy *= scale;
|
|
|
|
#elif defined(PROFILE_INVERSE)
|
|
|
|
// TODO
|
|
|
|
#else
|
|
|
|
// no post processing
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Wrap to HID size
|
|
|
|
data.dx = constrain(data.dx, -127, 127);
|
|
|
|
data.dy = constrain(data.dy, -127, 127);
|
|
|
|
if (debug_mouse) dprintf("Cons] X: %d, Y: %d\n", data.dx, data.dy);
|
|
|
|
// dprintf("Elapsed:%u, X: %f Y: %\n", i, pgm_read_byte(firmware_data+i));
|
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
sync_mouse_report.x = -data.dx;
|
|
|
|
sync_mouse_report.y = data.dy;
|
2020-12-19 19:43:00 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool process_record_kb(uint16_t keycode, keyrecord_t* record) {
|
2021-09-09 01:52:43 +02:00
|
|
|
if (!process_record_user(keycode, record)) {
|
|
|
|
return false;
|
|
|
|
}
|
2020-12-19 19:43:00 +01:00
|
|
|
|
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
if (keycode == DPI_CONFIG && record->event.pressed) {
|
2021-07-01 09:42:32 +02:00
|
|
|
if ((get_mods() | get_oneshot_mods()) & MOD_MASK_SHIFT) {
|
2021-02-23 19:57:24 +01:00
|
|
|
keyboard_config.dpi_config = (keyboard_config.dpi_config - 1) % DPI_OPTION_SIZE;
|
|
|
|
} else {
|
|
|
|
keyboard_config.dpi_config = (keyboard_config.dpi_config + 1) % DPI_OPTION_SIZE;
|
|
|
|
}
|
2020-12-19 19:43:00 +01:00
|
|
|
eeconfig_update_kb(keyboard_config.raw);
|
|
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* If Mousekeys is disabled, then use handle the mouse button
|
|
|
|
* keycodes. This makes things simpler, and allows usage of
|
|
|
|
* the keycodes in a consistent manner. But only do this if
|
|
|
|
* Mousekeys is not enable, so it's not handled twice.
|
|
|
|
*/
|
|
|
|
#ifndef MOUSEKEY_ENABLE
|
|
|
|
if (IS_MOUSEKEY_BUTTON(keycode)) {
|
|
|
|
report_mouse_t currentReport = pointing_device_get_report();
|
|
|
|
if (record->event.pressed) {
|
|
|
|
currentReport.buttons |= 1 << (keycode - KC_MS_BTN1);
|
|
|
|
} else {
|
|
|
|
currentReport.buttons &= ~(1 << (keycode - KC_MS_BTN1));
|
|
|
|
}
|
|
|
|
pointing_device_set_report(currentReport);
|
|
|
|
pointing_device_send();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-08-21 22:34:44 +02:00
|
|
|
__attribute__((weak)) void keyboard_pre_init_sync(void) {}
|
2021-09-09 01:52:43 +02:00
|
|
|
void keyboard_pre_init_kb(void) {
|
2020-12-19 19:43:00 +01:00
|
|
|
// debug_enable = true;
|
|
|
|
// debug_matrix = true;
|
|
|
|
// debug_mouse = true;
|
|
|
|
// debug_encoder = true;
|
|
|
|
|
|
|
|
// This is the debug LED.
|
|
|
|
#if defined(DEBUG_LED_PIN)
|
|
|
|
setPinOutput(DEBUG_LED_PIN);
|
2021-09-09 01:52:43 +02:00
|
|
|
writePin(DEBUG_LED_PIN, !debug_enable);
|
2020-12-19 19:43:00 +01:00
|
|
|
#endif
|
|
|
|
|
2021-08-21 22:34:44 +02:00
|
|
|
keyboard_pre_init_sync();
|
2020-12-19 19:43:00 +01:00
|
|
|
keyboard_pre_init_user();
|
|
|
|
}
|
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
__attribute__((weak)) void keyboard_post_init_sync(void) {}
|
|
|
|
void keyboard_post_init_kb(void) {
|
|
|
|
keyboard_post_init_sync();
|
|
|
|
keyboard_post_init_user();
|
|
|
|
}
|
|
|
|
|
2020-12-19 19:43:00 +01:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
void pointing_device_init(void) {
|
|
|
|
if (!is_keyboard_left()) {
|
|
|
|
// initialize ball sensor
|
|
|
|
pmw_spi_init();
|
|
|
|
}
|
|
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
|
|
|
}
|
|
|
|
|
|
|
|
void pointing_device_task(void) {
|
|
|
|
report_mouse_t mouse_report = pointing_device_get_report();
|
2021-09-09 01:52:43 +02:00
|
|
|
|
2021-08-21 22:34:44 +02:00
|
|
|
if (is_keyboard_left()) {
|
|
|
|
if (is_keyboard_master()) {
|
2021-09-09 01:52:43 +02:00
|
|
|
transaction_rpc_recv(RPC_ID_POINTER_STATE_SYNC, sizeof(sync_mouse_report), &sync_mouse_report);
|
|
|
|
process_mouse_user(&mouse_report, sync_mouse_report.x, sync_mouse_report.y);
|
2021-08-21 22:34:44 +02:00
|
|
|
}
|
|
|
|
} else {
|
2021-09-09 01:52:43 +02:00
|
|
|
process_mouse();
|
|
|
|
if (is_keyboard_master()) {
|
|
|
|
process_mouse_user(&mouse_report, sync_mouse_report.x, sync_mouse_report.y);
|
|
|
|
sync_mouse_report.x = 0;
|
|
|
|
sync_mouse_report.y = 0;
|
2021-08-21 22:34:44 +02:00
|
|
|
}
|
|
|
|
}
|
2020-12-19 19:43:00 +01:00
|
|
|
|
|
|
|
pointing_device_set_report(mouse_report);
|
|
|
|
pointing_device_send();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void eeconfig_init_kb(void) {
|
|
|
|
keyboard_config.dpi_config = TRACKBALL_DPI_DEFAULT;
|
2021-05-25 18:24:01 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
2020-12-19 19:43:00 +01:00
|
|
|
trackball_set_cpi(dpi_array[keyboard_config.dpi_config]);
|
2021-05-25 18:24:01 +02:00
|
|
|
#endif
|
2020-12-19 19:43:00 +01:00
|
|
|
eeconfig_update_kb(keyboard_config.raw);
|
2021-05-25 18:24:01 +02:00
|
|
|
eeconfig_init_user();
|
2020-12-19 19:43:00 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 22:34:44 +02:00
|
|
|
__attribute__((weak)) void matrix_init_sub_kb(void) {}
|
2021-09-09 01:52:43 +02:00
|
|
|
void matrix_init_kb(void) {
|
2020-12-19 19:43:00 +01:00
|
|
|
// is safe to just read DPI setting since matrix init
|
|
|
|
// comes before pointing device init.
|
|
|
|
keyboard_config.raw = eeconfig_read_kb();
|
2021-09-09 01:52:43 +02:00
|
|
|
if (keyboard_config.dpi_config > DPI_OPTION_SIZE) {
|
|
|
|
eeconfig_init_kb();
|
|
|
|
}
|
2021-08-21 22:34:44 +02:00
|
|
|
matrix_init_sub_kb();
|
2020-12-19 19:43:00 +01:00
|
|
|
matrix_init_user();
|
|
|
|
}
|
|
|
|
|
2021-08-21 22:34:44 +02:00
|
|
|
__attribute__((weak)) void matrix_scan_sub_kb(void) {}
|
|
|
|
void matrix_scan_kb(void) {
|
|
|
|
matrix_scan_sub_kb();
|
|
|
|
matrix_scan_user();
|
2020-12-19 19:43:00 +01:00
|
|
|
}
|
2021-09-02 06:08:58 +02:00
|
|
|
|
2021-09-09 01:52:43 +02:00
|
|
|
__attribute__((weak)) void housekeeping_task_sync(void) {}
|
|
|
|
void housekeeping_task_kb(void) {
|
|
|
|
housekeeping_task_sync();
|
|
|
|
// no need for user function, is called already
|
|
|
|
}
|
|
|
|
|
2021-09-02 06:08:58 +02:00
|
|
|
#ifdef POINTING_DEVICE_ENABLE
|
|
|
|
void matrix_power_up(void) { pointing_device_task(); }
|
|
|
|
#endif
|