mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-24 09:30:19 +08:00
* [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
29 lines
646 B
Plaintext
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
|