-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
61 lines (44 loc) · 1.04 KB
/
Copy pathKconfig
File metadata and controls
61 lines (44 loc) · 1.04 KB
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
mainmenu "Vole Tunnel"
config VOLE_LAN
bool "Enable LAN soft-AP interface (AP+STA router mode)"
select ESP32_WIFI_AP_STA_MODE
select NET_IPV6
select NET_ROUTING
config NET_IF_MAX_IPV4_COUNT
default 4 if VOLE_LAN
default 3
config NET_IF_MAX_IPV6_COUNT
default 4 if VOLE_LAN
default 3
config NET_IF_MCAST_IPV6_ADDR_COUNT
default 5 if VOLE_LAN
config VOLE_BENCH
bool "Run benchmarks at startup"
select CONFIG_TIMING_FUNCTIONS
default n
menu "Tunnel"
config DTLS_PKT_COUNT
int "Packet pool size"
default 24
endmenu
menu "Active Queue Management"
config CODEL_TARGET_MS
int "Target sojourn time"
default 5
config CODEL_INTERVAL_MS
int "Interval duration"
default 100
endmenu
source "Kconfig.zephyr"
module = CONFIG
module-str = config
source "subsys/logging/Kconfig.template.log_config"
module = DTLS
module-str = dtls
source "subsys/logging/Kconfig.template.log_config"
module = NPF
module-str = npf
source "subsys/logging/Kconfig.template.log_config"
module = RA
module-str = ra
source "subsys/logging/Kconfig.template.log_config"