diff options
| author | yiancar <yiangosyiangou@cytanet.com.cy> | 2019-05-16 05:09:36 +0100 |
|---|---|---|
| committer | MechMerlin <30334081+mechmerlin@users.noreply.github.com> | 2019-05-15 21:09:36 -0700 |
| commit | acd3e79add2d47ab664b831936e5b6e71d3b8e15 (patch) | |
| tree | 7fede0ba898a56246cbd02d72378d84c03974f8d /quantum/led_matrix_drivers.c | |
| parent | 8680c50d07604836b0fc7c3f97bd77c7830ea083 (diff) | |
| download | qmk_firmware-acd3e79add2d47ab664b831936e5b6e71d3b8e15.tar.gz qmk_firmware-acd3e79add2d47ab664b831936e5b6e71d3b8e15.zip | |
NK65 Addition (#5865)
* Nk65 initial commit
* Minor fix for compatibility
* Make everything pretty
* Update keyboards/nk65/config.h
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Update keyboards/nk65/readme.md
Co-Authored-By: noroadsleft <18669334+noroadsleft@users.noreply.github.com>
* Chmod Dummy
* Update getting_started_introduction.md
* Revert "Update getting_started_introduction.md"
This reverts commit daf446acf7ae4ae00488b389ce04f2cfca708d44.
Diffstat (limited to 'quantum/led_matrix_drivers.c')
| -rw-r--r-- | quantum/led_matrix_drivers.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/quantum/led_matrix_drivers.c b/quantum/led_matrix_drivers.c index 4ee509ee5..cb91821a4 100644 --- a/quantum/led_matrix_drivers.c +++ b/quantum/led_matrix_drivers.c | |||
| @@ -53,16 +53,16 @@ static void init(void) { | |||
| 53 | #endif | 53 | #endif |
| 54 | #else | 54 | #else |
| 55 | #ifdef LED_DRIVER_ADDR_1 | 55 | #ifdef LED_DRIVER_ADDR_1 |
| 56 | IS31FL3733_init(LED_DRIVER_ADDR_1); | 56 | IS31FL3733_init(LED_DRIVER_ADDR_1, 0 ); |
| 57 | #endif | 57 | #endif |
| 58 | #ifdef LED_DRIVER_ADDR_2 | 58 | #ifdef LED_DRIVER_ADDR_2 |
| 59 | IS31FL3733_init(LED_DRIVER_ADDR_2); | 59 | IS31FL3733_init(LED_DRIVER_ADDR_2, 0 ); |
| 60 | #endif | 60 | #endif |
| 61 | #ifdef LED_DRIVER_ADDR_3 | 61 | #ifdef LED_DRIVER_ADDR_3 |
| 62 | IS31FL3733_init(LED_DRIVER_ADDR_3); | 62 | IS31FL3733_init(LED_DRIVER_ADDR_3, 0 ); |
| 63 | #endif | 63 | #endif |
| 64 | #ifdef LED_DRIVER_ADDR_4 | 64 | #ifdef LED_DRIVER_ADDR_4 |
| 65 | IS31FL3733_init(LED_DRIVER_ADDR_4); | 65 | IS31FL3733_init(LED_DRIVER_ADDR_4, 0 ); |
| 66 | #endif | 66 | #endif |
| 67 | #endif | 67 | #endif |
| 68 | 68 | ||
