/ components / drivers / Kconfig
Kconfig
 1  
 2  
 3  config COMPONENT_DRIVERS_ENABLE
 4  	bool "Enable drivers component"
 5  	default n
 6  	select COMPONENT_KENDRYTE_SDK_ENABLE
 7  
 8  menu "Drivers configuration"
 9  	depends on COMPONENT_DRIVERS_ENABLE
10  
11  	menu "SD card"
12  		config SPI_SD_CARD_FORCE_HIGH_SPEED
13  			bool "Force SPI SD card high speed mode"
14  			default y
15  	endmenu
16  
17  	menu "WS2812"
18  		config WS2812_ENABLE
19  			bool "Enable ws2812 over i2s component"
20  			default n
21  	endmenu
22  	menu "HTPA thermal sensor"
23  		config HTPA_ENABLE
24  			bool "Enable HTPA thermal sensor"
25  			default n
26  	endmenu
27  	menu "AMG88XX thermal sensor"
28  		config AMG88XX_ENABLE
29  			bool "Enable AMG88XX thermal sensor"
30  			default n
31  	endmenu
32  endmenu
33