aboutsummaryrefslogtreecommitdiff
path: root/quantum/stm32/mcuconf.h
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-08-13 10:28:12 -0700
committerGitHub <noreply@github.com>2019-08-13 10:28:12 -0700
commit547fbe769c684745195a53baf9f62730ceea804d (patch)
tree5fa8550d2d5947b27e2f0c04e1730431eaaf6720 /quantum/stm32/mcuconf.h
parent50045624411df31968f7e2d2996ad342d689fe4f (diff)
downloadqmk_firmware-547fbe769c684745195a53baf9f62730ceea804d.tar.gz
qmk_firmware-547fbe769c684745195a53baf9f62730ceea804d.zip
Enable PWM Support for Planck EZ Indicator Lights (#6473)
* remove led layer code * enable PWM on STM32F303 * Unusable PWM code * Updated PWM Stuff? * PWM Semi-working * Both LEDs working at the same time * Update names * Add led level functions * Add LED levels and persistent settings * Revert change due to issues with timing related code * Review feedback and minor cleanup
Diffstat (limited to 'quantum/stm32/mcuconf.h')
-rw-r--r--quantum/stm32/mcuconf.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/quantum/stm32/mcuconf.h b/quantum/stm32/mcuconf.h
index 36f8ca225..32a73fb38 100644
--- a/quantum/stm32/mcuconf.h
+++ b/quantum/stm32/mcuconf.h
@@ -183,9 +183,9 @@
183 */ 183 */
184#define STM32_PWM_USE_ADVANCED FALSE 184#define STM32_PWM_USE_ADVANCED FALSE
185#define STM32_PWM_USE_TIM1 FALSE 185#define STM32_PWM_USE_TIM1 FALSE
186#define STM32_PWM_USE_TIM2 TRUE 186#define STM32_PWM_USE_TIM2 FALSE
187#define STM32_PWM_USE_TIM3 TRUE 187#define STM32_PWM_USE_TIM3 TRUE
188#define STM32_PWM_USE_TIM4 FALSE 188#define STM32_PWM_USE_TIM4 TRUE
189#define STM32_PWM_USE_TIM8 FALSE 189#define STM32_PWM_USE_TIM8 FALSE
190#define STM32_PWM_TIM1_IRQ_PRIORITY 7 190#define STM32_PWM_TIM1_IRQ_PRIORITY 7
191#define STM32_PWM_TIM2_IRQ_PRIORITY 7 191#define STM32_PWM_TIM2_IRQ_PRIORITY 7