ffkb v4 personal trackpoint build

This commit is contained in:
Sadek Baroudi 2024-01-19 09:51:02 -08:00
parent 4d62ff3df2
commit 327e3f9efa
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,11 @@
// --------------------------- Other keyboard build specific configs ------------------------------
#ifdef FFKB_TRACKPOINT_BUILD
#undef ENCODERS_PAD_A
#undef ENCODERS_PAD_B
#ifdef RGBLED_NUM
#undef RGBLED_NUM
#endif
#define RGBLED_NUM 7
#define PS2_CLOCK_PIN GP8
#define PS2_DATA_PIN GP7
#endif

View File

@ -0,0 +1,7 @@
# bin/fp_build.sh -k ffkb/rp/v1 -m sadekbaroudi -i -r -e "FFKB_TRACKPOINT_BUILD=yes"
ifeq ($(strip $(FFKB_TRACKPOINT_BUILD)), yes)
PS2_MOUSE_ENABLE = yes
PS2_ENABLE = yes
PS2_DRIVER = vendor
OPT_DEFS += -DFFKB_TRACKPOINT_BUILD
endif