-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathKconfig
More file actions
107 lines (91 loc) · 2.96 KB
/
Copy pathKconfig
File metadata and controls
107 lines (91 loc) · 2.96 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
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
97
98
99
100
101
102
103
104
105
106
107
menu "SinricPro Configuration"
config SINRICPRO_SERVER_URL
string "SinricPro Server URL"
default "ws.sinric.pro"
help
WebSocket server URL for SinricPro service.
Default is "ws.sinric.pro" (port 443 for wss).
config SINRICPRO_SERVER_PORT
int "SinricPro Server Port"
default 443
help
WebSocket server port for SinricPro service.
Use 443 for wss (secure WebSocket).
config SINRICPRO_WEBSOCKET_PATH
string "WebSocket Path"
default "/"
help
WebSocket path on the server.
config SINRICPRO_WEBSOCKET_TASK_STACK_SIZE
int "WebSocket task stack size"
default 8192
help
Stack size for the WebSocket handling task.
Increase if you see stack overflow errors.
config SINRICPRO_WEBSOCKET_TASK_PRIORITY
int "WebSocket task priority"
default 5
range 1 24
help
Priority of the WebSocket task.
Higher values = higher priority.
config SINRICPRO_CALLBACK_TASK_STACK_SIZE
int "Callback task stack size"
default 4096
help
Stack size for device callback execution task.
config SINRICPRO_CALLBACK_TASK_PRIORITY
int "Callback task priority"
default 4
range 1 24
help
Priority of the callback execution task.
config SINRICPRO_ENABLE_DEBUG
bool "Enable debug logging"
default n
help
Enable verbose debug logging for troubleshooting.
config SINRICPRO_EVENT_QUEUE_SIZE
int "Event queue size"
default 10
range 5 50
help
Maximum number of events that can be queued.
config SINRICPRO_MESSAGE_QUEUE_SIZE
int "Message queue size"
default 10
range 5 50
help
Maximum number of messages that can be queued
for sending.
config SINRICPRO_AUTO_RECONNECT
bool "Enable auto-reconnection"
default y
help
Automatically reconnect when connection is lost.
config SINRICPRO_RECONNECT_INTERVAL_MS
int "Reconnection interval (ms)"
default 5000
range 1000 60000
depends on SINRICPRO_AUTO_RECONNECT
help
Time to wait before attempting reconnection
after disconnection.
config SINRICPRO_MAX_DEVICES
int "Maximum number of devices"
default 10
range 1 50
help
Maximum number of devices that can be registered.
config SINRICPRO_MAX_DEVICE_ID_LEN
int "Maximum device ID length"
default 32
help
Maximum length of device ID string (including null terminator).
config SINRICPRO_HEARTBEAT_INTERVAL_MS
int "Heartbeat interval (ms)"
default 300000
range 60000 600000
help
Interval for sending heartbeat/ping messages to server.
endmenu