File tree Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Expand file tree Collapse file tree 1 file changed +25
-0
lines changed Original file line number Diff line number Diff line change 1
1
menu "AsyncTCP Configuration"
2
2
3
+ config ASYNC_TCP_STACK_SIZE
4
+ int "Async TCP task stack size"
5
+ default 8192
6
+ help
7
+ This configures stack size of the Async TCP task
8
+
3
9
choice ASYNC_TCP_RUNNING_CORE
4
10
bool "Core on which AsyncTCP's thread is running"
5
11
default ASYNC_TCP_RUN_CORE1
@@ -27,4 +33,23 @@ config ASYNC_TCP_USE_WDT
27
33
help
28
34
Enable WDT for the AsyncTCP task, so it will trigger if a handler is locking the thread.
29
35
36
+ config ASYNC_TCP_QUEUE_SIZE
37
+ int "Async TCP event queue size"
38
+ default 64
39
+ help
40
+ Configures the size of the Async TCP event queue. Lowering the value will reduce resource use
41
+ but will limit the number of events that can be processed. Increasing will allow for more
42
+ connections/event to be handled.
43
+
44
+ config ASYNC_TCP_MAX_ACK_TIME
45
+ int "Async TCP max ack time"
46
+ default 5000
47
+ help
48
+ Configures the max time in milliseconds to wait for an ACK response.
49
+
50
+ config ASYNC_TCP_PRIORITY
51
+ int "Async TCP task priority"
52
+ default 10
53
+ help
54
+ This configures the priority of the Async TCP task.
30
55
endmenu
You can’t perform that action at this time.
0 commit comments