mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-08-23 18:38:38 +08:00
The I2C will timeout in fan53555, fixed it. Signed-off-by: GuEe-GUI <2991707448@qq.com>
40 lines
962 B
Plaintext
40 lines
962 B
Plaintext
menuconfig RT_USING_REGULATOR
|
|
bool "Using Voltage and Current Regulator"
|
|
select RT_USING_ADT
|
|
select RT_USING_ADT_REF
|
|
default n
|
|
|
|
config RT_REGULATOR_FAN53555
|
|
bool "Fairchild FAN53555 / TCS4525 Regulator"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_I2C
|
|
default n
|
|
|
|
config RT_REGULATOR_FIXED
|
|
bool "Fixed regulator support"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_DM
|
|
depends on RT_USING_OFW
|
|
depends on RT_USING_PIN
|
|
depends on RT_USING_PINCTRL
|
|
default y
|
|
|
|
config RT_REGULATOR_GPIO
|
|
bool "GPIO regulator support"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_DM
|
|
depends on RT_USING_OFW
|
|
depends on RT_USING_PIN
|
|
default y
|
|
|
|
config RT_REGULATOR_SCMI
|
|
bool "SCMI regulator support"
|
|
depends on RT_USING_REGULATOR
|
|
depends on RT_USING_OFW
|
|
depends on RT_FIRMWARE_ARM_SCMI
|
|
default n
|
|
|
|
if RT_USING_REGULATOR
|
|
osource "$(SOC_DM_REGULATOR_DIR)/Kconfig"
|
|
endif
|