Skip to content

Commit

Permalink
Move some led drivers to common folder (#13749)
Browse files Browse the repository at this point in the history
* Move some led drivers to common folder
  • Loading branch information
zvecr authored Jul 31, 2021
1 parent aeb2524 commit 206a995
Show file tree
Hide file tree
Showing 64 changed files with 58 additions and 58 deletions.
14 changes: 7 additions & 7 deletions common_features.mk
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ endif

ifeq ($(strip $(LED_MATRIX_DRIVER)), IS31FL3731)
OPT_DEFS += -DIS31FL3731 -DSTM32_I2C -DHAL_USE_I2C=TRUE
COMMON_VPATH += $(DRIVER_PATH)/issi
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31fl3731-simple.c
QUANTUM_LIB_SRC += i2c_master.c
endif
Expand Down Expand Up @@ -272,35 +272,35 @@ endif

ifeq ($(strip $(RGB_MATRIX_DRIVER)), AW20216)
OPT_DEFS += -DAW20216 -DSTM32_SPI -DHAL_USE_SPI=TRUE
COMMON_VPATH += $(DRIVER_PATH)/awinic
COMMON_VPATH += $(DRIVER_PATH)/led
SRC += aw20216.c
QUANTUM_LIB_SRC += spi_master.c
endif

ifeq ($(strip $(RGB_MATRIX_DRIVER)), IS31FL3731)
OPT_DEFS += -DIS31FL3731 -DSTM32_I2C -DHAL_USE_I2C=TRUE
COMMON_VPATH += $(DRIVER_PATH)/issi
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31fl3731.c
QUANTUM_LIB_SRC += i2c_master.c
endif

ifeq ($(strip $(RGB_MATRIX_DRIVER)), IS31FL3733)
OPT_DEFS += -DIS31FL3733 -DSTM32_I2C -DHAL_USE_I2C=TRUE
COMMON_VPATH += $(DRIVER_PATH)/issi
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31fl3733.c
QUANTUM_LIB_SRC += i2c_master.c
endif

ifeq ($(strip $(RGB_MATRIX_DRIVER)), IS31FL3737)
OPT_DEFS += -DIS31FL3737 -DSTM32_I2C -DHAL_USE_I2C=TRUE
COMMON_VPATH += $(DRIVER_PATH)/issi
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31fl3737.c
QUANTUM_LIB_SRC += i2c_master.c
endif

ifeq ($(strip $(RGB_MATRIX_DRIVER)), IS31FL3741)
OPT_DEFS += -DIS31FL3741 -DSTM32_I2C -DHAL_USE_I2C=TRUE
COMMON_VPATH += $(DRIVER_PATH)/issi
COMMON_VPATH += $(DRIVER_PATH)/led/issi
SRC += is31fl3741.c
QUANTUM_LIB_SRC += i2c_master.c
endif
Expand Down Expand Up @@ -417,7 +417,7 @@ ifeq ($(strip $(WS2812_DRIVER_REQUIRED)), yes)
endif

ifeq ($(strip $(APA102_DRIVER_REQUIRED)), yes)
COMMON_VPATH += $(DRIVER_PATH)/apa102
COMMON_VPATH += $(DRIVER_PATH)/led
SRC += apa102.c
endif

Expand Down
2 changes: 1 addition & 1 deletion docs/feature_led_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
}
```

Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/issi/is31fl3731-simple.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` ).
Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/led/issi/is31fl3731-simple.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` ).

---

Expand Down
6 changes: 3 additions & 3 deletions docs/feature_rgb_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
}
```

Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3`).
Where `Cx_y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3731.pdf) and the header file `drivers/led/issi/is31fl3731.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3`).

---
### IS31FL3733 :id=is31fl3733
Expand Down Expand Up @@ -134,7 +134,7 @@ const is31_led g_is31_leds[DRIVER_LED_TOTAL] = {
}
```

Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` for now).
Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3733.pdf) and the header file `drivers/led/issi/is31fl3733.h`. The `driver` is the index of the driver you defined in your `config.h` (`0`, `1`, `2`, or `3` for now).

