zap_generated: Add support to change the dynamic endpoint count through menuconfig

Added some menuconfig options which can be helpful for memory optimisations.
This commit is contained in:
Chirag Atal
2023-03-06 13:15:10 +05:30
parent d886f9c765
commit 1856e151b8
8 changed files with 67 additions and 28 deletions
+29
View File
@@ -2,6 +2,7 @@ menu "ESP Matter"
config ESP_MATTER_MAX_DEVICE_TYPE_COUNT
int "Maximum device types per endpoint"
range 1 255
default 16
help
The maximum device type count supported per endpoint.
@@ -36,4 +37,32 @@ menu "ESP Matter"
endchoice
config ESP_MATTER_MAX_DYNAMIC_ENDPOINT_COUNT
int "Maximum dynamic endpoints"
range 1 255
default 16
help
The maximum dynamic endpoints supported.
config ESP_MATTER_SCENES_TABLE_SIZE
int "Scenes table size"
range 1 255
default 3
help
Size of the scenes table.
config ESP_MATTER_BINDING_TABLE_SIZE
int "Binding table size"
range 1 255
default 10
help
Size of the binding table.
config ESP_MATTER_UNICAST_MESSAGE_COUNT
int "Unicast message count"
range 1 255
default 10
help
APS unicast message count.
endmenu