Files
rt-thread/components/drivers/led/Kconfig
GUI b949618f20 [DM][LED] Update LED#11007
* [DM][LED] Fixup LED check status string match
* [DM][LED] Update LED blink cycle to heartbeat
* [DM][LED] Fixup gpio-led memory alloc to zero
* [DM][LED] Update LED common drivers
2025-12-09 13:58:43 +08:00

29 lines
646 B
Plaintext

menuconfig RT_USING_LED
bool "Using Light Emitting Diode (LED) device drivers"
depends on RT_USING_DM
default n
config RT_LED_GPIO
bool "GPIO connected LEDs Support"
depends on RT_USING_LED
depends on RT_USING_PINCTRL
depends on RT_USING_OFW
default n
config RT_LED_PWM
bool "PWM driven LEDs Support"
depends on RT_USING_LED
depends on RT_USING_PWM
depends on RT_USING_OFW
default n
config RT_LED_SYSCON
bool "System controllers connected LEDs Support"
depends on RT_USING_LED
depends on RT_MFD_SYSCON
default n
if RT_USING_LED
osource "$(SOC_DM_LED_DIR)/Kconfig"
endif