forked from nekromant/esp8266-frankenstein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkcnf
96 lines (64 loc) · 1.46 KB
/
kcnf
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
menu "Modules to build"
config CMD_IW
bool "Wireless commands"
config CMD_UART
bool "UART commands"
config CMD_IF
bool "ifconfig/apconfig"
config CMD_GPIO
bool "GPIO commands"
config CMD_FLASH
bool "FLASH commands"
config CMD_LISTEN
bool "Listen on a port"
config CMD_SEND
bool "Send data over TCP"
config CMD_TFTP
bool "TFTP firmware update support"
config CMD_AT
bool "AT to say OK"
config CMD_ADC
bool "System ADC support"
config CMD_I2C
bool "I2C bus support"
if CMD_I2C
config CMD_I2C_BMP180
bool "I2C bmp180 pressure sensor"
config CMD_I2C_SHT21
bool "I2C sht21 humidity sensor"
config CMD_I2C_BH1750
bool "I2C bh1750 light sensor"
config CMD_I2C_PCF8591
bool "I2C pcf8591 8-bit ADC DAC"
config CMD_I2C_TCS3414CS
bool "I2C tcs3414cs color sensor"
endif
# Not working right now.
#config ENABLE_PASSTHROUGH
#bool "enable tcp(10101)<->serial passthrough"
menuconfig CMD_DS18B20
bool "DS18B20/DS18S20 Termal Sensor support"
if CMD_DS18B20
config CMD_DS18B20_DEBUG
bool "DS18B20 Debugging"
help
Show debugging messages
endif
endmenu
menu "Environment Settings"
config ENV_OFFSET
hex "Environment address in flash (4K aligned)"
default 0x7f000
config ENV_LEN
hex "Environment length"
default 0x1000
config ADDR_BLOBSETTING1
hex "Adress of blob settings in flash (copy 1)"
default 0x7d000
config ADDR_BLOBSETTING2
hex "Adress of blob settings in flash (copy 2)"
default 0x7e000
config ENV_NOWRITE
bool "Simulate writes of environment data in flash"
default n
endmenu