-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig
executable file
·78 lines (63 loc) · 1.83 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
menu "configure t3"
config PLATFORM_T3
bool
default y
config OPERATING_SYSTEM
int
default 98
---help---
100 /* LINUX */
98 /* RTOS */
config LITTLE_END
int
default 1
---help---
0 /* big endian */
1 /* little endian */
config ENABLE_WIFI
bool "ENABLE_WIFI --- support wifi"
default y
menuconfig ENABLE_BLUETOOTH
bool "ENABLE_BLUETOOTH --- support BLE"
default n
if (ENABLE_BLUETOOTH)
config ENABLE_HCI
bool "ENABLE_HCI --- support BLE hci "
default n
endif
config ENABLE_RTC
bool "ENABLE_RTC --- support rtc"
default n
config ENABLE_WATCHDOG
bool "ENABLE_WATCHDOG --- support watchdog"
default n
config ENABLE_UART
bool "ENABLE_UART --- support uart"
default y
menuconfig ENABLE_FLASH
bool "ENABLE_FLASH --- support flash"
default y
if (ENABLE_FLASH)
config TUYA_FLASH_TYPE_MAX_PARTITION_NUM
int "TUYA_FLASH_TYPE_MAX_PARTITION_NUM --- max support flash parttion number"
default 10
endif
config ENABLE_ADC
bool "ENABLE_ADC --- support adc"
default n
config ENABLE_PWM
bool "ENABLE_PWM --- support pwm"
default n
config ENABLE_GPIO
bool "ENABLE_GPIO --- support gpio"
default y
config ENABLE_I2C
bool "ENABLE_I2C --- support i2c"
default n
config ENABLE_SPI
bool "ENABLE_SPI --- support spi"
default n
config ENABLE_TIMER
bool "ENABLE_TIMER --- support hw timer"
default n
endmenu