-
Notifications
You must be signed in to change notification settings - Fork 1
/
Kconfig
58 lines (45 loc) · 1.51 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
menu "esp32-networking"
menu "MQTT Config"
config MQTT_NETWORK_BUFFER_SIZE
int "Size of the network buffer for MQTT packets"
range 1024 32000
default 4096
help
Size of the network buffer for MQTT packets.
config MQTT_TASK_STACK_SIZE
int "MQTT client loop stack size"
range 3052 8096
default 4096
help
Stack size of MQTT task loop.
config MQTT_TASK_PRIORITY
int "Priority of MQTT task"
range 1 9
default 4
help
RTOS priority.
config MQTT_ACK_TIMEOUT_MS
int "Default timeout to wait for ACKs"
range 1000 20000
default 5000
help
Used to wait for for ACKs when issuing publish, subscribe, unsubscribe.
endmenu # coreMQTT Config
menu "BLE Provisioning"
config BLE_WIFI_PROV_ENABLED
bool "Enables WiFi provisioning over BLE"
default y
help
Enable provisioning service
config BLE_WIFI_PROV_CUSTOM_SERVICE_UUID_HIGH
hex "High 64-bit service UUID for provisioning"
default 0xFB4136D2F24B11ED
help
Sets the service UUID of the BLE service during provisioning.
config BLE_WIFI_PROV_CUSTOM_SERVICE_UUID_LOW
hex "Low 64-bit service UUID for provisioning"
default 0xB2A5B6191059C7C3
help
Sets the service UUID of the BLE service during provisioning.
endmenu # BLE Provisioning
endmenu # Golden Reference Integration