diff options
author | Drashna Jaelre <drashna@live.com> | 2021-05-22 19:43:54 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-22 19:43:54 -0700 |
commit | 330fe1d1cc873ee24e7df49041cfa292a7662cb1 (patch) | |
tree | 1ac40b0a3f0eaf4dbca7b354dbc8d01a30db0808 /platforms | |
parent | f5820059e430da0a4e59000278cf7b64de03ddb3 (diff) | |
download | qmk_firmware-330fe1d1cc873ee24e7df49041cfa292a7662cb1.tar.gz qmk_firmware-330fe1d1cc873ee24e7df49041cfa292a7662cb1.zip |
Do not hard set config in CPTC files (#11864)
Diffstat (limited to 'platforms')
-rw-r--r-- | platforms/chibios/QMK_PROTON_C/convert_to_proton_c.mk | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/platforms/chibios/QMK_PROTON_C/convert_to_proton_c.mk b/platforms/chibios/QMK_PROTON_C/convert_to_proton_c.mk index 3fa73a96e0..d0a337bad7 100644 --- a/platforms/chibios/QMK_PROTON_C/convert_to_proton_c.mk +++ b/platforms/chibios/QMK_PROTON_C/convert_to_proton_c.mk @@ -5,8 +5,5 @@ BOARD := QMK_PROTON_C OPT_DEFS += -DCONVERT_TO_PROTON_C # These are defaults based on what has been implemented for ARM boards -AUDIO_ENABLE = yes -WS2812_DRIVER = bitbang - -# Force task driven PWM until ARM can provide automatic configuration -BACKLIGHT_DRIVER = software
\ No newline at end of file +AUDIO_ENABLE ?= yes +WS2812_DRIVER ?= bitbang |