From de32333a6cc171ca7704054e6550fa06debbd7ae Mon Sep 17 00:00:00 2001 From: zvecr Date: Fri, 14 Aug 2020 21:24:09 +0100 Subject: [PATCH 1/2] Remove f072 backlight warning --- quantum/backlight/backlight.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/quantum/backlight/backlight.c b/quantum/backlight/backlight.c index 34dd8cbdb5a7..113beb832f61 100644 --- a/quantum/backlight/backlight.c +++ b/quantum/backlight/backlight.c @@ -20,10 +20,6 @@ along with this program. If not, see . #include "eeconfig.h" #include "debug.h" -#if defined(STM32F0XX) || defined(STM32F0xx) -# pragma message("Backlight support for STMF072 has had limited testing, YMMV. If unsure, set 'BACKLIGHT_ENABLE = no' in your rules.mk") -#endif - backlight_config_t backlight_config; #ifdef BACKLIGHT_BREATHING From ba7d58f9a3081f95082fbf314eb59b8d91b2f75d Mon Sep 17 00:00:00 2001 From: zvecr Date: Fri, 14 Aug 2020 21:27:02 +0100 Subject: [PATCH 2/2] Remove f072 backlight warning from docs --- docs/feature_backlight.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/feature_backlight.md b/docs/feature_backlight.md index 9e467c708a28..6bb2bbed844b 100644 --- a/docs/feature_backlight.md +++ b/docs/feature_backlight.md @@ -160,8 +160,6 @@ See the ST datasheet for your particular MCU to determine these values. Unless y Currently only hardware PWM is supported, not timer assisted, and does not provide automatic configuration. -?> Backlight support for STM32F072 has had limited testing, so YMMV. If unsure, set `BACKLIGHT_ENABLE = no` in your `rules.mk`. - ### Software PWM Driver :id=software-pwm-driver In this mode, PWM is "emulated" while running other keyboard tasks. It offers maximum hardware compatibility without extra platform configuration. The tradeoff is the backlight might jitter when the keyboard is busy. To enable, add this to your `rules.mk`: