blob: db419f968a047de49f0e838ffa279e77c261dd3c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#pragma once
// 3600 appears to be the maximum.
// internally, this is being divided by 100 (PMW33XX_CPI_STEP in the
// pmw3360 driver)
#define PLOOPY_DPI_OPTIONS { 900, 1800, 3600 }
#define PLOOPY_DPI_DEFAULT 2
#define POINTING_DEVICE_HIRES_SCROLL_ENABLE 1
// used as a divisor, though. the higher this is, the lower the output
// resolution.
#define POINTING_DEVICE_HIRES_SCROLL_MULTIPLIER 30
// otherwise the x/y have parity issues.
#define PLOOPY_DRAGSCROLL_INVERT 1
#define PLOOPY_DRAGSCROLL_DIVISOR_H 1.0
#define PLOOPY_DRAGSCROLL_DIVISOR_V 1.0
|