forked from forks/qmk_firmware
763b26cdb9
* port Massdrop CTRL/ALT to use RGB Matrix Co-authored-by: Matt Schneeberger <helluvamatt@gmail.com> * Massdrop lighting support working This commit is to get the Massdrop lighting code working again through use of the compilation define USE_MASSDROP_CONFIGURATOR added to a keymap's rules.mk. Added keymaps for both CTRL and ALT named default_md and mac_md. These should be used if the Massdrop style lighting is desired. * Updating config based on testing results with patrickmt & compile errors * Updates for PR5328 For CTRL and ALT: Moved location of new RGB Matrix macros from config_led.h to config.h. Added RGB_MATRIX_LED_FLUSH_LIMIT (time between flushes) to config.h for correct LED driver update timing. Re-added missing breathing code for when Massdrop configurator mode is defined. * remove prilik keymap form PR
29 lines
882 B
Makefile
29 lines
882 B
Makefile
ARM_ATSAM_DIR = protocol/arm_atsam
|
|
|
|
SRC += $(ARM_ATSAM_DIR)/adc.c
|
|
SRC += $(ARM_ATSAM_DIR)/clks.c
|
|
SRC += $(ARM_ATSAM_DIR)/d51_util.c
|
|
SRC += $(ARM_ATSAM_DIR)/i2c_master.c
|
|
ifeq ($(RGB_MATRIX_ENABLE),custom)
|
|
SRC += $(ARM_ATSAM_DIR)/led_matrix_programs.c
|
|
SRC += $(ARM_ATSAM_DIR)/led_matrix.c
|
|
endif
|
|
SRC += $(ARM_ATSAM_DIR)/main_arm_atsam.c
|
|
SRC += $(ARM_ATSAM_DIR)/spi.c
|
|
SRC += $(ARM_ATSAM_DIR)/startup.c
|
|
|
|
SRC += $(ARM_ATSAM_DIR)/usb/main_usb.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/udc.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/udi_cdc.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/udi_hid.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/udi_hid_kbd.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/udi_hid_kbd_desc.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/ui.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/usb2422.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/usb.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/usb_device_udd.c
|
|
SRC += $(ARM_ATSAM_DIR)/usb/usb_util.c
|
|
|
|
# Search Path
|
|
VPATH += $(TMK_DIR)/$(ARM_ATSAM_DIR)
|