1
0
Fork 0

LED drivers: extract IS31FL3745 from IS31COMMON (#22636)

This commit is contained in:
Ryan 2024-01-01 19:31:44 +11:00 committed by GitHub
parent ae2d5e2e5a
commit a88dd675bf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 820 additions and 92 deletions

View file

@ -408,10 +408,9 @@ ifeq ($(strip $(LED_MATRIX_ENABLE)), yes)
endif
ifeq ($(strip $(LED_MATRIX_DRIVER)), is31fl3745)
OPT_DEFS += -DIS31FLCOMMON
I2C_DRIVER_REQUIRED = yes
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31flcommon.c
SRC += is31fl3745-simple.c
endif
ifeq ($(strip $(LED_MATRIX_DRIVER)), is31fl3746a)
@ -513,10 +512,9 @@ ifeq ($(strip $(RGB_MATRIX_ENABLE)), yes)
endif
ifeq ($(strip $(RGB_MATRIX_DRIVER)), is31fl3745)
OPT_DEFS += -DIS31FLCOMMON
I2C_DRIVER_REQUIRED = yes
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31flcommon.c
SRC += is31fl3745.c
endif
ifeq ($(strip $(RGB_MATRIX_DRIVER)), is31fl3746a)