aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/feature_backlight.md2
-rw-r--r--quantum/backlight/backlight.c4
2 files changed, 0 insertions, 6 deletions
diff --git a/docs/feature_backlight.md b/docs/feature_backlight.md
index 9e467c708..6bb2bbed8 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
160 160
161Currently only hardware PWM is supported, not timer assisted, and does not provide automatic configuration. 161Currently only hardware PWM is supported, not timer assisted, and does not provide automatic configuration.
162 162
163?> Backlight support for STM32F072 has had limited testing, so YMMV. If unsure, set `BACKLIGHT_ENABLE = no` in your `rules.mk`.
164
165### Software PWM Driver :id=software-pwm-driver 163### Software PWM Driver :id=software-pwm-driver
166 164
167In 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`: 165In 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`:
diff --git a/quantum/backlight/backlight.c b/quantum/backlight/backlight.c
index 34dd8cbdb..113beb832 100644
--- a/quantum/backlight/backlight.c
+++ b/quantum/backlight/backlight.c
@@ -20,10 +20,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.
20#include "eeconfig.h" 20#include "eeconfig.h"
21#include "debug.h" 21#include "debug.h"
22 22
23#if defined(STM32F0XX) || defined(STM32F0xx)
24# pragma message("Backlight support for STMF072 has had limited testing, YMMV. If unsure, set 'BACKLIGHT_ENABLE = no' in your rules.mk")
25#endif
26
27backlight_config_t backlight_config; 23backlight_config_t backlight_config;
28 24
29#ifdef BACKLIGHT_BREATHING 25#ifdef BACKLIGHT_BREATHING