123456789101112131415161718192021222324252627 |
- /*
- * config.h
- */
-
- #ifndef __CONFIG_H__
- #define __CONFIG_H__
-
- #define PMW_MOTION_PIN 20
-
- #define PMW_PRINT_IDS
- #define PMW_IRQ_COUNTERS
- //#define PMW_FEATURE_WIRELESS
- //#define DISABLE_CDC_DTR_CHECK
-
- #define INVERT_MOUSE_X_AXIS false
- #define INVERT_MOUSE_Y_AXIS true
- #define DEFAULT_MOUSE_SENSITIVITY PMW_CPI_TO_SENSE(500)
- #define DEFAULT_MOUSE_ANGLE -30
-
- #define INVERT_SCROLL_X_AXIS false
- #define INVERT_SCROLL_Y_AXIS false
- #define SCROLL_REDUCE_SENSITIVITY 10
- #define MIN_SCROLL_SUPPRESS_CLICK 10
-
- #define DEBOUNCE_DELAY_MS 5
-
- #endif // __CONFIG_H__
|