aboutsummaryrefslogtreecommitdiff
path: root/docs/feature_ps2_mouse.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/feature_ps2_mouse.md')
-rw-r--r--docs/feature_ps2_mouse.md20
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/feature_ps2_mouse.md b/docs/feature_ps2_mouse.md
index 8629b28cf..dac3a5b36 100644
--- a/docs/feature_ps2_mouse.md
+++ b/docs/feature_ps2_mouse.md
@@ -227,6 +227,26 @@ Fine control over the scrolling is supported with the following defines:
227#define PS2_MOUSE_SCROLL_DIVISOR_V 2 227#define PS2_MOUSE_SCROLL_DIVISOR_V 2
228``` 228```
229 229
230#### Invert mouse and scroll axes
231
232To invert the X and Y axes you can put:
233
234```
235#define PS2_MOUSE_INVERT_X
236#define PS2_MOUSE_INVERT_Y
237```
238
239into config.h.
240
241To reverse the scroll axes you can put:
242
243```
244#define PS2_MOUSE_INVERT_H
245#define PS2_MOUSE_INVERT_V
246```
247
248into config.h.
249
230#### Debug settings 250#### Debug settings
231 251
232To debug the mouse, add `debug_mouse = true` or enable via bootmagic. 252To debug the mouse, add `debug_mouse = true` or enable via bootmagic.