---
### IS31FL3737 :id=is31fl3737
Expand Down Expand Up @@ -198,7 +198,7 @@ const is31_led PROGMEM g_is31_leds[DRIVER_LED_TOTAL] = {
}
```

Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3737.pdf) and the header file `drivers/issi/is31fl3737.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0`, `1` for now).
Where `X_Y` is the location of the LED in the matrix defined by [the datasheet](https://www.issi.com/WW/pdf/31FL3737.pdf) and the header file `drivers/led/issi/is31fl3737.h`. The `driver` is the index of the driver you defined in your `config.h` (Only `0`, `1` for now).

---

Expand Down
2 changes: 1 addition & 1 deletion docs/ja/feature_led_matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ I2C IS31FL3731 RGB コントローラを使ったアドレス指定可能な LED
....
}

ここで、`Cx_y`[データシート](https://www.issi.com/WW/pdf/31FL3731.pdf)およびヘッダファイル `drivers/issi/is31fl3731-simple.h` で定義されるマトリックス内の LED の位置です。`driver``config.h` で定義したドライバのインデックス(`0``1``2``3`のいずれか)です。
ここで、`Cx_y`[データシート](https://www.issi.com/WW/pdf/31FL3731.pdf)およびヘッダファイル `drivers/led/issi/is31fl3731-simple.h` で定義されるマトリックス内の LED の位置です。`driver``config.h` で定義したドライバのインデックス(`0``1``2``3`のいずれか)です。

## キーコード

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion keyboards/fallacy/indicators.c
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
*/

#include "indicators.h"
#include "drivers/issi/is31fl3731-simple.h"
#include "drivers/led/issi/is31fl3731-simple.h"
#include "i2c_master.h"

/* Set up IS31FL3731 for use in powering indicator LEDs. Absolutely overkill for this job but it was already in the design.
Expand Down
2 changes: 1 addition & 1 deletion keyboards/fallacy/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ AUDIO_ENABLE = no # Audio output

# project specific files
SRC += indicators.c \
drivers/issi/is31fl3731-simple.c
drivers/led/issi/is31fl3731-simple.c
QUANTUM_LIB_SRC += i2c_master.c

LAYOUTS = alice alice_split_bs
2 changes: 1 addition & 1 deletion keyboards/hs60/v2/ansi/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ LAYOUTS = 60_ansi
# project specific files
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c \
drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/hs60/v2/hhkb/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ CIE1931_CURVE = yes
# project specific files
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c \
drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/hs60/v2/iso/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ LAYOUTS = 60_iso
# project specific files
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c \
drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/keebwerk/mega/ansi/ansi.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#endif

#include "ansi.h"
#include "drivers/issi/is31fl3733.h"
#include "drivers/led/issi/is31fl3733.h"

uint8_t R = 0;
uint8_t G = 0;
Expand Down
2 changes: 1 addition & 1 deletion keyboards/keebwerk/mega/ansi/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ LAYOUTS = 65_ansi
# project specific files
SRC += keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c
QUANTUM_LIB_SRC += drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/nebula12/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ CIE1931_CURVE = yes
# project specific files
SRC += keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
quantum/color.c
QUANTUM_LIB_SRC += drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/nebula68/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ LAYOUTS = 68_ansi
# project specific files
SRC += keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c
QUANTUM_LIB_SRC += drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/nk65/nk65.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#endif

#include "nk65.h"
#include "drivers/issi/is31fl3733.h"
#include "drivers/led/issi/is31fl3733.h"

/* Indicator LEDS are part of the LED driver
* Top LED is blue only. LED driver 2 RGB 7 Green channel
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nk65/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ LAYOUTS = 65_ansi
# project specific files
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c \
drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/nk87/nk87.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#endif

#include "nk87.h"
#include "drivers/issi/is31fl3733.h"
#include "drivers/led/issi/is31fl3733.h"

/* Indicator LEDS are part of the LED driver
* Top LED is blue only. LED driver 2 RGB 63 Blue channel
Expand Down
2 changes: 1 addition & 1 deletion keyboards/nk87/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ CIE1931_CURVE = yes
# project specific files
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
drivers/issi/is31fl3733.c \
drivers/led/issi/is31fl3733.c \
quantum/color.c \
drivers/chibios/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/tkc/portico/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ CIE1931_CURVE = yes
SRC += keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c
drivers/led/issi/is31fl3731.c

QUANTUM_LIB_SRC += i2c_master.c

Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_kara/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ LAYOUTS = 60_hhkb
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_koyu/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m10_c/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m50_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m60_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@ LAYOUTS = 60_hhkb
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m65_b/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m65_bx/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ OPT_DEFS += -DNO_SUSPEND_POWER_DOWN
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_m6_b/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3218.c \
drivers/led/issi/is31fl3218.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/rama_works_u80_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt60_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt60_b/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt60_bx/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt60_c/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,5 @@ CIE1931_CURVE = yes
SRC = keyboards/wilba_tech/wt_main.c \
keyboards/wilba_tech/wt_rgb_backlight.c \
quantum/color.c \
drivers/issi/is31fl3731.c \
drivers/led/issi/is31fl3731.c \
drivers/avr/i2c_master.c
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt65_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt65_b/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt75_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt75_b/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt75_c/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt80_a/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ BLUETOOTH_ENABLE = no # Enable Bluetooth with the Adafruit EZ-Key HID
AUDIO_ENABLE = no # Audio output on port C6

# project specific files
SRC = drivers/issi/is31fl3736.c \
SRC = drivers/led/issi/is31fl3736.c \
drivers/avr/i2c_master.c \
quantum/color.c \
keyboards/wilba_tech/wt_mono_backlight.c \
Expand Down
2 changes: 1 addition & 1 deletion keyboards/wilba_tech/wt_mono_backlight.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
#error VIA_EEPROM_CUSTOM_CONFIG_SIZE was not defined to store backlight_config struct
#endif

#include "drivers/issi/is31fl3736.h"
#include "drivers/led/issi/is31fl3736.h"

#define ISSI_ADDR_DEFAULT 0x50

Expand Down
Loading

0 comments on commit 206a995

Please sign in to comment.