mirror of
https://github.com/espressif/esp-matter.git
synced 2026-04-27 19:13:13 +00:00
4b7c107b0e
This includes some memory optimisations. Also corresponding changes required for idf 5.0.
64 lines
1.9 KiB
Plaintext
64 lines
1.9 KiB
Plaintext
menu "ESP Matter"
|
|
|
|
config ESP_MATTER_MAX_DEVICE_TYPE_COUNT
|
|
int "Maximum device types per endpoint"
|
|
default 16
|
|
help
|
|
The maximum device type count supported per endpoint.
|
|
|
|
config ESP_MATTER_NVS_PART_NAME
|
|
string "ESP Matter NVS partition name"
|
|
default "nvs"
|
|
help
|
|
The NVS Partition name for ESP Matter to store the NONVOLATILE attribues
|
|
|
|
choice ESP_MATTER_DAC_PROVIDER
|
|
prompt "DAC Provider options"
|
|
default EXAMPLE_DAC_PROVIDER
|
|
help
|
|
This option determines which attestation credentials provider will be used.
|
|
|
|
config EXAMPLE_DAC_PROVIDER
|
|
bool "Attestation - Test"
|
|
help
|
|
An example DAC Provider which provides test attestation information
|
|
|
|
config FACTORY_PARTITION_DAC_PROVIDER
|
|
depends on ENABLE_ESP32_FACTORY_DATA_PROVIDER
|
|
bool "Attestation - Factory"
|
|
help
|
|
An implementation which reads attestation information from the factory partition
|
|
|
|
config SEC_CERT_DAC_PROVIDER
|
|
bool "Attestation - Secure Cert"
|
|
help
|
|
An implementation which reads attestation information from the esp_secure_cert partition
|
|
|
|
endchoice
|
|
|
|
config ESP_MATTER_MAX_DYNAMIC_ENDPOINT_COUNT
|
|
int "Maximum dynamic endpoints"
|
|
default 16
|
|
help
|
|
The maximum dynamic endpoints supported.
|
|
|
|
config ESP_MATTER_SCENES_TABLE_SIZE
|
|
int "Scenes table size"
|
|
default 3
|
|
help
|
|
Size of the scenes table.
|
|
|
|
config ESP_MATTER_BINDING_TABLE_SIZE
|
|
int "Binding table size"
|
|
default 10
|
|
help
|
|
Size of the binding table.
|
|
|
|
config ESP_MATTER_UNICAST_MESSAGE_COUNT
|
|
int "Unicast message count"
|
|
default 10
|
|
help
|
|
APS unicast message count.
|
|
|
|
endmenu
|