diff options
author | Stefan Kerkmann <karlk90@pm.me> | 2022-08-29 19:16:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-29 19:16:49 +0200 |
commit | e99ec28f5fffc41ce2662e883f7e9b56383d758b (patch) | |
tree | 121c7473da8a04ebffa8d848bdaca22b7b3ec5e6 /docs/feature_pointing_device.md | |
parent | d910e8df77150bab0b9cc2c3794554b4c8c81d71 (diff) |
[Core] Introduce pointing device specific debug messages (#17663)
Diffstat (limited to 'docs/feature_pointing_device.md')
-rw-r--r-- | docs/feature_pointing_device.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/docs/feature_pointing_device.md b/docs/feature_pointing_device.md index 999dd1272d..afc57ed493 100644 --- a/docs/feature_pointing_device.md +++ b/docs/feature_pointing_device.md @@ -487,3 +487,13 @@ report_mouse_t pointing_device_task_combined_user(report_mouse_t left_report, re return pointing_device_combine_reports(left_report, right_report); } ``` + +# Troubleshooting + +If you are having issues with pointing device drivers debug messages can be enabled that will give you insights in the inner workings. To enable these add to your keyboards `config.h` file: + +```c +#define POINTING_DEVICE_DEBUG +``` + +?> The messages will be printed out to the `CONSOLE` output. For additional information, refer to [Debugging/Troubleshooting QMK](faq_debug.md). |