[Keyboard] Bug fixes and improvements to PloopyCo devices (#10573)
Co-authored-by: Ryan <fauxpark@gmail.com>
This commit is contained in:
parent
555b1640b2
commit
33074bcbad
32 changed files with 536 additions and 61 deletions
|
@ -20,10 +20,15 @@
|
|||
|
||||
#include "quantum.h"
|
||||
#include "spi_master.h"
|
||||
#include "pmw3600.h"
|
||||
#include "pmw3360.h"
|
||||
#include "analog.h"
|
||||
#include "opt_encoder.h"
|
||||
#include "pointing_device.h"
|
||||
#if defined(KEYBOARD_ploopyco_trackball_rev1)
|
||||
# include "rev1.h"
|
||||
#elif defined(KEYBOARD_ploopyco_trackball_rev1_005)
|
||||
# include "rev1_005.h"
|
||||
#endif
|
||||
|
||||
// Sensor defs
|
||||
#define OPT_ENC1 F0
|
||||
|
@ -38,3 +43,17 @@ void process_wheel_user(report_mouse_t* mouse_report, int16_t h, int16_t v);
|
|||
|
||||
#define LAYOUT(BL, BM, BR, BF, BB) \
|
||||
{ {BL, BM, BR, BF, BB}, }
|
||||
|
||||
typedef union {
|
||||
uint32_t raw;
|
||||
struct {
|
||||
uint8_t dpi_config;
|
||||
};
|
||||
} keyboard_config_t;
|
||||
|
||||
extern keyboard_config_t keyboard_config;
|
||||
|
||||
enum ploopy_keycodes {
|
||||
DPI_CONFIG = SAFE_RANGE,
|
||||
PLOOPY_SAFE_RANGE,
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue