[feature] Move files to seperate subfolder to make combining with existing userspace easier

This commit is contained in:
VeyPatch 2025-01-14 13:36:03 +01:00
parent 5edaa4b3ca
commit 1764ca5f2f
46 changed files with 78 additions and 64 deletions

View file

@ -1,32 +1,2 @@
SRC += halcyon.c
# May need to be changed when adding more pointing devices
POINTING_DEVICE_ENABLE = yes
POINTING_DEVICE_DRIVER = cirque_pinnacle_spi
# May need to be changed when adding more displays
QUANTUM_PAINTER_ENABLE = yes
QUANTUM_PAINTER_DRIVERS += st7789_spi surface
BACKLIGHT_ENABLE = yes
BACKLIGHT_DRIVER = pwm
HALCONFDIR += $(USER_PATH)/halconf.h
ifdef HLC_ENCODER
include $(USER_PATH)/hlc_encoder/rules.mk
endif
ifdef HLC_TFT_DISPLAY
include $(USER_PATH)/hlc_tft_display/rules.mk
endif
ifdef HLC_CIRQUE_TRACKPAD
include $(USER_PATH)/hlc_cirque_trackpad/rules.mk
endif
HLC_OPTIONS := $(HLC_NONE) $(HLC_CIRQUE_TRACKPAD) $(HLC_ENCODER) $(HLC_TFT_DISPLAY)
ifeq ($(filter 1, $(HLC_OPTIONS)), )
$(error Halcyon_modules used but wrong or no module specified. Please specify one by adding `-e <module_name>=1` to your compile command where <module_name> can be: HLC_NONE, HLC_CIRQUE_TRACKPAD, HLC_ENCODER or HLC_TFT_DISPLAY)
endif
# Add this to your existing rules.mk if you have one
include $(USER_PATH)/splitkb/rules.mk