2017-10-06 19:13:08 +02:00
|
|
|
/*
|
|
|
|
Copyright 2017 Joshua Broekhuijsen <snipeye+qmk@gmail.com>
|
|
|
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2020-12-26 05:53:12 +01:00
|
|
|
#pragma once
|
2017-10-06 19:13:08 +02:00
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "host.h"
|
|
|
|
#include "report.h"
|
|
|
|
|
2021-11-15 07:03:24 +01:00
|
|
|
#if defined(POINTING_DEVICE_DRIVER_adns5050)
|
|
|
|
# include "drivers/sensors/adns5050.h"
|
|
|
|
#elif defined(POINTING_DEVICE_DRIVER_adns9800)
|
|
|
|
# include "spi_master.h"
|
|
|
|
# include "drivers/sensors/adns9800.h"
|
|
|
|
#elif defined(POINTING_DEVICE_DRIVER_analog_joystick)
|
|
|
|
# include "analog.h"
|
|
|
|
# include "drivers/sensors/analog_joystick.h"
|
|
|
|
#elif defined(POINTING_DEVICE_DRIVER_cirque_pinnacle_i2c) || defined(POINTING_DEVICE_DRIVER_cirque_pinnacle_spi)
|
|
|
|
# include "drivers/sensors/cirque_pinnacle.h"
|
2022-07-13 06:17:40 +02:00
|
|
|
# include "drivers/sensors/cirque_pinnacle_gestures.h"
|
|
|
|
# include "pointing_device_gestures.h"
|
2021-11-15 07:03:24 +01:00
|
|
|
#elif defined(POINTING_DEVICE_DRIVER_pimoroni_trackball)
|
|
|
|
# include "i2c_master.h"
|
|
|
|
# include "drivers/sensors/pimoroni_trackball.h"
|
|
|
|
// support for legacy pimoroni defines
|
|
|
|
# ifdef PIMORONI_TRACKBALL_INVERT_X
|
|
|
|
# define POINTING_DEVICE_INVERT_X
|
|
|
|
# endif
|
|
|
|
# ifdef PIMORONI_TRACKBALL_INVERT_Y
|
|
|
|
# define POINTING_DEVICE_INVERT_Y
|
|
|
|
# endif
|
|
|
|
# ifdef PIMORONI_TRACKBALL_ROTATE
|
|
|
|
# define POINTING_DEVICE_ROTATION_90
|
|
|
|
# endif
|
2022-07-14 11:50:00 +02:00
|
|
|
#elif defined(POINTING_DEVICE_DRIVER_pmw3360) || defined(POINTING_DEVICE_DRIVER_pmw3389)
|
2021-11-15 07:03:24 +01:00
|
|
|
# include "spi_master.h"
|
2022-07-14 11:50:00 +02:00
|
|
|
# include "drivers/sensors/pmw33xx_common.h"
|
2021-11-15 07:03:24 +01:00
|
|
|
#else
|
|
|
|
void pointing_device_driver_init(void);
|
|
|
|
report_mouse_t pointing_device_driver_get_report(report_mouse_t mouse_report);
|
|
|
|
uint16_t pointing_device_driver_get_cpi(void);
|
|
|
|
void pointing_device_driver_set_cpi(uint16_t cpi);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
void (*init)(void);
|
|
|
|
report_mouse_t (*get_report)(report_mouse_t mouse_report);
|
|
|
|
void (*set_cpi)(uint16_t);
|
|
|
|
uint16_t (*get_cpi)(void);
|
|
|
|
} pointing_device_driver_t;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
POINTING_DEVICE_BUTTON1,
|
|
|
|
POINTING_DEVICE_BUTTON2,
|
|
|
|
POINTING_DEVICE_BUTTON3,
|
|
|
|
POINTING_DEVICE_BUTTON4,
|
|
|
|
POINTING_DEVICE_BUTTON5,
|
|
|
|
POINTING_DEVICE_BUTTON6,
|
|
|
|
POINTING_DEVICE_BUTTON7,
|
|
|
|
POINTING_DEVICE_BUTTON8,
|
|
|
|
} pointing_device_buttons_t;
|
|
|
|
|
2022-06-09 03:39:16 +02:00
|
|
|
#ifdef MOUSE_EXTENDED_REPORT
|
|
|
|
# define XY_REPORT_MIN INT16_MIN
|
|
|
|
# define XY_REPORT_MAX INT16_MAX
|
|
|
|
typedef int32_t clamp_range_t;
|
|
|
|
#else
|
|
|
|
# define XY_REPORT_MIN INT8_MIN
|
|
|
|
# define XY_REPORT_MAX INT8_MAX
|
|
|
|
typedef int16_t clamp_range_t;
|
|
|
|
#endif
|
|
|
|
|
2019-08-30 20:19:03 +02:00
|
|
|
void pointing_device_init(void);
|
|
|
|
void pointing_device_task(void);
|
|
|
|
void pointing_device_send(void);
|
2017-10-06 19:13:08 +02:00
|
|
|
report_mouse_t pointing_device_get_report(void);
|
2022-03-08 05:16:35 +01:00
|
|
|
void pointing_device_set_report(report_mouse_t mouse_report);
|
2021-11-15 07:03:24 +01:00
|
|
|
uint16_t pointing_device_get_cpi(void);
|
|
|
|
void pointing_device_set_cpi(uint16_t cpi);
|
|
|
|
|
|
|
|
void pointing_device_init_kb(void);
|
|
|
|
void pointing_device_init_user(void);
|
|
|
|
report_mouse_t pointing_device_task_kb(report_mouse_t mouse_report);
|
|
|
|
report_mouse_t pointing_device_task_user(report_mouse_t mouse_report);
|
|
|
|
uint8_t pointing_device_handle_buttons(uint8_t buttons, bool pressed, pointing_device_buttons_t button);
|
2021-12-27 02:05:51 +01:00
|
|
|
report_mouse_t pointing_device_adjust_by_defines(report_mouse_t mouse_report);
|
|
|
|
|
|
|
|
#if defined(SPLIT_POINTING_ENABLE)
|
|
|
|
void pointing_device_set_shared_report(report_mouse_t report);
|
|
|
|
uint16_t pointing_device_get_shared_cpi(void);
|
2022-01-26 20:24:29 +01:00
|
|
|
# if !defined(POINTING_DEVICE_TASK_THROTTLE_MS)
|
|
|
|
# define POINTING_DEVICE_TASK_THROTTLE_MS 1
|
|
|
|
# endif
|
2021-12-27 02:05:51 +01:00
|
|
|
# if defined(POINTING_DEVICE_COMBINED)
|
|
|
|
void pointing_device_set_cpi_on_side(bool left, uint16_t cpi);
|
|
|
|
report_mouse_t pointing_device_combine_reports(report_mouse_t left_report, report_mouse_t right_report);
|
|
|
|
report_mouse_t pointing_device_task_combined_kb(report_mouse_t left_report, report_mouse_t right_report);
|
|
|
|
report_mouse_t pointing_device_task_combined_user(report_mouse_t left_report, report_mouse_t right_report);
|
|
|
|
report_mouse_t pointing_device_adjust_by_defines_right(report_mouse_t mouse_report);
|
2022-02-12 19:29:31 +01:00
|
|
|
# endif // defined(POINTING_DEVICE_COMBINED)
|
|
|
|
#endif // defined(SPLIT_POINTING_ENABLE)
|