-
Notifications
You must be signed in to change notification settings - Fork 0
/
Kconfig
35 lines (29 loc) · 870 Bytes
/
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
menu "IP address and port configuration"
config UDP_IP_ADDRESS
string "UDP IP ADDRESS"
default "192.168.0.126"
help
"IP Address of the udp server"
config UDP_PORT
int "UDP PORT"
default 1212
help
"Port of the udp server"
config TCP_IP_ADDRESS
string "TCP IP ADDRESS"
default "192.168.0.126"
help
"IP Address of the tcp command server"
config TCP_PORT
int "TCP PORT"
default 2121
help
"Port of the tcp command server"
endmenu
menu "Message queue size configuration"
config MESSAGE_QUEUE_SIZE
int "Message queue size"
default 1000
help
"Sets the size of message queue, set with caution, might cause buffer overflow for a higher value"
endmenu