diff options
| author | Drashna Jaelre <drashna@live.com> | 2020-08-25 02:05:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-25 19:05:39 +1000 |
| commit | 1fd2f2f02227e969d4bde1ae88cd4eaa2f0ab242 (patch) | |
| tree | 082ccbc0e07cb3ad2ef1da690f31f40546f3fa8a /quantum/rgb_matrix_drivers.c | |
| parent | c9c63806a7a068cbc4d12d5739fdd0b05742241d (diff) | |
| download | qmk_firmware-1fd2f2f02227e969d4bde1ae88cd4eaa2f0ab242.tar.gz qmk_firmware-1fd2f2f02227e969d4bde1ae88cd4eaa2f0ab242.zip | |
Compiler warning when using WS2812 (#9955)
Specifically, when rgb matrix is enabled and using the ws2812 driver, and rgb light is enabled at the same time, print a message about coexistance because it can cause issues, since you cannot change pins/config for the WS2812 driver.
Diffstat (limited to 'quantum/rgb_matrix_drivers.c')
| -rw-r--r-- | quantum/rgb_matrix_drivers.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/quantum/rgb_matrix_drivers.c b/quantum/rgb_matrix_drivers.c index 6084d5685..0403d6c96 100644 --- a/quantum/rgb_matrix_drivers.c +++ b/quantum/rgb_matrix_drivers.c | |||
| @@ -111,6 +111,10 @@ const rgb_matrix_driver_t rgb_matrix_driver = { | |||
| 111 | # endif | 111 | # endif |
| 112 | 112 | ||
| 113 | #elif defined(WS2812) | 113 | #elif defined(WS2812) |
| 114 | # if defined(RGBLIGHT_ENABLE) && !defined(RGBLIGHT_CUSTOM_DRIVER) | ||
| 115 | # pragma message "Cannot use RGBLIGHT and RGB Matrix using WS2812 at the same time." | ||
| 116 | # pragma message "You need to use a custom driver, or re-implement the WS2812 driver to use a different configuration." | ||
| 117 | # endif | ||
| 114 | 118 | ||
| 115 | // LED color buffer | 119 | // LED color buffer |
| 116 | LED_TYPE rgb_matrix_ws2812_array[DRIVER_LED_TOTAL]; | 120 | LED_TYPE rgb_matrix_ws2812_array[DRIVER_LED_TOTAL]; |
