blob: 0b7d48e653403895d7059eda2f52915bba9bb2bd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
// Copyright 2023 user (@user)
// SPDX-License-Identifier: GPL-2.0-or-later
#pragma once
/*
* Feature disable options
* These options are also useful to firmware size reduction.
*/
/* disable debug print */
//#define NO_DEBUG
/* disable print */
//#define NO_PRINT
/* disable action features */
//#define NO_ACTION_LAYER
//#define NO_ACTION_TAPPING
//#define NO_ACTION_ONESHOT
#define RP_I2C_USE_I2C0 FALSE
#define RP_I2C_USE_I2C1 TRUE
#define I2C1_SDA_PIN GP18
#define I2C1_SCL_PIN GP19
#define PIMORONI_TRACKBALL_SCALE 2
#define MOUSE_EXTENDED_REPORT TRUE
#define POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE TRUE
#define WS2812_DI_PIN GP16
#define RGBLED_NUM 1
|