diff options
author | Joel Challis <git@zvecr.com> | 2021-10-29 11:16:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-29 11:16:19 +0100 |
commit | 55fb468d7453eb31bc1793772938e2d28881fcaa (patch) | |
tree | 071269b83b618ca256ac5421b3bcddfde158b349 /common_features.mk | |
parent | 0f9261424097863d23b6f4835dd3f374c6776ec7 (diff) | |
download | qmk_firmware-55fb468d7453eb31bc1793772938e2d28881fcaa.tar.gz qmk_firmware-55fb468d7453eb31bc1793772938e2d28881fcaa.zip |
More platform/protocol alignment (#14976)
Diffstat (limited to 'common_features.mk')
-rw-r--r-- | common_features.mk | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/common_features.mk b/common_features.mk index 1d7e955cd..0d6b86b1e 100644 --- a/common_features.mk +++ b/common_features.mk | |||
@@ -326,6 +326,13 @@ ifneq ($(strip $(VARIABLE_TRACE)),no) | |||
326 | endif | 326 | endif |
327 | endif | 327 | endif |
328 | 328 | ||
329 | ifeq ($(strip $(SLEEP_LED_ENABLE)), yes) | ||
330 | SRC += $(PLATFORM_COMMON_DIR)/sleep_led.c | ||
331 | OPT_DEFS += -DSLEEP_LED_ENABLE | ||
332 | |||
333 | NO_SUSPEND_POWER_DOWN := yes | ||
334 | endif | ||
335 | |||
329 | VALID_BACKLIGHT_TYPES := pwm timer software custom | 336 | VALID_BACKLIGHT_TYPES := pwm timer software custom |
330 | 337 | ||
331 | BACKLIGHT_ENABLE ?= no | 338 | BACKLIGHT_ENABLE ?= no |