forked from nekromant/esp8266-frankenstein
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkcnf
60 lines (41 loc) · 943 Bytes
/
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
menu "Modules to build"
config CMD_IW
bool "Wireless 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"
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