diff options
author | Joel Challis <git@zvecr.com> | 2019-12-16 16:39:54 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 16:39:54 +0000 |
commit | adb72b60b0ea151ad12df03b1d6659fad464c400 (patch) | |
tree | 8540ee009c9faebd0e09d95dee2f26a1f1980342 /quantum | |
parent | bc2157eea8aa99970a3785439efe5823fc76b0b4 (diff) | |
parent | 3d54b1adf072938c46efba89e31b2afef407db85 (diff) | |
download | qmk_firmware-adb72b60b0ea151ad12df03b1d6659fad464c400.tar.gz qmk_firmware-adb72b60b0ea151ad12df03b1d6659fad464c400.zip |
Merge pull request #7276 from zvecr/feature/backlight_driver_config
Convert backlight to follow driver rules pattern
Diffstat (limited to 'quantum')
-rw-r--r-- | quantum/stm32/proton_c.mk | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/quantum/stm32/proton_c.mk b/quantum/stm32/proton_c.mk index ff28a4cb5d..b25b555045 100644 --- a/quantum/stm32/proton_c.mk +++ b/quantum/stm32/proton_c.mk @@ -5,9 +5,7 @@ AUDIO_ENABLE = yes WS2812_DRIVER = bitbang # Force task driven PWM until ARM can provide automatic configuration -ifneq ($(strip $(BACKLIGHT_ENABLE)), no) - BACKLIGHT_ENABLE = software -endif +BACKLIGHT_DRIVER = software # The rest of these settings shouldn't change |