diff options
author | Daniel Kao <daniel.m.kao@gmail.com> | 2022-07-31 07:51:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-31 15:51:20 +0100 |
commit | b03a7cef7555119f1cdee95b0c08cafd9f1f18eb (patch) | |
tree | 67c8ec11b58c8b5ada0effa378eaa16630fd0ffc /docs | |
parent | 409790457cdc509c0bf783745f27335ec6806b5d (diff) | |
download | qmk_firmware-b03a7cef7555119f1cdee95b0c08cafd9f1f18eb.tar.gz qmk_firmware-b03a7cef7555119f1cdee95b0c08cafd9f1f18eb.zip |
Fix POINTING_DEVICE_GESTURES_SCROLL_ENABLE typo (#17850)
* Fix typo for POINTING_DEVICE_GESTURES_SCROLL_ENABLE
Follow the name written in documentation which follows
POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE
* Reword the blurb about POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE in docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/feature_pointing_device.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/feature_pointing_device.md b/docs/feature_pointing_device.md index 17acc15ff0..c46cf34ee6 100644 --- a/docs/feature_pointing_device.md +++ b/docs/feature_pointing_device.md @@ -294,7 +294,7 @@ void pointing_device_driver_set_cpi(uint16_t cpi) {} !> When using `SPLIT_POINTING_ENABLE` the `POINTING_DEVICE_MOTION_PIN` functionality is not supported and `POINTING_DEVICE_TASK_THROTTLE_MS` will default to `1`. Increasing this value will increase transport performance at the cost of possible mouse responsiveness. -!> **`POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE`** can be used with any pointing device with a lift/contact status can integrate this gesture into its driver. e.g. PMW3360 can use Lift_Stat from Motion register. Note that `POINTING_DEVICE_MOTION_PIN` cannot be used with this feature; continuous polling of `pointing_device_get_report()` is needed to generate glide reports. +!> Any pointing device with a lift/contact status can integrate inertial cursor feature into its driver, controlled by `POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE`. e.g. PMW3360 can use Lift_Stat from Motion register. Note that `POINTING_DEVICE_MOTION_PIN` cannot be used with this feature; continuous polling of `get_report()` is needed to generate glide reports. ## Split Keyboard Configuration |