mirror of
https://github.com/qmk/qmk_firmware.git
synced 2025-07-25 18:41:14 +00:00
* Refactor bastardkb/charybdis/3x5 - Migrate various configuration to data-driven - Use short SPDX license headers - Remove configuration that trends towards user-specific (CRC Table) - Migrate common configuration upwards - Migrate keymap to JSON - Remove likely unneeded v1 revision per #23638 - Remove revisions splinky_2, splinky_3, and stemcell where a converter should be used - Rename v2/elitec -> elitec. Specifically named elitec, as this board requires pin compatibility with an Elite-C (bottom 5 pins) * Aliases
20 lines
584 B
C
20 lines
584 B
C
// Copyright 2021 Quentin LEBASTARD <qlebastard@gmail.com>
|
|
// Copyright 2021 Charly Delay <charly@codesink.dev> (@0xcharly)
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
#pragma once
|
|
|
|
// Enable use of pointing device on slave split.
|
|
#define SPLIT_POINTING_ENABLE
|
|
|
|
// Pointing device is on the right split.
|
|
#define POINTING_DEVICE_RIGHT
|
|
|
|
// Limits the frequency that the sensor is polled for motion.
|
|
#define POINTING_DEVICE_TASK_THROTTLE_MS 1
|
|
|
|
// Invert X axis on mouse reports.
|
|
#define POINTING_DEVICE_INVERT_X
|
|
|
|
/* Trackball angle adjustment. */
|
|
#define ROTATIONAL_TRANSFORM_ANGLE -25
|