diff options
author | Joel Challis <git@zvecr.com> | 2019-11-02 21:21:00 +0000 |
---|---|---|
committer | Florian Didron <fdidron@users.noreply.github.com> | 2020-01-09 08:57:11 +0900 |
commit | 2b15486272c0755d3695187ad8651b40eadf1efb (patch) | |
tree | fbda1e223faef9632827657c9e9defbbf1a018e2 /quantum/stm32 | |
parent | 2c0173f0ff0177db415c9dab6fe4eeaefe4b0ab6 (diff) |
Use task driven PWM for CTPC until ARM can provide automatic configuration (#6928)
* Use task driven PWM for CTPC until ARM can provide automatic configuration
* Update CTPC docs to cover backlight
Diffstat (limited to 'quantum/stm32')
-rw-r--r-- | quantum/stm32/proton_c.mk | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/quantum/stm32/proton_c.mk b/quantum/stm32/proton_c.mk index a65e283d3f..193e09ca1e 100644 --- a/quantum/stm32/proton_c.mk +++ b/quantum/stm32/proton_c.mk @@ -3,7 +3,11 @@ # These are defaults based on what has been implemented for ARM boards AUDIO_ENABLE = yes RGBLIGHT_ENABLE = no -BACKLIGHT_ENABLE = no + +# Force task driven PWM until ARM can provide automatic configuration +ifneq ($(strip $(BACKLIGHT_ENABLE)), no) + BACKLIGHT_ENABLE = software +endif # The rest of these settings shouldn't change |