-
Notifications
You must be signed in to change notification settings - Fork 137
Expand file tree
/
Copy pathKconfig
More file actions
15 lines (12 loc) · 842 Bytes
/
Kconfig
File metadata and controls
15 lines (12 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
menu "ThingsBoard Client SDK Configurations"
config THINGSBOARD_ENABLE_DYNAMIC
bool "Replace static with dynami library usage"
default n
help
If this is enabled the library will use DynamicJsonDocument to receive messages from the MQTT broker and use Vector to hold Subscription data instead of Arrays. Removing the need to declare MaxResponse, MaxSubscriptions, MaxAttributes, MaxRPC and MaxRequestRPC template arguments. But instead increasing heap allocation and usage drastically.
config THINGSBOARD_ENABLE_DEBUG
bool "Enable additional debug log messages"
default n
help
If this is enabled the library uses more global constant variables, but will print more about the currently ongoing internal processes. Which might help debug certain issues.
endmenu