diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 65a77ced1..0c1022b5d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -28,7 +28,7 @@ variables: IDF_CHECKOUT_REF: "v5.4.1" # This variable represents the short hash of the connectedhomeip submodule. # Note: Do change this short hash on submodule update MRs. - CHIP_SHORT_HASH: "d144bbbaae" + CHIP_SHORT_HASH: "320b9a6f6c" DOCKER_IMAGE_NAME: "espressif/chip-idf" .add_gitlab_ssh_key: &add_gitlab_ssh_key | diff --git a/README.md b/README.md index a688e56b5..bfe9f9a25 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ section in the ESP-Matter Programming Guide. ## Supported ESP-IDF and connectedhomeip versions -- This SDK currently works with commit [d144bbbaae] (https://github.com/project-chip/connectedhomeip/tree/d144bbbaae) of connectedhomeip. +- This SDK currently works with commit [320b9a6f6c] (https://github.com/project-chip/connectedhomeip/tree/320b9a6f66) of connectedhomeip. - For Matter projects development with this SDK, it is recommended to utilize ESP-IDF [v5.4.1](https://github.com/espressif/esp-idf/tree/v5.4.1). - For ESP32C5, it is recommended to utilize ESP-IDF [98cd765953](https://github.com/espressif/esp-idf/commit/98cd765953dfe0e7bb1c5df8367e1b54bd966cce). diff --git a/components/esp_matter/CMakeLists.txt b/components/esp_matter/CMakeLists.txt index e3e01ff19..fe0c88f8d 100644 --- a/components/esp_matter/CMakeLists.txt +++ b/components/esp_matter/CMakeLists.txt @@ -11,6 +11,7 @@ set(INCLUDE_DIRS_LIST "." # TODO: This file has compilation errors set(EXCLUDE_SRCS_LIST "${MATTER_SDK_PATH}/src/app/clusters/closure-control-server/closure-control-server.cpp") +list(APPEND EXCLUDE_SRCS_LIST "${MATTER_SDK_PATH}/src/app/clusters/general-commissioning-server/TemporaryTestCoupling.cpp") if (CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) list(APPEND SRC_DIRS_LIST "${MATTER_SDK_PATH}/src/app/server" @@ -36,6 +37,14 @@ if (CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) "private") list(APPEND INCLUDE_DIRS_LIST "zap_common" "data_model") + list(APPEND EXCLUDE_SRCS_LIST "${MATTER_SDK_PATH}/src/app/clusters/software-diagnostics-server/CodegenIntegration.cpp") + list(APPEND EXCLUDE_SRCS_LIST "${MATTER_SDK_PATH}/src/app/clusters/administrator-commissioning-server/CodegenIntegration.cpp") + list(APPEND EXCLUDE_SRCS_LIST "${MATTER_SDK_PATH}/src/app/clusters/ota-provider/CodegenIntegration.cpp") + + if(NOT CONFIG_SUPPORT_SOFTWARE_DIAGNOSTICS_CLUSTER) + list(APPEND EXCLUDE_SRCS_LIST "data_model/software_diagnostics_codegen_integration.cpp") + endif() + endif(CONFIG_ESP_MATTER_ENABLE_DATA_MODEL) else() list(APPEND EXCLUDE_SRCS_LIST "esp_matter_identify.cpp" @@ -43,6 +52,8 @@ else() "esp_matter_attribute_utils.cpp") endif(CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER) + + set(REQUIRES_LIST chip bt esp_matter_console nvs_flash app_update esp_secure_cert_mgr mbedtls esp_system openthread json) idf_component_register( SRC_DIRS ${SRC_DIRS_LIST} diff --git a/components/esp_matter/data_model/administrator_commissioning_codegen_integration.cpp b/components/esp_matter/data_model/administrator_commissioning_codegen_integration.cpp new file mode 100644 index 000000000..32e6b4879 --- /dev/null +++ b/components/esp_matter/data_model/administrator_commissioning_codegen_integration.cpp @@ -0,0 +1,79 @@ +// Copyright 2025 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include +#include + +using namespace chip; +using namespace chip::app; +using namespace chip::app::Clusters; +using namespace chip::app::Clusters::AdministratorCommissioning::Attributes; +using chip::Protocols::InteractionModel::Status; + +namespace { + +// AdministratorCommissioningCluster implementation is specifically implemented +// only for the root endpoint (endpoint 0) +// So either: +// - we have a fixed config and it is endpoint 0 OR +// - we have a fully dynamic config + +static constexpr size_t kAdministratorCommissioningFixedClusterCount = 0; + +using ClusterImpl = AdministratorCommissioningWithBasicCommissioningWindowCluster; +LazyRegisteredServerCluster gServer; + +} // namespace + +void emberAfAdministratorCommissioningClusterInitCallback(EndpointId endpointId) +{ + if (endpointId != kRootEndpointId) + { + return; + } + + uint32_t rawFeatureMap; + if (FeatureMap::Get(endpointId, &rawFeatureMap) != Status::Success) + { + ChipLogError(AppServer, "Failed to get feature map for endpoint %u", endpointId); + rawFeatureMap = 0; + } + + gServer.Create(endpointId, BitFlags(rawFeatureMap)); + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Register(gServer.Registration()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Admin Commissioning register error: endpoint %u, %" CHIP_ERROR_FORMAT, endpointId, err.Format()); + } +} + +void emberAfAdministratorCommissioningClusterShutdownCallback(EndpointId endpointId) +{ + if (endpointId != kRootEndpointId) + { + return; + } + + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Unregister(&gServer.Cluster()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Admin Commissioning unregister error: endpoint %u, %" CHIP_ERROR_FORMAT, endpointId, err.Format()); + } + gServer.Destroy(); +} + +void MatterAdministratorCommissioningPluginServerInitCallback() {} +void MatterAdministratorCommissioningPluginServerShutdownCallback() {} diff --git a/components/esp_matter/data_model/esp_matter_attribute.cpp b/components/esp_matter/data_model/esp_matter_attribute.cpp index 12be832b9..5c9374955 100644 --- a/components/esp_matter/data_model/esp_matter_attribute.cpp +++ b/components/esp_matter/data_model/esp_matter_attribute.cpp @@ -297,6 +297,13 @@ attribute_t *create_max_paths_per_invoke(cluster_t *cluster, uint16_t value) esp_matter_uint16(value)); } +attribute_t *create_configuration_version(cluster_t *cluster, uint32_t value) +{ + return esp_matter::attribute::create(cluster, BasicInformation::Attributes::ConfigurationVersion::Id, + ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value)); +} + + } /* attribute */ } /* basic_information */ @@ -958,7 +965,7 @@ attribute_t *create_detached_role_count(cluster_t *cluster, uint16_t value) ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value)); } -attribute_t *create_chlid_role_count(cluster_t *cluster, uint16_t value) +attribute_t *create_child_role_count(cluster_t *cluster, uint16_t value) { return esp_matter::attribute::create(cluster, ThreadNetworkDiagnostics::Attributes::ChildRoleCount::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint16(value)); @@ -1388,6 +1395,12 @@ attribute_t *create_product_appearance(cluster_t *cluster, uint8_t *value, uint1 ATTRIBUTE_FLAG_NONE, esp_matter_array(value, length, count)); } +attribute_t *create_configuration_version(cluster_t *cluster, uint32_t value) +{ + return esp_matter::attribute::create(cluster, BridgedDeviceBasicInformation::Attributes::ConfigurationVersion::Id, + ATTRIBUTE_FLAG_MANAGED_INTERNALLY, esp_matter_uint32(value)); +} + } /* attribute */ } /* bridged_device_basic_information */ @@ -2758,7 +2771,7 @@ attribute_t *create_auto_relock_time(cluster_t *cluster, uint32_t value) esp_matter_uint32(value)); } -attribute_t *create_sound_valume(cluster_t *cluster, uint8_t value) +attribute_t *create_sound_volume(cluster_t *cluster, uint8_t value) { return esp_matter::attribute::create(cluster, DoorLock::Attributes::SoundVolume::Id, ATTRIBUTE_FLAG_WRITABLE, esp_matter_enum8(value)); @@ -3333,6 +3346,13 @@ attribute_t *create_temperature_unit(cluster_t *cluster, uint8_t value) ATTRIBUTE_FLAG_WRITABLE | ATTRIBUTE_FLAG_NONVOLATILE, esp_matter_enum8(value)); } + +attribute_t *create_supported_temperature_units(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count) +{ + return esp_matter::attribute::create(cluster, UnitLocalization::Attributes::SupportedTemperatureUnits::Id, ATTRIBUTE_FLAG_MANAGED_INTERNALLY, + esp_matter_array(value, length, count)); +} + } /* attribute */ } /* unit_localization */ diff --git a/components/esp_matter/data_model/esp_matter_attribute.h b/components/esp_matter/data_model/esp_matter_attribute.h index 6515ae4bf..430bee20c 100644 --- a/components/esp_matter/data_model/esp_matter_attribute.h +++ b/components/esp_matter/data_model/esp_matter_attribute.h @@ -86,6 +86,7 @@ attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length); attribute_t *create_capability_minima(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count); attribute_t *create_specification_version(cluster_t *cluster, uint32_t value); attribute_t *create_max_paths_per_invoke(cluster_t *cluster, uint16_t value); +attribute_t *create_configuration_version(cluster_t *cluster, uint32_t value); /** These attributes are optional for the cluster, but when added to this cluster, the value is maintained internally. * If the attributes are added in some other cluster, then the value is not maintained internally. @@ -259,7 +260,7 @@ attribute_t *create_ext_address(cluster_t *cluster, nullable value); attribute_t *create_rloc16(cluster_t *cluster, nullable value); attribute_t *create_overrun_count(cluster_t *cluster, uint64_t value); attribute_t *create_detached_role_count(cluster_t *cluster, uint16_t value); -attribute_t *create_chlid_role_count(cluster_t *cluster, uint16_t value); +attribute_t *create_child_role_count(cluster_t *cluster, uint16_t value); attribute_t *create_router_role_count(cluster_t *cluster, uint16_t value); attribute_t *create_leader_role_count(cluster_t *cluster, uint16_t value); attribute_t *create_attach_attempt_count(cluster_t *cluster, uint16_t value); @@ -355,6 +356,8 @@ attribute_t *create_serial_number(cluster_t *cluster, char *value, uint16_t leng attribute_t *create_reachable(cluster_t *cluster, bool value); attribute_t *create_unique_id(cluster_t *cluster, char *value, uint16_t length); attribute_t *create_product_appearance(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count); +attribute_t *create_configuration_version(cluster_t *cluster, uint32_t *value); + } /* attribute */ } /* bridged_device_basic_information */ @@ -667,7 +670,7 @@ attribute_t *create_number_of_credentials_supported_per_user(cluster_t *cluster, attribute_t *create_language(cluster_t *cluster, const char * value, uint16_t length); attribute_t *create_led_settings(cluster_t *cluster, uint8_t value); attribute_t *create_auto_relock_time(cluster_t *cluster, uint32_t value); -attribute_t *create_sound_valume(cluster_t *cluster, uint8_t value); +attribute_t *create_sound_volume(cluster_t *cluster, uint8_t value); attribute_t *create_operating_mode(cluster_t *cluster, uint8_t value, uint8_t min, uint8_t max); attribute_t *create_supported_operating_modes(cluster_t *cluster, const uint16_t value); attribute_t *create_default_configuration_register(cluster_t *cluster, uint16_t value); @@ -830,6 +833,8 @@ attribute_t *create_supported_locales(cluster_t *cluster, uint8_t *value, uint16 namespace unit_localization { namespace attribute { attribute_t *create_temperature_unit(cluster_t *cluster, uint8_t value); +attribute_t *create_supported_temperature_units(cluster_t *cluster, uint8_t *value, uint16_t length, uint16_t count); + } /* attribute */ } /* unit_localization */ diff --git a/components/esp_matter/data_model/esp_matter_cluster.cpp b/components/esp_matter/data_model/esp_matter_cluster.cpp index baa494f3a..31c2e00a1 100644 --- a/components/esp_matter/data_model/esp_matter_cluster.cpp +++ b/components/esp_matter/data_model/esp_matter_cluster.cpp @@ -240,6 +240,7 @@ cluster_t *create(endpoint_t *endpoint, config_t *config, uint8_t flags) attribute::create_capability_minima(cluster, NULL, 0, 0); attribute::create_specification_version(cluster, 0); attribute::create_max_paths_per_invoke(cluster, 0); + attribute::create_configuration_version(cluster, 0); /* Attributes not managed internally */ global::attribute::create_cluster_revision(cluster, cluster_revision); diff --git a/components/esp_matter/data_model/esp_matter_command.cpp b/components/esp_matter/data_model/esp_matter_command.cpp index dae4a6341..452e8daee 100644 --- a/components/esp_matter/data_model/esp_matter_command.cpp +++ b/components/esp_matter/data_model/esp_matter_command.cpp @@ -94,7 +94,9 @@ static esp_err_t esp_matter_command_callback_key_set_write(const ConcreteCommand void *opaque_ptr) { chip::app::Clusters::GroupKeyManagement::Commands::KeySetWrite::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupKeyManagementClusterKeySetWriteCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -105,7 +107,9 @@ static esp_err_t esp_matter_command_callback_key_set_read(const ConcreteCommandP void *opaque_ptr) { chip::app::Clusters::GroupKeyManagement::Commands::KeySetRead::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupKeyManagementClusterKeySetReadCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -116,7 +120,9 @@ static esp_err_t esp_matter_command_callback_key_set_remove(const ConcreteComman TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::GroupKeyManagement::Commands::KeySetRemove::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupKeyManagementClusterKeySetRemoveCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -127,7 +133,9 @@ static esp_err_t esp_matter_command_callback_key_set_read_all_indices(const Conc TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::GroupKeyManagement::Commands::KeySetReadAllIndices::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupKeyManagementClusterKeySetReadAllIndicesCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -186,7 +194,9 @@ static esp_err_t esp_matter_command_callback_update_noc(const ConcreteCommandPat void *opaque_ptr) { chip::app::Clusters::OperationalCredentials::Commands::UpdateNOC::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfOperationalCredentialsClusterUpdateNOCCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -197,7 +207,9 @@ static esp_err_t esp_matter_command_callback_update_fabric_label(const ConcreteC TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::OperationalCredentials::Commands::UpdateFabricLabel::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfOperationalCredentialsClusterUpdateFabricLabelCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -234,7 +246,9 @@ static esp_err_t esp_matter_command_callback_set_vid_verification_statement(cons TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::OperationalCredentials::Commands::SetVIDVerificationStatement::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfOperationalCredentialsClusterSetVIDVerificationStatementCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -294,7 +308,9 @@ static esp_err_t esp_matter_command_callback_add_group(const ConcreteCommandPath void *opaque_ptr) { chip::app::Clusters::Groups::Commands::AddGroup::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterAddGroupCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -305,7 +321,9 @@ static esp_err_t esp_matter_command_callback_view_group(const ConcreteCommandPat void *opaque_ptr) { chip::app::Clusters::Groups::Commands::ViewGroup::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterViewGroupCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -316,7 +334,9 @@ static esp_err_t esp_matter_command_callback_get_group_membership(const Concrete TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::Groups::Commands::GetGroupMembership::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterGetGroupMembershipCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -327,7 +347,9 @@ static esp_err_t esp_matter_command_callback_remove_group(const ConcreteCommandP void *opaque_ptr) { chip::app::Clusters::Groups::Commands::RemoveGroup::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterRemoveGroupCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -338,7 +360,9 @@ static esp_err_t esp_matter_command_callback_remove_all_groups(const ConcreteCom TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::Groups::Commands::RemoveAllGroups::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterRemoveAllGroupsCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -349,7 +373,9 @@ static esp_err_t esp_matter_command_callback_add_group_if_identifying(const Conc TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::Groups::Commands::AddGroupIfIdentifying::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfGroupsClusterAddGroupIfIdentifyingCallback((CommandHandler *)opaque_ptr, command_path, command_data); } @@ -360,7 +386,9 @@ static esp_err_t esp_matter_command_callback_register_client(const ConcreteComma TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::IcdManagement::Commands::RegisterClient::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { #if CONFIG_ENABLE_ICD_SERVER emberAfIcdManagementClusterRegisterClientCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -373,7 +401,9 @@ static esp_err_t esp_matter_command_callback_unregister_client(const ConcreteCom TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::IcdManagement::Commands::UnregisterClient::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { #if CONFIG_ENABLE_ICD_SERVER emberAfIcdManagementClusterUnregisterClientCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -1426,7 +1456,9 @@ static esp_err_t esp_matter_command_callback_set_trusted_time_source(const Concr TLVReader &tlv_data, void *opaque_ptr) { chip::app::Clusters::TimeSynchronization::Commands::SetTrustedTimeSource::DecodableType command_data; - CHIP_ERROR error = Decode(tlv_data, command_data); + chip::app::CommandHandler *command_obj = (chip::app::CommandHandler *)opaque_ptr; + CHIP_ERROR error = command_data.Decode(tlv_data, command_obj->GetAccessingFabricIndex()); + if (error == CHIP_NO_ERROR) { emberAfTimeSynchronizationClusterSetTrustedTimeSourceCallback((CommandHandler *)opaque_ptr, command_path, command_data); @@ -2836,7 +2868,7 @@ command_t *create_reset_condition(cluster_t *cluster) namespace mode_base { namespace command { -// command response is null because of InvokeCommandHandler is overriden in srs/app/clusters/mode-base +// command response is null because of InvokeCommandHandler is overridden in srs/app/clusters/mode-base command_t *create_change_to_mode(cluster_t *cluster) { return esp_matter::command::create(cluster, ModeBase::Commands::ChangeToMode::Id, COMMAND_FLAG_ACCEPTED, NULL); diff --git a/components/esp_matter/data_model/esp_matter_endpoint.cpp b/components/esp_matter/data_model/esp_matter_endpoint.cpp index 64fbb5fe4..cdf44b6c1 100644 --- a/components/esp_matter/data_model/esp_matter_endpoint.cpp +++ b/components/esp_matter/data_model/esp_matter_endpoint.cpp @@ -330,6 +330,7 @@ esp_err_t add(endpoint_t *endpoint, config_t *config) cluster_t *identify_cluster = identify::create(endpoint, &(config->identify), CLUSTER_FLAG_SERVER); identify::command::create_trigger_effect(identify_cluster); groups::create(endpoint, &(config->groups), CLUSTER_FLAG_SERVER); + scenes_management::create(endpoint, &(config->scenes_management), CLUSTER_FLAG_SERVER); cluster_t *on_off_cluster = on_off::create(endpoint, &(config->on_off), CLUSTER_FLAG_SERVER); on_off::feature::lighting::add(on_off_cluster, &(config->on_off_lighting)); on_off::command::create_on(on_off_cluster); @@ -1343,12 +1344,12 @@ namespace robotic_vacuum_cleaner { uint32_t get_device_type_id() { - return ESP_MATTER_ROBOTIC_VACCUM_CLEANER_DEVICE_TYPE_ID; + return ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_ID; } uint8_t get_device_type_version() { - return ESP_MATTER_ROBOTIC_VACCUM_CLEANER_DEVICE_TYPE_VERSION; + return ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_VERSION; } endpoint_t *create(node_t *node, config_t *config, uint8_t flags, void *priv_data) diff --git a/components/esp_matter/data_model/esp_matter_endpoint.h b/components/esp_matter/data_model/esp_matter_endpoint.h index 606c07604..f87aa9a0f 100644 --- a/components/esp_matter/data_model/esp_matter_endpoint.h +++ b/components/esp_matter/data_model/esp_matter_endpoint.h @@ -111,8 +111,8 @@ #define ESP_MATTER_PUMP_CONTROLLER_DEVICE_TYPE_VERSION 4 #define ESP_MATTER_MODE_SELECT_DEVICE_TYPE_ID 0x0027 #define ESP_MATTER_MODE_SELECT_DEVICE_TYPE_VERSION 1 -#define ESP_MATTER_ROBOTIC_VACCUM_CLEANER_DEVICE_TYPE_ID 0x0074 -#define ESP_MATTER_ROBOTIC_VACCUM_CLEANER_DEVICE_TYPE_VERSION 3 +#define ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_ID 0x0074 +#define ESP_MATTER_ROBOTIC_VACUUM_CLEANER_DEVICE_TYPE_VERSION 3 #define ESP_MATTER_WATER_LEAK_DETECTOR_DEVICE_TYPE_ID 0x0043 #define ESP_MATTER_WATER_LEAK_DETECTOR_DEVICE_TYPE_VERSION 1 #define ESP_MATTER_RAIN_SENSOR_DEVICE_TYPE_ID 0x0044 @@ -293,9 +293,11 @@ esp_err_t add(endpoint_t *endpoint, config_t *config); namespace extended_color_light { typedef struct config : dimmable_light::config_t { cluster::color_control::config_t color_control; + cluster::scenes_management::config_t scenes_management; cluster::color_control::feature::color_temperature::config_t color_control_color_temperature; cluster::color_control::feature::xy::config_t color_control_xy; uint16_t color_control_remaining_time; + config() : color_control_remaining_time(0) {} } config_t; diff --git a/components/esp_matter/data_model/esp_matter_feature.cpp b/components/esp_matter/data_model/esp_matter_feature.cpp index 24f5764db..5037789ad 100644 --- a/components/esp_matter/data_model/esp_matter_feature.cpp +++ b/components/esp_matter/data_model/esp_matter_feature.cpp @@ -369,8 +369,8 @@ uint32_t get_id() esp_err_t add(cluster_t *cluster) { VerifyOrReturnError(cluster, ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Cluster cannot be NULL")); - uint32_t lits_feature_map = feature::long_idle_time_support::get_id(); - VerifyOrReturnError((get_feature_map_value(cluster) & lits_feature_map) == lits_feature_map, ESP_ERR_INVALID_STATE, ESP_LOGE(TAG, "Long Idle Time Support feature should be added to this cluster")); + uint32_t long_idle_time_support_feature_map = feature::long_idle_time_support::get_id(); + VerifyOrReturnError((get_feature_map_value(cluster) & long_idle_time_support_feature_map) == long_idle_time_support_feature_map, ESP_ERR_INVALID_STATE, ESP_LOGE(TAG, "Long Idle Time Support feature should be added to this cluster")); update_feature_map(cluster, get_id()); @@ -399,8 +399,8 @@ uint32_t get_id() esp_err_t add(cluster_t *cluster, config_t *config) { VerifyOrReturnError((cluster && config), ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Cluster and config cannot be NULL")); - uint32_t lits_feature_map = feature::long_idle_time_support::get_id(); - VerifyOrReturnError((get_feature_map_value(cluster) & lits_feature_map) == lits_feature_map, ESP_ERR_INVALID_STATE, ESP_LOGE(TAG, "Long Idle Time Support feature should be added to this cluster")); + uint32_t long_idle_time_support_feature_map = feature::long_idle_time_support::get_id(); + VerifyOrReturnError((get_feature_map_value(cluster) & long_idle_time_support_feature_map) == long_idle_time_support_feature_map, ESP_ERR_INVALID_STATE, ESP_LOGE(TAG, "Long Idle Time Support feature should be added to this cluster")); update_feature_map(cluster, get_id()); @@ -1801,6 +1801,7 @@ esp_err_t add(cluster_t *cluster, config_t *config) /* Attributes not managed internally */ attribute::create_temperature_unit(cluster, config->temperature_unit); + attribute::create_supported_temperature_units(cluster, NULL, 0, 0); return ESP_OK; } @@ -3348,7 +3349,7 @@ uint32_t get_id() esp_err_t add(cluster_t *cluster) { - VerifyOrReturnError(cluster, ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Cluster connot be NULL")); + VerifyOrReturnError(cluster, ESP_ERR_INVALID_ARG, ESP_LOGE(TAG, "Cluster cannot be NULL")); update_feature_map(cluster, get_id()); /* attribute */ nullable timestamp; diff --git a/components/esp_matter/data_model/ota_provider_integration.cpp b/components/esp_matter/data_model/ota_provider_integration.cpp new file mode 100644 index 000000000..2a6ee8173 --- /dev/null +++ b/components/esp_matter/data_model/ota_provider_integration.cpp @@ -0,0 +1,102 @@ +// Copyright 2025 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include +#include +#include + +#include + +using namespace chip; +using namespace chip::app; +using namespace chip::app::Clusters; + +namespace { + +static constexpr size_t kOtaProviderFixedClusterCount = 0; +static constexpr size_t kOtaProviderMaxClusterCount = kOtaProviderFixedClusterCount + CHIP_DEVICE_CONFIG_DYNAMIC_ENDPOINT_COUNT; + +LazyRegisteredServerCluster gServers[kOtaProviderMaxClusterCount]; + +// Find the 0-based array index corresponding to the given endpoint id. +// Log an error if not found. +bool findEndpointWithLog(EndpointId endpointId, uint16_t & outArrayIndex) +{ + uint16_t arrayIndex = + emberAfGetClusterServerEndpointIndex(endpointId, OtaSoftwareUpdateProvider::Id, kOtaProviderFixedClusterCount); + + if (arrayIndex >= kOtaProviderMaxClusterCount) + { + ChipLogError(AppServer, "Could not find endpoint index for endpoint %u", endpointId); + return false; + } + return true; +} + +} // namespace + +void emberAfOtaSoftwareUpdateProviderClusterInitCallback(EndpointId endpointId) +{ + uint16_t arrayIndex = 0; + if (!findEndpointWithLog(endpointId, arrayIndex)) + { + return; + } + gServers[arrayIndex].Create(endpointId); + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Register(gServers[arrayIndex].Registration()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Failed to register OTA on endpoint %u: %" CHIP_ERROR_FORMAT, endpointId, err.Format()); + } +} + +void emberAfOtaSoftwareUpdateProviderClusterShutdownCallback(EndpointId endpointId) +{ + uint16_t arrayIndex = 0; + if (!findEndpointWithLog(endpointId, arrayIndex)) + { + return; + } + + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Unregister(&gServers[arrayIndex].Cluster()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Failed to unregister OTA on endpoint %u: %" CHIP_ERROR_FORMAT, endpointId, err.Format()); + } + gServers[arrayIndex].Destroy(); +} + +void MatterOtaSoftwareUpdateProviderPluginServerInitCallback() {} + +void MatterOtaSoftwareUpdateProviderPluginServerShutdownCallback() {} + +namespace chip { +namespace app { +namespace Clusters { +namespace OTAProvider { + +void SetDelegate(EndpointId endpointId, OTAProviderDelegate * delegate) +{ + uint16_t arrayIndex = 0; + if (!findEndpointWithLog(endpointId, arrayIndex)) + { + return; + } + gServers[arrayIndex].Cluster().SetDelegate(delegate); +} + +} // namespace OTAProvider +} // namespace Clusters +} // namespace app +} // namespace chip diff --git a/components/esp_matter/data_model/software_diagnostics_codegen_integration.cpp b/components/esp_matter/data_model/software_diagnostics_codegen_integration.cpp new file mode 100644 index 000000000..f037ed10d --- /dev/null +++ b/components/esp_matter/data_model/software_diagnostics_codegen_integration.cpp @@ -0,0 +1,74 @@ +// Copyright 2025 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include "esp_matter_core.h" +#include +#include +#include +#include +#include "clusters/SoftwareDiagnostics/AttributeIds.h" +#include "clusters/SoftwareDiagnostics/ClusterId.h" +#include + +using namespace chip; +using namespace chip::app; +using namespace chip::app::Clusters; +using namespace chip::app::Clusters::SoftwareDiagnostics; + +namespace { +LazyRegisteredServerCluster> gServer; +} + +bool isAttributeEnabled(uint16_t endpoint_id, uint32_t cluster_id, uint32_t attribute_id) +{ + esp_matter::attribute_t *attr = esp_matter::attribute::get(endpoint_id, cluster_id, attribute_id); + printf("attr %ld enabled %d", attribute_id, attr != nullptr); + return attr != nullptr; +} + +void emberAfSoftwareDiagnosticsClusterInitCallback(chip::EndpointId endpointId) +{ + VerifyOrReturn(endpointId == chip::kRootEndpointId); + SoftwareDiagnosticsEnabledAttributes enabledAttributes{ + .enableThreadMetrics = isAttributeEnabled(endpointId, Id, Attributes::ThreadMetrics::Id), + .enableCurrentHeapFree = isAttributeEnabled(endpointId, Id, Attributes::CurrentHeapFree::Id), + .enableCurrentHeapUsed = isAttributeEnabled(endpointId, Id, Attributes::CurrentHeapUsed::Id), + .enableCurrentWatermarks = isAttributeEnabled(endpointId, Id, Attributes::CurrentHeapHighWatermark::Id), + }; + + gServer.Create(enabledAttributes); + + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Register(gServer.Registration()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Failed to register SoftwareDiagnostics on endpoint %u: %" CHIP_ERROR_FORMAT, endpointId, + err.Format()); + } +} + +void emberAfSoftwareDiagnosticsClusterShutdownCallback(EndpointId endpointId) +{ + VerifyOrReturn(endpointId == kRootEndpointId); + CHIP_ERROR err = CodegenDataModelProvider::Instance().Registry().Unregister(&gServer.Cluster()); + if (err != CHIP_NO_ERROR) + { + ChipLogError(AppServer, "Failed to unregister SoftwareDiagnostics on endpoint %u: %" CHIP_ERROR_FORMAT, endpointId, + err.Format()); + } + gServer.Destroy(); +} + +void MatterSoftwareDiagnosticsPluginServerInitCallback() {} + +void MatterSoftwareDiagnosticsPluginServerShutdownCallback() {} diff --git a/components/esp_matter/esp_matter_core.cpp b/components/esp_matter/esp_matter_core.cpp index 2902b94e7..1e56eba03 100644 --- a/components/esp_matter/esp_matter_core.cpp +++ b/components/esp_matter/esp_matter_core.cpp @@ -20,6 +20,8 @@ #include #include +#include +#include #include #ifdef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER #include @@ -223,6 +225,8 @@ static void esp_matter_chip_init_task(intptr_t context) ESP_LOGE(TAG, "Failed to add fabric delegate, err:%" CHIP_ERROR_FORMAT, ret.Format()); } chip::Server::GetInstance().Init(initParams); + network_commissioning_instance_init(); + #ifdef CONFIG_ESP_MATTER_ENABLE_DATA_MODEL if (endpoint::enable_all() != ESP_OK) { ESP_LOGE(TAG, "Enable all endpoints failure"); @@ -231,7 +235,7 @@ static void esp_matter_chip_init_task(intptr_t context) // TODO: Find a better way to record the events which should be recorded in matter server init // Record start up event in basic information cluster. PlatformMgr().HandleServerStarted(); - // Record boot reason evnet in general diagnostics cluster. + // Record boot reason event in general diagnostics cluster. chip::app::Clusters::GeneralDiagnostics::BootReasonEnum bootReason; if (GetDiagnosticDataProvider().GetBootReason(bootReason) == CHIP_NO_ERROR) { chip::app::Clusters::GeneralDiagnosticsServer::Instance().OnDeviceReboot(bootReason); diff --git a/components/esp_matter/esp_matter_core.h b/components/esp_matter/esp_matter_core.h index 50399826f..ec03d7b39 100644 --- a/components/esp_matter/esp_matter_core.h +++ b/components/esp_matter/esp_matter_core.h @@ -38,7 +38,7 @@ namespace esp_matter { /** TODO: Change this */ typedef void (*event_callback_t)(const ChipDeviceEvent *event, intptr_t arg); -/** Return whether the Matter is intialized and started +/** Return whether the Matter is initialized and started * * @return true if Matter is started * @return false if Matter is not started @@ -57,7 +57,7 @@ bool is_started(); */ esp_err_t start(event_callback_t callback, intptr_t callback_arg = static_cast(NULL)); -/** Return whether the Matter is intialized and started +/** Return whether the Matter is initialized and started * * @return true if Matter is started * @return false if Matter is not started @@ -73,6 +73,15 @@ bool is_started(); */ esp_err_t factory_reset(); +#ifdef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER +/** + * + * Initialize WiFi, Ethernet, and Thread network commissioning instances. + * This function is called internally during Matter initialization. + */ +void network_commissioning_instance_init(); +#endif // CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER + namespace lock { /** Lock status */ diff --git a/components/esp_matter/network_commissioning_instance.cpp b/components/esp_matter/network_commissioning_instance.cpp new file mode 100644 index 000000000..a0c3b2966 --- /dev/null +++ b/components/esp_matter/network_commissioning_instance.cpp @@ -0,0 +1,50 @@ +// Copyright 2025 Espressif Systems (Shanghai) PTE LTD +// +// Licensed under the Apache License, Version 2.0 (the "License"); +// you may not use this file except in compliance with the License. +// You may obtain a copy of the License at +// +// http://www.apache.org/licenses/LICENSE-2.0 +// +// Unless required by applicable law or agreed to in writing, software +// distributed under the License is distributed on an "AS IS" BASIS, +// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +// See the License for the specific language governing permissions and +// limitations under the License. + +#include + +#ifdef CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER + +#include +#include + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CONFIG_THREAD_NETWORK_COMMISSIONING_DRIVER +#include +#endif + +namespace esp_matter { + +void network_commissioning_instance_init() +{ +#if CHIP_DEVICE_CONFIG_ENABLE_WIFI && CHIP_DEVICE_CONFIG_WIFI_NETWORK_DRIVER + static chip::app::Clusters::NetworkCommissioning::Instance sWiFiNetworkCommissioningInstance(CONFIG_WIFI_NETWORK_ENDPOINT_ID /* Endpoint Id */, + &(chip::DeviceLayer::NetworkCommissioning::ESPWiFiDriver::GetInstance())); + sWiFiNetworkCommissioningInstance.Init(); +#endif // CHIP_DEVICE_CONFIG_WIFI_NETWORK_DRIVER + +#if CHIP_DEVICE_CONFIG_ENABLE_ETHERNET && CHIP_DEVICE_CONFIG_ETHERNET_NETWORK_DRIVER + static chip::app::Clusters::NetworkCommissioning::Instance sEthernetNetworkCommissioningInstance(CONFIG_ETHERNET_NETWORK_ENDPOINT_ID /* Endpoint Id */, + &(chip::DeviceLayer::NetworkCommissioning::ESPEthernetDriver::GetInstance())); + sEthernetNetworkCommissioningInstance.Init(); +#endif // CHIP_DEVICE_CONFIG_ETHERNET_NETWORK_DRIVER + +#if CHIP_DEVICE_CONFIG_ENABLE_THREAD && CONFIG_THREAD_NETWORK_COMMISSIONING_DRIVER + static chip::app::Clusters::NetworkCommissioning::InstanceAndDriver sThreadNetworkDriver(CONFIG_THREAD_NETWORK_ENDPOINT_ID); + sThreadNetworkDriver.Init(); +#endif +} + +} // namespace esp_matter + +#endif // CONFIG_ESP_MATTER_ENABLE_MATTER_SERVER diff --git a/components/esp_matter/private/esp_matter_cluster_revisions.h b/components/esp_matter/private/esp_matter_cluster_revisions.h index 3f80ed2f8..afef27db0 100644 --- a/components/esp_matter/private/esp_matter_cluster_revisions.h +++ b/components/esp_matter/private/esp_matter_cluster_revisions.h @@ -96,11 +96,11 @@ constexpr uint16_t cluster_revision = 2; } // namespace time_synchronization namespace unit_localization { -constexpr uint16_t cluster_revision = 1; +constexpr uint16_t cluster_revision = 2; } // namespace unit_localization namespace bridged_device_basic_information { -constexpr uint16_t cluster_revision = 4; +constexpr uint16_t cluster_revision = 5; } // namespace bridged_device_basic_information namespace power_source { @@ -108,7 +108,7 @@ constexpr uint16_t cluster_revision = 3; } // namespace power_source namespace icd_management { -constexpr uint16_t cluster_revision = 2; +constexpr uint16_t cluster_revision = 3; } // namespace icd_management namespace user_label { @@ -120,7 +120,7 @@ constexpr uint16_t cluster_revision = 1; } // namespace fixed_label namespace identify { -constexpr uint16_t cluster_revision = 5; +constexpr uint16_t cluster_revision = 6; } // namespace identify namespace groups { diff --git a/components/esp_matter/utils/cluster_select/Kconfig.in b/components/esp_matter/utils/cluster_select/Kconfig.in index 7ec2d62ba..7ea700b8a 100644 --- a/components/esp_matter/utils/cluster_select/Kconfig.in +++ b/components/esp_matter/utils/cluster_select/Kconfig.in @@ -385,6 +385,10 @@ config SUPPORT_SOFTWARE_DIAGNOSTICS_CLUSTER bool "Support SOFTWARE_DIAGNOSTICS_CLUSTER" default y +config SUPPORT_SOIL_MEASUREMENT_CLUSTER + bool "Support SOIL_MEASUREMENT_CLUSTER" + default y + config SUPPORT_SWITCH_CLUSTER bool "Support SWITCH_CLUSTER" default y diff --git a/components/esp_matter/utils/cluster_select/cluster_dir.cmake b/components/esp_matter/utils/cluster_select/cluster_dir.cmake index 3efd09a48..6f8ebe67e 100644 --- a/components/esp_matter/utils/cluster_select/cluster_dir.cmake +++ b/components/esp_matter/utils/cluster_select/cluster_dir.cmake @@ -291,6 +291,9 @@ function(get_supported_cluster_dirs source_dirs) if(CONFIG_SUPPORT_SOFTWARE_DIAGNOSTICS_CLUSTER) list(APPEND temp_list "${MATTER_SDK_PATH}/src/app/clusters/software-diagnostics-server") endif() + if(CONFIG_SUPPORT_SOIL_MEASUREMENT_CLUSTER) + list(APPEND temp_list "${MATTER_SDK_PATH}/src/app/clusters/soil-measurement-server") + endif() if(CONFIG_SUPPORT_SWITCH_CLUSTER) list(APPEND temp_list "${MATTER_SDK_PATH}/src/app/clusters/switch-server") endif() diff --git a/components/esp_matter/zap_common/app/static-cluster-config/AccessControl.h b/components/esp_matter/zap_common/app/static-cluster-config/AccessControl.h deleted file mode 100644 index cf1a37e05..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/AccessControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Access Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace AccessControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace AccessControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/AccountLogin.h b/components/esp_matter/zap_common/app/static-cluster-config/AccountLogin.h deleted file mode 100644 index 942865262..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/AccountLogin.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Account Login based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace AccountLogin { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace AccountLogin -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Actions.h b/components/esp_matter/zap_common/app/static-cluster-config/Actions.h deleted file mode 100644 index e4d88bc31..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Actions.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Actions based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Actions { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Actions -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ActivatedCarbonFilterMonitoring.h b/components/esp_matter/zap_common/app/static-cluster-config/ActivatedCarbonFilterMonitoring.h deleted file mode 100644 index d1886ad0b..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ActivatedCarbonFilterMonitoring.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Activated Carbon Filter Monitoring based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ActivatedCarbonFilterMonitoring { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ActivatedCarbonFilterMonitoring -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/AdministratorCommissioning.h b/components/esp_matter/zap_common/app/static-cluster-config/AdministratorCommissioning.h deleted file mode 100644 index ebeb291df..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/AdministratorCommissioning.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Administrator Commissioning based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace AdministratorCommissioning { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace AdministratorCommissioning -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/AirQuality.h b/components/esp_matter/zap_common/app/static-cluster-config/AirQuality.h deleted file mode 100644 index 7e3196d92..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/AirQuality.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Air Quality based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace AirQuality { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace AirQuality -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ApplicationBasic.h b/components/esp_matter/zap_common/app/static-cluster-config/ApplicationBasic.h deleted file mode 100644 index 6ef12772e..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ApplicationBasic.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Application Basic based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ApplicationBasic { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ApplicationBasic -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ApplicationLauncher.h b/components/esp_matter/zap_common/app/static-cluster-config/ApplicationLauncher.h deleted file mode 100644 index 60fefbd0c..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ApplicationLauncher.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Application Launcher based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ApplicationLauncher { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ApplicationLauncher -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/AudioOutput.h b/components/esp_matter/zap_common/app/static-cluster-config/AudioOutput.h deleted file mode 100644 index 65ea52ee9..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/AudioOutput.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Audio Output based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace AudioOutput { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace AudioOutput -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/BallastConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/BallastConfiguration.h deleted file mode 100644 index 38af7e818..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/BallastConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Ballast Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace BallastConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace BallastConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/BasicInformation.h b/components/esp_matter/zap_common/app/static-cluster-config/BasicInformation.h deleted file mode 100644 index 5d5620dc3..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/BasicInformation.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Basic Information based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace BasicInformation { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace BasicInformation -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Binding.h b/components/esp_matter/zap_common/app/static-cluster-config/Binding.h deleted file mode 100644 index ee049569e..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Binding.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Binding based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Binding { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Binding -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/BooleanState.h b/components/esp_matter/zap_common/app/static-cluster-config/BooleanState.h deleted file mode 100644 index b45e9ebab..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/BooleanState.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Boolean State based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace BooleanState { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace BooleanState -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/BooleanStateConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/BooleanStateConfiguration.h deleted file mode 100644 index 4251ddcef..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/BooleanStateConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Boolean State Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace BooleanStateConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace BooleanStateConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/BridgedDeviceBasicInformation.h b/components/esp_matter/zap_common/app/static-cluster-config/BridgedDeviceBasicInformation.h deleted file mode 100644 index 014dcd640..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/BridgedDeviceBasicInformation.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Bridged Device Basic Information based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace BridgedDeviceBasicInformation { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace BridgedDeviceBasicInformation -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CameraAvSettingsUserLevelManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/CameraAvSettingsUserLevelManagement.h deleted file mode 100644 index bdeb0463b..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CameraAvSettingsUserLevelManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Camera AV Settings User Level Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CameraAvSettingsUserLevelManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CameraAvSettingsUserLevelManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CameraAvStreamManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/CameraAvStreamManagement.h deleted file mode 100644 index 7e3bd25ab..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CameraAvStreamManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Camera AV Stream Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CameraAvStreamManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CameraAvStreamManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CarbonDioxideConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/CarbonDioxideConcentrationMeasurement.h deleted file mode 100644 index 693acbde2..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CarbonDioxideConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Carbon Dioxide Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CarbonDioxideConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CarbonDioxideConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CarbonMonoxideConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/CarbonMonoxideConcentrationMeasurement.h deleted file mode 100644 index 51f86c5f3..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CarbonMonoxideConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Carbon Monoxide Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CarbonMonoxideConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CarbonMonoxideConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Channel.h b/components/esp_matter/zap_common/app/static-cluster-config/Channel.h deleted file mode 100644 index bc1b2d0d4..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Channel.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Channel based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Channel { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Channel -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Chime.h b/components/esp_matter/zap_common/app/static-cluster-config/Chime.h deleted file mode 100644 index 0a49446dd..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Chime.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Chime based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Chime { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Chime -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ClosureControl.h b/components/esp_matter/zap_common/app/static-cluster-config/ClosureControl.h deleted file mode 100644 index 455df88ed..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ClosureControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Closure Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ClosureControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ClosureControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ClosureDimension.h b/components/esp_matter/zap_common/app/static-cluster-config/ClosureDimension.h deleted file mode 100644 index d1e5a44ff..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ClosureDimension.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Closure Dimension based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ClosureDimension { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ClosureDimension -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ColorControl.h b/components/esp_matter/zap_common/app/static-cluster-config/ColorControl.h deleted file mode 100644 index 38c7606a5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ColorControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Color Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ColorControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ColorControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CommissionerControl.h b/components/esp_matter/zap_common/app/static-cluster-config/CommissionerControl.h deleted file mode 100644 index cfb24e8ce..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CommissionerControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Commissioner Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CommissionerControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CommissionerControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CommodityMetering.h b/components/esp_matter/zap_common/app/static-cluster-config/CommodityMetering.h deleted file mode 100644 index c93b0fcc3..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CommodityMetering.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Commodity Metering based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CommodityMetering { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CommodityMetering -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CommodityPrice.h b/components/esp_matter/zap_common/app/static-cluster-config/CommodityPrice.h deleted file mode 100644 index ac352768d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CommodityPrice.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Commodity Price based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CommodityPrice { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CommodityPrice -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/CommodityTariff.h b/components/esp_matter/zap_common/app/static-cluster-config/CommodityTariff.h deleted file mode 100644 index 10d7c4c36..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/CommodityTariff.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Commodity Tariff based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace CommodityTariff { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace CommodityTariff -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ContentAppObserver.h b/components/esp_matter/zap_common/app/static-cluster-config/ContentAppObserver.h deleted file mode 100644 index fd204c0bf..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ContentAppObserver.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Content App Observer based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ContentAppObserver { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ContentAppObserver -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ContentControl.h b/components/esp_matter/zap_common/app/static-cluster-config/ContentControl.h deleted file mode 100644 index effc38cf9..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ContentControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Content Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ContentControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ContentControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ContentLauncher.h b/components/esp_matter/zap_common/app/static-cluster-config/ContentLauncher.h deleted file mode 100644 index c79a9b4a5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ContentLauncher.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Content Launcher based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ContentLauncher { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ContentLauncher -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Descriptor.h b/components/esp_matter/zap_common/app/static-cluster-config/Descriptor.h deleted file mode 100644 index be01f45be..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Descriptor.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Descriptor based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Descriptor { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Descriptor -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagement.h deleted file mode 100644 index 3539cf3b9..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Device Energy Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DeviceEnergyManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DeviceEnergyManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagementMode.h b/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagementMode.h deleted file mode 100644 index 043fa3a67..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DeviceEnergyManagementMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Device Energy Management Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DeviceEnergyManagementMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DeviceEnergyManagementMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DiagnosticLogs.h b/components/esp_matter/zap_common/app/static-cluster-config/DiagnosticLogs.h deleted file mode 100644 index 00393d97c..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DiagnosticLogs.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Diagnostic Logs based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DiagnosticLogs { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DiagnosticLogs -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DishwasherAlarm.h b/components/esp_matter/zap_common/app/static-cluster-config/DishwasherAlarm.h deleted file mode 100644 index d826bac28..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DishwasherAlarm.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Dishwasher Alarm based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DishwasherAlarm { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DishwasherAlarm -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DishwasherMode.h b/components/esp_matter/zap_common/app/static-cluster-config/DishwasherMode.h deleted file mode 100644 index 689928291..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DishwasherMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Dishwasher Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DishwasherMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DishwasherMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/DoorLock.h b/components/esp_matter/zap_common/app/static-cluster-config/DoorLock.h deleted file mode 100644 index 7c160d083..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/DoorLock.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Door Lock based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace DoorLock { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace DoorLock -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/EcosystemInformation.h b/components/esp_matter/zap_common/app/static-cluster-config/EcosystemInformation.h deleted file mode 100644 index a2bfccee9..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/EcosystemInformation.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Ecosystem Information based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace EcosystemInformation { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace EcosystemInformation -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalEnergyMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/ElectricalEnergyMeasurement.h deleted file mode 100644 index 9f3821adc..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalEnergyMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Electrical Energy Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ElectricalEnergyMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ElectricalEnergyMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalGridConditions.h b/components/esp_matter/zap_common/app/static-cluster-config/ElectricalGridConditions.h deleted file mode 100644 index 49ee5913a..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalGridConditions.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Electrical Grid Conditions based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ElectricalGridConditions { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ElectricalGridConditions -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalPowerMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/ElectricalPowerMeasurement.h deleted file mode 100644 index 8608a800d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ElectricalPowerMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Electrical Power Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ElectricalPowerMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ElectricalPowerMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvse.h b/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvse.h deleted file mode 100644 index 405c34558..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvse.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Energy EVSE based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace EnergyEvse { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace EnergyEvse -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvseMode.h b/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvseMode.h deleted file mode 100644 index 1095bd90f..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/EnergyEvseMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Energy EVSE Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace EnergyEvseMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace EnergyEvseMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/EnergyPreference.h b/components/esp_matter/zap_common/app/static-cluster-config/EnergyPreference.h deleted file mode 100644 index fc3bb7490..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/EnergyPreference.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Energy Preference based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace EnergyPreference { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace EnergyPreference -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/EthernetNetworkDiagnostics.h b/components/esp_matter/zap_common/app/static-cluster-config/EthernetNetworkDiagnostics.h deleted file mode 100644 index da18f0563..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/EthernetNetworkDiagnostics.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Ethernet Network Diagnostics based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace EthernetNetworkDiagnostics { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace EthernetNetworkDiagnostics -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/FanControl.h b/components/esp_matter/zap_common/app/static-cluster-config/FanControl.h deleted file mode 100644 index 4428fe483..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/FanControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Fan Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace FanControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace FanControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/FaultInjection.h b/components/esp_matter/zap_common/app/static-cluster-config/FaultInjection.h deleted file mode 100644 index 47f5ebe58..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/FaultInjection.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Fault Injection based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace FaultInjection { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace FaultInjection -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/FixedLabel.h b/components/esp_matter/zap_common/app/static-cluster-config/FixedLabel.h deleted file mode 100644 index 5634141be..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/FixedLabel.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Fixed Label based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace FixedLabel { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace FixedLabel -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/FlowMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/FlowMeasurement.h deleted file mode 100644 index d80e5cd15..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/FlowMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Flow Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace FlowMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace FlowMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/FormaldehydeConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/FormaldehydeConcentrationMeasurement.h deleted file mode 100644 index dc1c0d9cc..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/FormaldehydeConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Formaldehyde Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace FormaldehydeConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace FormaldehydeConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/GeneralCommissioning.h b/components/esp_matter/zap_common/app/static-cluster-config/GeneralCommissioning.h deleted file mode 100644 index 19e2c1e18..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/GeneralCommissioning.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for General Commissioning based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace GeneralCommissioning { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace GeneralCommissioning -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/GeneralDiagnostics.h b/components/esp_matter/zap_common/app/static-cluster-config/GeneralDiagnostics.h deleted file mode 100644 index 58dd448c0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/GeneralDiagnostics.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for General Diagnostics based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace GeneralDiagnostics { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace GeneralDiagnostics -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/GroupKeyManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/GroupKeyManagement.h deleted file mode 100644 index 1cf9f3feb..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/GroupKeyManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Group Key Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace GroupKeyManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace GroupKeyManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Groups.h b/components/esp_matter/zap_common/app/static-cluster-config/Groups.h deleted file mode 100644 index 88cf09b92..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Groups.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Groups based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Groups { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Groups -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/HepaFilterMonitoring.h b/components/esp_matter/zap_common/app/static-cluster-config/HepaFilterMonitoring.h deleted file mode 100644 index d530a8de2..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/HepaFilterMonitoring.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for HEPA Filter Monitoring based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace HepaFilterMonitoring { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace HepaFilterMonitoring -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/IcdManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/IcdManagement.h deleted file mode 100644 index 747f6837b..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/IcdManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for ICD Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace IcdManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace IcdManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Identify.h b/components/esp_matter/zap_common/app/static-cluster-config/Identify.h deleted file mode 100644 index 4a1690a1b..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Identify.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Identify based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Identify { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Identify -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/IlluminanceMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/IlluminanceMeasurement.h deleted file mode 100644 index f34c1ad93..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/IlluminanceMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Illuminance Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace IlluminanceMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace IlluminanceMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/JointFabricAdministrator.h b/components/esp_matter/zap_common/app/static-cluster-config/JointFabricAdministrator.h deleted file mode 100644 index 5de5c3de1..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/JointFabricAdministrator.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Joint Fabric Administrator based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace JointFabricAdministrator { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace JointFabricAdministrator -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/JointFabricDatastore.h b/components/esp_matter/zap_common/app/static-cluster-config/JointFabricDatastore.h deleted file mode 100644 index 4652056e5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/JointFabricDatastore.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Joint Fabric Datastore based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace JointFabricDatastore { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace JointFabricDatastore -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/KeypadInput.h b/components/esp_matter/zap_common/app/static-cluster-config/KeypadInput.h deleted file mode 100644 index 50a4798df..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/KeypadInput.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Keypad Input based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace KeypadInput { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace KeypadInput -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LaundryDryerControls.h b/components/esp_matter/zap_common/app/static-cluster-config/LaundryDryerControls.h deleted file mode 100644 index 32d6060f0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LaundryDryerControls.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Laundry Dryer Controls based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LaundryDryerControls { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LaundryDryerControls -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherControls.h b/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherControls.h deleted file mode 100644 index b3dea8174..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherControls.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Laundry Washer Controls based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LaundryWasherControls { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LaundryWasherControls -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherMode.h b/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherMode.h deleted file mode 100644 index 55eb2088c..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LaundryWasherMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Laundry Washer Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LaundryWasherMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LaundryWasherMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LevelControl.h b/components/esp_matter/zap_common/app/static-cluster-config/LevelControl.h deleted file mode 100644 index baa06b5b3..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LevelControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Level Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LevelControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LevelControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LocalizationConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/LocalizationConfiguration.h deleted file mode 100644 index 461efabcb..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LocalizationConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Localization Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LocalizationConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LocalizationConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/LowPower.h b/components/esp_matter/zap_common/app/static-cluster-config/LowPower.h deleted file mode 100644 index 4d7ac0b5d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/LowPower.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Low Power based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace LowPower { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace LowPower -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/MediaInput.h b/components/esp_matter/zap_common/app/static-cluster-config/MediaInput.h deleted file mode 100644 index 7698d93d1..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/MediaInput.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Media Input based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace MediaInput { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace MediaInput -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/MediaPlayback.h b/components/esp_matter/zap_common/app/static-cluster-config/MediaPlayback.h deleted file mode 100644 index 96e6b400f..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/MediaPlayback.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Media Playback based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace MediaPlayback { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace MediaPlayback -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Messages.h b/components/esp_matter/zap_common/app/static-cluster-config/Messages.h deleted file mode 100644 index 845e68e39..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Messages.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Messages based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Messages { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Messages -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/MeterIdentification.h b/components/esp_matter/zap_common/app/static-cluster-config/MeterIdentification.h deleted file mode 100644 index d93e34769..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/MeterIdentification.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Meter Identification based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace MeterIdentification { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace MeterIdentification -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenControl.h b/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenControl.h deleted file mode 100644 index e043caa3d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Microwave Oven Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace MicrowaveOvenControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace MicrowaveOvenControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenMode.h b/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenMode.h deleted file mode 100644 index 004fb9e71..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/MicrowaveOvenMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Microwave Oven Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace MicrowaveOvenMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace MicrowaveOvenMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ModeSelect.h b/components/esp_matter/zap_common/app/static-cluster-config/ModeSelect.h deleted file mode 100644 index 03d4c7426..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ModeSelect.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Mode Select based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ModeSelect { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ModeSelect -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/NetworkCommissioning.h b/components/esp_matter/zap_common/app/static-cluster-config/NetworkCommissioning.h deleted file mode 100644 index 2180c95fc..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/NetworkCommissioning.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Network Commissioning based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace NetworkCommissioning { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace NetworkCommissioning -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/NitrogenDioxideConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/NitrogenDioxideConcentrationMeasurement.h deleted file mode 100644 index 1534d8cb6..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/NitrogenDioxideConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Nitrogen Dioxide Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace NitrogenDioxideConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace NitrogenDioxideConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OccupancySensing.h b/components/esp_matter/zap_common/app/static-cluster-config/OccupancySensing.h deleted file mode 100644 index 45dbe92f5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OccupancySensing.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Occupancy Sensing based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OccupancySensing { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OccupancySensing -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OnOff.h b/components/esp_matter/zap_common/app/static-cluster-config/OnOff.h deleted file mode 100644 index 218350c3d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OnOff.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for On/Off based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OnOff { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OnOff -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OperationalCredentials.h b/components/esp_matter/zap_common/app/static-cluster-config/OperationalCredentials.h deleted file mode 100644 index 636688ca0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OperationalCredentials.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Operational Credentials based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OperationalCredentials { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OperationalCredentials -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OperationalState.h b/components/esp_matter/zap_common/app/static-cluster-config/OperationalState.h deleted file mode 100644 index e29bacb81..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OperationalState.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Operational State based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OperationalState { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OperationalState -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateProvider.h b/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateProvider.h deleted file mode 100644 index bc3c9ae25..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateProvider.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for OTA Software Update Provider based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OtaSoftwareUpdateProvider { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OtaSoftwareUpdateProvider -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateRequestor.h b/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateRequestor.h deleted file mode 100644 index 510501c15..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OtaSoftwareUpdateRequestor.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for OTA Software Update Requestor based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OtaSoftwareUpdateRequestor { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OtaSoftwareUpdateRequestor -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OvenCavityOperationalState.h b/components/esp_matter/zap_common/app/static-cluster-config/OvenCavityOperationalState.h deleted file mode 100644 index aadc02c2e..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OvenCavityOperationalState.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Oven Cavity Operational State based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OvenCavityOperationalState { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OvenCavityOperationalState -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OvenMode.h b/components/esp_matter/zap_common/app/static-cluster-config/OvenMode.h deleted file mode 100644 index be9658a2d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OvenMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Oven Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OvenMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OvenMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/OzoneConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/OzoneConcentrationMeasurement.h deleted file mode 100644 index 8054e7f00..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/OzoneConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Ozone Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace OzoneConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace OzoneConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Pm10ConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/Pm10ConcentrationMeasurement.h deleted file mode 100644 index 2ab01a786..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Pm10ConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for PM10 Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Pm10ConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Pm10ConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Pm1ConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/Pm1ConcentrationMeasurement.h deleted file mode 100644 index a2ccd695c..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Pm1ConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for PM1 Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Pm1ConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Pm1ConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Pm25ConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/Pm25ConcentrationMeasurement.h deleted file mode 100644 index cbb2c4041..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Pm25ConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for PM2.5 Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Pm25ConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Pm25ConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PowerSource.h b/components/esp_matter/zap_common/app/static-cluster-config/PowerSource.h deleted file mode 100644 index b1f297ca0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PowerSource.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Power Source based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PowerSource { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PowerSource -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PowerSourceConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/PowerSourceConfiguration.h deleted file mode 100644 index ce1558133..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PowerSourceConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Power Source Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PowerSourceConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PowerSourceConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PowerTopology.h b/components/esp_matter/zap_common/app/static-cluster-config/PowerTopology.h deleted file mode 100644 index 464f9feb8..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PowerTopology.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Power Topology based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PowerTopology { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PowerTopology -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PressureMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/PressureMeasurement.h deleted file mode 100644 index 9929a8052..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PressureMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Pressure Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PressureMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PressureMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ProxyConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/ProxyConfiguration.h deleted file mode 100644 index ae9e6e753..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ProxyConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Proxy Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ProxyConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ProxyConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ProxyDiscovery.h b/components/esp_matter/zap_common/app/static-cluster-config/ProxyDiscovery.h deleted file mode 100644 index 2e3b62e89..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ProxyDiscovery.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Proxy Discovery based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ProxyDiscovery { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ProxyDiscovery -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ProxyValid.h b/components/esp_matter/zap_common/app/static-cluster-config/ProxyValid.h deleted file mode 100644 index f815a6c19..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ProxyValid.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Proxy Valid based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ProxyValid { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ProxyValid -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PulseWidthModulation.h b/components/esp_matter/zap_common/app/static-cluster-config/PulseWidthModulation.h deleted file mode 100644 index 16015eb93..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PulseWidthModulation.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Pulse Width Modulation based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PulseWidthModulation { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PulseWidthModulation -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PumpConfigurationAndControl.h b/components/esp_matter/zap_common/app/static-cluster-config/PumpConfigurationAndControl.h deleted file mode 100644 index c2c487f95..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PumpConfigurationAndControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Pump Configuration and Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PumpConfigurationAndControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PumpConfigurationAndControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/PushAvStreamTransport.h b/components/esp_matter/zap_common/app/static-cluster-config/PushAvStreamTransport.h deleted file mode 100644 index 633d0825d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/PushAvStreamTransport.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Push AV Stream Transport based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace PushAvStreamTransport { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace PushAvStreamTransport -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RadonConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/RadonConcentrationMeasurement.h deleted file mode 100644 index ffd1ac9fa..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RadonConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Radon Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RadonConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RadonConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAlarm.h b/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAlarm.h deleted file mode 100644 index b8fd28310..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAlarm.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Refrigerator Alarm based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RefrigeratorAlarm { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RefrigeratorAlarm -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAndTemperatureControlledCabinetMode.h b/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAndTemperatureControlledCabinetMode.h deleted file mode 100644 index a1ccdb9eb..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RefrigeratorAndTemperatureControlledCabinetMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Refrigerator And Temperature Controlled Cabinet Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RefrigeratorAndTemperatureControlledCabinetMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RefrigeratorAndTemperatureControlledCabinetMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RelativeHumidityMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/RelativeHumidityMeasurement.h deleted file mode 100644 index 2184085b0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RelativeHumidityMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Relative Humidity Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RelativeHumidityMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RelativeHumidityMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RvcCleanMode.h b/components/esp_matter/zap_common/app/static-cluster-config/RvcCleanMode.h deleted file mode 100644 index fbbb7e454..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RvcCleanMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for RVC Clean Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RvcCleanMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RvcCleanMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RvcOperationalState.h b/components/esp_matter/zap_common/app/static-cluster-config/RvcOperationalState.h deleted file mode 100644 index 70bbb4b46..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RvcOperationalState.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for RVC Operational State based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RvcOperationalState { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RvcOperationalState -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/RvcRunMode.h b/components/esp_matter/zap_common/app/static-cluster-config/RvcRunMode.h deleted file mode 100644 index d9490126c..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/RvcRunMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for RVC Run Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace RvcRunMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace RvcRunMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/SampleMei.h b/components/esp_matter/zap_common/app/static-cluster-config/SampleMei.h deleted file mode 100644 index aaedb64f6..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/SampleMei.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Sample MEI based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace SampleMei { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace SampleMei -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ScenesManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/ScenesManagement.h deleted file mode 100644 index d4e5bd155..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ScenesManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Scenes Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ScenesManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ScenesManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ServiceArea.h b/components/esp_matter/zap_common/app/static-cluster-config/ServiceArea.h deleted file mode 100644 index e67373e58..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ServiceArea.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Service Area based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ServiceArea { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ServiceArea -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/SmokeCoAlarm.h b/components/esp_matter/zap_common/app/static-cluster-config/SmokeCoAlarm.h deleted file mode 100644 index 5d3e619d1..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/SmokeCoAlarm.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Smoke CO Alarm based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace SmokeCoAlarm { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace SmokeCoAlarm -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/SoftwareDiagnostics.h b/components/esp_matter/zap_common/app/static-cluster-config/SoftwareDiagnostics.h deleted file mode 100644 index 94845339b..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/SoftwareDiagnostics.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Software Diagnostics based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace SoftwareDiagnostics { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace SoftwareDiagnostics -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/SoilMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/SoilMeasurement.h deleted file mode 100644 index 1a4b6dd8a..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/SoilMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Soil Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace SoilMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace SoilMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Switch.h b/components/esp_matter/zap_common/app/static-cluster-config/Switch.h deleted file mode 100644 index a54e1de22..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Switch.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Switch based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Switch { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Switch -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TargetNavigator.h b/components/esp_matter/zap_common/app/static-cluster-config/TargetNavigator.h deleted file mode 100644 index a170768e0..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TargetNavigator.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Target Navigator based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TargetNavigator { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TargetNavigator -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TemperatureControl.h b/components/esp_matter/zap_common/app/static-cluster-config/TemperatureControl.h deleted file mode 100644 index 5a0b2aa22..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TemperatureControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Temperature Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TemperatureControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TemperatureControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TemperatureMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/TemperatureMeasurement.h deleted file mode 100644 index 8259a8bd5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TemperatureMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Temperature Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TemperatureMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TemperatureMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/Thermostat.h b/components/esp_matter/zap_common/app/static-cluster-config/Thermostat.h deleted file mode 100644 index 383c0d5a5..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/Thermostat.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Thermostat based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace Thermostat { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace Thermostat -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ThermostatUserInterfaceConfiguration.h b/components/esp_matter/zap_common/app/static-cluster-config/ThermostatUserInterfaceConfiguration.h deleted file mode 100644 index a73e83ede..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ThermostatUserInterfaceConfiguration.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Thermostat User Interface Configuration based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ThermostatUserInterfaceConfiguration { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ThermostatUserInterfaceConfiguration -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ThreadBorderRouterManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/ThreadBorderRouterManagement.h deleted file mode 100644 index 5b3ff2607..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ThreadBorderRouterManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Thread Border Router Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ThreadBorderRouterManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ThreadBorderRouterManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDiagnostics.h b/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDiagnostics.h deleted file mode 100644 index 6fa85b165..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDiagnostics.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Thread Network Diagnostics based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ThreadNetworkDiagnostics { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ThreadNetworkDiagnostics -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDirectory.h b/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDirectory.h deleted file mode 100644 index 75676ea23..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ThreadNetworkDirectory.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Thread Network Directory based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ThreadNetworkDirectory { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ThreadNetworkDirectory -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TimeFormatLocalization.h b/components/esp_matter/zap_common/app/static-cluster-config/TimeFormatLocalization.h deleted file mode 100644 index 3504f9af4..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TimeFormatLocalization.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Time Format Localization based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TimeFormatLocalization { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TimeFormatLocalization -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TimeSynchronization.h b/components/esp_matter/zap_common/app/static-cluster-config/TimeSynchronization.h deleted file mode 100644 index f655af2c6..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TimeSynchronization.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Time Synchronization based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TimeSynchronization { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TimeSynchronization -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TlsCertificateManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/TlsCertificateManagement.h deleted file mode 100644 index e3cb410bd..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TlsCertificateManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for TLS Certificate Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TlsCertificateManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TlsCertificateManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TlsClientManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/TlsClientManagement.h deleted file mode 100644 index 9bfe1ffef..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TlsClientManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for TLS Client Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TlsClientManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TlsClientManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/TotalVolatileOrganicCompoundsConcentrationMeasurement.h b/components/esp_matter/zap_common/app/static-cluster-config/TotalVolatileOrganicCompoundsConcentrationMeasurement.h deleted file mode 100644 index 8b4479e3e..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/TotalVolatileOrganicCompoundsConcentrationMeasurement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Total Volatile Organic Compounds Concentration Measurement based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace TotalVolatileOrganicCompoundsConcentrationMeasurement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace TotalVolatileOrganicCompoundsConcentrationMeasurement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/UnitLocalization.h b/components/esp_matter/zap_common/app/static-cluster-config/UnitLocalization.h deleted file mode 100644 index d3ee0e243..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/UnitLocalization.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Unit Localization based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace UnitLocalization { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace UnitLocalization -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/UnitTesting.h b/components/esp_matter/zap_common/app/static-cluster-config/UnitTesting.h deleted file mode 100644 index 5b34f667a..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/UnitTesting.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Unit Testing based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace UnitTesting { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace UnitTesting -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/UserLabel.h b/components/esp_matter/zap_common/app/static-cluster-config/UserLabel.h deleted file mode 100644 index d0b620f68..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/UserLabel.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for User Label based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace UserLabel { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace UserLabel -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ValveConfigurationAndControl.h b/components/esp_matter/zap_common/app/static-cluster-config/ValveConfigurationAndControl.h deleted file mode 100644 index 1c067322d..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ValveConfigurationAndControl.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Valve Configuration and Control based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ValveConfigurationAndControl { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ValveConfigurationAndControl -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WakeOnLan.h b/components/esp_matter/zap_common/app/static-cluster-config/WakeOnLan.h deleted file mode 100644 index 0a728aa93..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WakeOnLan.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Wake on LAN based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WakeOnLan { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WakeOnLan -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterManagement.h deleted file mode 100644 index 63725c845..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Water Heater Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WaterHeaterManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WaterHeaterManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterMode.h b/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterMode.h deleted file mode 100644 index 10f73b20f..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WaterHeaterMode.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Water Heater Mode based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WaterHeaterMode { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WaterHeaterMode -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportProvider.h b/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportProvider.h deleted file mode 100644 index 86c343beb..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportProvider.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for WebRTC Transport Provider based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WebRTCTransportProvider { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WebRTCTransportProvider -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportRequestor.h b/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportRequestor.h deleted file mode 100644 index f5f3e65d2..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WebRTCTransportRequestor.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for WebRTC Transport Requestor based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WebRTCTransportRequestor { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WebRTCTransportRequestor -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkDiagnostics.h b/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkDiagnostics.h deleted file mode 100644 index 717ea8916..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkDiagnostics.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Wi-Fi Network Diagnostics based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WiFiNetworkDiagnostics { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WiFiNetworkDiagnostics -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkManagement.h deleted file mode 100644 index a18f68ce9..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WiFiNetworkManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Wi-Fi Network Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WiFiNetworkManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WiFiNetworkManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/WindowCovering.h b/components/esp_matter/zap_common/app/static-cluster-config/WindowCovering.h deleted file mode 100644 index dd302d831..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/WindowCovering.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Window Covering based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace WindowCovering { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace WindowCovering -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/app/static-cluster-config/ZoneManagement.h b/components/esp_matter/zap_common/app/static-cluster-config/ZoneManagement.h deleted file mode 100644 index cd13c4701..000000000 --- a/components/esp_matter/zap_common/app/static-cluster-config/ZoneManagement.h +++ /dev/null @@ -1,23 +0,0 @@ -// Application configuration for Zone Management based on EMBER configuration -#pragma once - -#include -#include - -#include - -namespace chip { -namespace app { -namespace Clusters { -namespace ZoneManagement { -namespace StaticApplicationConfig { - -using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined; - -inline constexpr std::array, 0> kFixedClusterConfig = { }; - -} // namespace StaticApplicationConfig -} // namespace ZoneManagement -} // namespace Clusters -} // namespace app -} // namespace chip diff --git a/components/esp_matter/zap_common/generate_zap_common_files.py b/components/esp_matter/zap_common/generate_zap_common_files.py index 7f8779b6c..439a00b0f 100755 --- a/components/esp_matter/zap_common/generate_zap_common_files.py +++ b/components/esp_matter/zap_common/generate_zap_common_files.py @@ -339,36 +339,6 @@ def generate_access_h(xml_files, output_dir): header_file.write('// clang-format on\n') -def generate_static_cluster_config_headers(xml_files, output_dir): - static_config_dir = os.path.join(output_dir, 'app/static-cluster-config') - os.makedirs(static_config_dir, exist_ok=True) - clusters = get_clusters_from_xml_files(xml_files) - for cluster in clusters: - cluster_name = get_cluster_name(cluster) - formatted_name = format_cluster_name(cluster_name) - header_path = os.path.join(static_config_dir, f'{formatted_name}.h') - with open(header_path, 'w') as header_file: - header_file.writelines([ - f'// Application configuration for {cluster_name} based on EMBER configuration\n', - '#pragma once\n\n', - '#include \n', - '#include \n\n', - '#include \n\n', - 'namespace chip {\n', - 'namespace app {\n', - 'namespace Clusters {\n', - f'namespace {formatted_name} {{\n', - 'namespace StaticApplicationConfig {\n\n', - 'using FeatureBitmapType = Clusters::StaticApplicationConfig::NoFeatureFlagsDefined;\n\n', - 'inline constexpr std::array, 0> kFixedClusterConfig = { };\n\n', - '} // namespace StaticApplicationConfig\n', - f'}} // namespace {formatted_name}\n', - '} // namespace Clusters\n', - '} // namespace app\n', - '} // namespace chip\n', - ]) - - def main(): logging.basicConfig( format='[%(asctime)s] [%(levelname)7s] - %(message)s', level=logging.INFO) @@ -378,7 +348,6 @@ def main(): generate_callback_stub_cpp(xml_files, args.output_dir) generate_cluster_init_callback_cpp(xml_files, args.output_dir) generate_access_h(xml_files, args.output_dir) - generate_static_cluster_config_headers(xml_files, args.output_dir) if __name__ == "__main__": diff --git a/components/esp_matter/zap_common/zap-generated/access.h b/components/esp_matter/zap_common/zap-generated/access.h index 9d730c578..20d66c17d 100644 --- a/components/esp_matter/zap_common/zap-generated/access.h +++ b/components/esp_matter/zap_common/zap-generated/access.h @@ -16,6 +16,8 @@ 0x00000030, /* Cluster: General Commissioning, Attribute: TCAcknowledgements, Privilege: administer */ \ 0x00000030, /* Cluster: General Commissioning, Attribute: TCAcknowledgementsRequired, Privilege: administer */ \ 0x00000030, /* Cluster: General Commissioning, Attribute: TCUpdateDeadline, Privilege: administer */ \ + 0x00000030, /* Cluster: General Commissioning, Attribute: RecoveryIdentifier, Privilege: manage */ \ + 0x00000030, /* Cluster: General Commissioning, Attribute: NetworkRecoveryReason, Privilege: manage */ \ 0x00000031, /* Cluster: Network Commissioning, Attribute: MaxNetworks, Privilege: administer */ \ 0x00000031, /* Cluster: Network Commissioning, Attribute: Networks, Privilege: administer */ \ 0x00000031, /* Cluster: Network Commissioning, Attribute: LastNetworkingStatus, Privilege: administer */ \ @@ -32,8 +34,6 @@ 0x00000101, /* Cluster: Door Lock, Attribute: AliroSupportedBLEUWBProtocolVersions, Privilege: administer */ \ 0x00000101, /* Cluster: Door Lock, Attribute: AliroBLEAdvertisingVersion, Privilege: administer */ \ 0x00000451, /* Cluster: Wi-Fi Network Management, Attribute: PassphraseSurrogate, Privilege: manage */ \ - 0x00000453, /* Cluster: Thread Network Directory, Attribute: PreferredExtendedPanID, Privilege: manage */ \ - 0x00000453, /* Cluster: Thread Network Directory, Attribute: ThreadNetworks, Privilege: operate */ \ 0x0000050D, /* Cluster: Application Basic, Attribute: AllowedVendorList, Privilege: administer */ \ 0x00000551, /* Cluster: Camera AV Stream Management, Attribute: HDRModeEnabled, Privilege: manage */ \ 0x00000551, /* Cluster: Camera AV Stream Management, Attribute: NightVision, Privilege: manage */ \ @@ -86,6 +86,8 @@ 0x00000007, /* Cluster: General Commissioning, Attribute: TCAcknowledgements, Privilege: administer */ \ 0x00000008, /* Cluster: General Commissioning, Attribute: TCAcknowledgementsRequired, Privilege: administer */ \ 0x00000009, /* Cluster: General Commissioning, Attribute: TCUpdateDeadline, Privilege: administer */ \ + 0x0000000A, /* Cluster: General Commissioning, Attribute: RecoveryIdentifier, Privilege: manage */ \ + 0x0000000B, /* Cluster: General Commissioning, Attribute: NetworkRecoveryReason, Privilege: manage */ \ 0x00000000, /* Cluster: Network Commissioning, Attribute: MaxNetworks, Privilege: administer */ \ 0x00000001, /* Cluster: Network Commissioning, Attribute: Networks, Privilege: administer */ \ 0x00000005, /* Cluster: Network Commissioning, Attribute: LastNetworkingStatus, Privilege: administer */ \ @@ -102,8 +104,6 @@ 0x00000085, /* Cluster: Door Lock, Attribute: AliroSupportedBLEUWBProtocolVersions, Privilege: administer */ \ 0x00000086, /* Cluster: Door Lock, Attribute: AliroBLEAdvertisingVersion, Privilege: administer */ \ 0x00000001, /* Cluster: Wi-Fi Network Management, Attribute: PassphraseSurrogate, Privilege: manage */ \ - 0x00000000, /* Cluster: Thread Network Directory, Attribute: PreferredExtendedPanID, Privilege: manage */ \ - 0x00000001, /* Cluster: Thread Network Directory, Attribute: ThreadNetworks, Privilege: operate */ \ 0x00000007, /* Cluster: Application Basic, Attribute: AllowedVendorList, Privilege: administer */ \ 0x0000000D, /* Cluster: Camera AV Stream Management, Attribute: HDRModeEnabled, Privilege: manage */ \ 0x00000016, /* Cluster: Camera AV Stream Management, Attribute: NightVision, Privilege: manage */ \ @@ -156,6 +156,8 @@ chip::Access::Privilege::kAdminister, /* Cluster: General Commissioning, Attribute: TCAcknowledgements, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: General Commissioning, Attribute: TCAcknowledgementsRequired, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: General Commissioning, Attribute: TCUpdateDeadline, Privilege: administer */ \ + chip::Access::Privilege::kManage, /* Cluster: General Commissioning, Attribute: RecoveryIdentifier, Privilege: manage */ \ + chip::Access::Privilege::kManage, /* Cluster: General Commissioning, Attribute: NetworkRecoveryReason, Privilege: manage */ \ chip::Access::Privilege::kAdminister, /* Cluster: Network Commissioning, Attribute: MaxNetworks, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: Network Commissioning, Attribute: Networks, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: Network Commissioning, Attribute: LastNetworkingStatus, Privilege: administer */ \ @@ -172,8 +174,6 @@ chip::Access::Privilege::kAdminister, /* Cluster: Door Lock, Attribute: AliroSupportedBLEUWBProtocolVersions, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: Door Lock, Attribute: AliroBLEAdvertisingVersion, Privilege: administer */ \ chip::Access::Privilege::kManage, /* Cluster: Wi-Fi Network Management, Attribute: PassphraseSurrogate, Privilege: manage */ \ - chip::Access::Privilege::kManage, /* Cluster: Thread Network Directory, Attribute: PreferredExtendedPanID, Privilege: manage */ \ - chip::Access::Privilege::kOperate, /* Cluster: Thread Network Directory, Attribute: ThreadNetworks, Privilege: operate */ \ chip::Access::Privilege::kAdminister, /* Cluster: Application Basic, Attribute: AllowedVendorList, Privilege: administer */ \ chip::Access::Privilege::kManage, /* Cluster: Camera AV Stream Management, Attribute: HDRModeEnabled, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Camera AV Stream Management, Attribute: NightVision, Privilege: manage */ \ @@ -681,14 +681,16 @@ 0x00000452, /* Cluster: Thread Border Router Management, Command: SetPendingDatasetRequest, Privilege: manage */ \ 0x00000453, /* Cluster: Thread Network Directory, Command: AddNetwork, Privilege: manage */ \ 0x00000453, /* Cluster: Thread Network Directory, Command: RemoveNetwork, Privilege: manage */ \ + 0x00000453, /* Cluster: Thread Network Directory, Command: GetOperationalDataset, Privilege: manage */ \ 0x00000507, /* Cluster: Media Input, Command: RenameInput, Privilege: manage */ \ 0x0000050B, /* Cluster: Audio Output, Command: RenameOutput, Privilege: manage */ \ 0x0000050E, /* Cluster: Account Login, Command: GetSetupPIN, Privilege: administer */ \ 0x0000050E, /* Cluster: Account Login, Command: Login, Privilege: administer */ \ 0x00000550, /* Cluster: Zone Management, Command: CreateTwoDCartesianZone, Privilege: manage */ \ 0x00000550, /* Cluster: Zone Management, Command: UpdateTwoDCartesianZone, Privilege: manage */ \ - 0x00000550, /* Cluster: Zone Management, Command: GetTwoDCartesianZone, Privilege: manage */ \ 0x00000550, /* Cluster: Zone Management, Command: RemoveZone, Privilege: manage */ \ + 0x00000550, /* Cluster: Zone Management, Command: CreateOrUpdateTrigger, Privilege: manage */ \ + 0x00000550, /* Cluster: Zone Management, Command: RemoveTrigger, Privilege: manage */ \ 0x00000551, /* Cluster: Camera AV Stream Management, Command: AudioStreamAllocate, Privilege: manage */ \ 0x00000551, /* Cluster: Camera AV Stream Management, Command: AudioStreamDeallocate, Privilege: manage */ \ 0x00000551, /* Cluster: Camera AV Stream Management, Command: VideoStreamAllocate, Privilege: manage */ \ @@ -826,14 +828,16 @@ 0x00000004, /* Cluster: Thread Border Router Management, Command: SetPendingDatasetRequest, Privilege: manage */ \ 0x00000000, /* Cluster: Thread Network Directory, Command: AddNetwork, Privilege: manage */ \ 0x00000001, /* Cluster: Thread Network Directory, Command: RemoveNetwork, Privilege: manage */ \ + 0x00000002, /* Cluster: Thread Network Directory, Command: GetOperationalDataset, Privilege: manage */ \ 0x00000003, /* Cluster: Media Input, Command: RenameInput, Privilege: manage */ \ 0x00000001, /* Cluster: Audio Output, Command: RenameOutput, Privilege: manage */ \ 0x00000000, /* Cluster: Account Login, Command: GetSetupPIN, Privilege: administer */ \ 0x00000002, /* Cluster: Account Login, Command: Login, Privilege: administer */ \ 0x00000000, /* Cluster: Zone Management, Command: CreateTwoDCartesianZone, Privilege: manage */ \ 0x00000002, /* Cluster: Zone Management, Command: UpdateTwoDCartesianZone, Privilege: manage */ \ - 0x00000003, /* Cluster: Zone Management, Command: GetTwoDCartesianZone, Privilege: manage */ \ - 0x00000005, /* Cluster: Zone Management, Command: RemoveZone, Privilege: manage */ \ + 0x00000003, /* Cluster: Zone Management, Command: RemoveZone, Privilege: manage */ \ + 0x00000004, /* Cluster: Zone Management, Command: CreateOrUpdateTrigger, Privilege: manage */ \ + 0x00000005, /* Cluster: Zone Management, Command: RemoveTrigger, Privilege: manage */ \ 0x00000000, /* Cluster: Camera AV Stream Management, Command: AudioStreamAllocate, Privilege: manage */ \ 0x00000002, /* Cluster: Camera AV Stream Management, Command: AudioStreamDeallocate, Privilege: manage */ \ 0x00000003, /* Cluster: Camera AV Stream Management, Command: VideoStreamAllocate, Privilege: manage */ \ @@ -971,14 +975,16 @@ chip::Access::Privilege::kManage, /* Cluster: Thread Border Router Management, Command: SetPendingDatasetRequest, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Thread Network Directory, Command: AddNetwork, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Thread Network Directory, Command: RemoveNetwork, Privilege: manage */ \ + chip::Access::Privilege::kManage, /* Cluster: Thread Network Directory, Command: GetOperationalDataset, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Media Input, Command: RenameInput, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Audio Output, Command: RenameOutput, Privilege: manage */ \ chip::Access::Privilege::kAdminister, /* Cluster: Account Login, Command: GetSetupPIN, Privilege: administer */ \ chip::Access::Privilege::kAdminister, /* Cluster: Account Login, Command: Login, Privilege: administer */ \ chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: CreateTwoDCartesianZone, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: UpdateTwoDCartesianZone, Privilege: manage */ \ - chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: GetTwoDCartesianZone, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: RemoveZone, Privilege: manage */ \ + chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: CreateOrUpdateTrigger, Privilege: manage */ \ + chip::Access::Privilege::kManage, /* Cluster: Zone Management, Command: RemoveTrigger, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Camera AV Stream Management, Command: AudioStreamAllocate, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Camera AV Stream Management, Command: AudioStreamDeallocate, Privilege: manage */ \ chip::Access::Privilege::kManage, /* Cluster: Camera AV Stream Management, Command: VideoStreamAllocate, Privilege: manage */ \ diff --git a/components/esp_matter_controller/data_model_provider/controller_data_model_provider.h b/components/esp_matter_controller/data_model_provider/controller_data_model_provider.h index 741d2867a..575f1fee0 100644 --- a/components/esp_matter_controller/data_model_provider/controller_data_model_provider.h +++ b/components/esp_matter_controller/data_model_provider/controller_data_model_provider.h @@ -20,6 +20,7 @@ #include #include #include +#include #include #include #include @@ -38,12 +39,14 @@ using chip::app::CommandHandler; using chip::app::ConcreteAttributePath; using chip::app::ConcreteClusterPath; using chip::app::ConcreteCommandPath; +using chip::app::ConcreteEventPath; using chip::app::DataModel::AcceptedCommandEntry; using chip::app::DataModel::ActionReturnStatus; using chip::app::DataModel::AttributeEntry; using chip::app::DataModel::ClusterInfo; using chip::app::DataModel::DeviceTypeEntry; using chip::app::DataModel::EndpointEntry; +using chip::app::DataModel::EventEntry; using chip::app::DataModel::InvokeRequest; using chip::app::DataModel::ListWriteOperation; using chip::app::DataModel::ReadAttributeRequest; @@ -118,6 +121,10 @@ public: return CHIP_NO_ERROR; } + CHIP_ERROR EventInfo(const ConcreteEventPath & path, EventEntry & eventInfo) override + { + return CHIP_NO_ERROR; + } void Temporary_ReportAttributeChanged(const AttributePathParams &path) override {} private: diff --git a/connectedhomeip/connectedhomeip b/connectedhomeip/connectedhomeip index d144bbbaa..320b9a6f6 160000 --- a/connectedhomeip/connectedhomeip +++ b/connectedhomeip/connectedhomeip @@ -1 +1 @@ -Subproject commit d144bbbaaef24ac255497ed907caff0bbe18ab58 +Subproject commit 320b9a6f6c49cc3877701bbdc1e631edf32b802b diff --git a/examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn b/examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn index 9eae18e67..8ba380fc1 100644 --- a/examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn +++ b/examples/common/blemesh_platform/platform/ESP32_custom/BUILD.gn @@ -46,7 +46,6 @@ declare_args() { chip_max_discovered_ip_addresses = 5 chip_use_secure_cert_dac_provider = false chip_use_esp32_ecdsa_peripheral = false - chip_enable_ethernet = false chip_enable_route_hook = false chip_memory_alloc_mode = "default" } diff --git a/examples/common/external_platform/BUILD.gn b/examples/common/external_platform/BUILD.gn index 71938513f..2841d2caa 100644 --- a/examples/common/external_platform/BUILD.gn +++ b/examples/common/external_platform/BUILD.gn @@ -39,7 +39,6 @@ declare_args() { chip_config_software_version_number = 0 chip_enable_chipoble = false chip_enable_ble_controller = false - chip_enable_ethernet = false chip_bt_nimble_enabled = false chip_bt_bluedroid_enabled = false chip_max_discovered_ip_addresses = 5 diff --git a/examples/light/sdkconfig.defaults b/examples/light/sdkconfig.defaults index 8f9a802ed..79e779662 100644 --- a/examples/light/sdkconfig.defaults +++ b/examples/light/sdkconfig.defaults @@ -137,3 +137,6 @@ CONFIG_SUPPORT_ELECTRICAL_GRID_CONDITIONS_CLUSTER=n CONFIG_SUPPORT_COMMODITY_PRICE_CLUSTER=n CONFIG_SUPPORT_METER_IDENTIFICATION_CLUSTER=n CONFIG_SUPPORT_UNIT_LOCALIZATION_CLUSTER=n +CONFIG_SUPPORT_COMMODITY_METERING_CLUSTER=n +CONFIG_SUPPORT_COMMODITY_TARIFF_CLUSTER=n +CONFIG_SUPPORT_PUSH_AV_STREAM_TRANSPORT_CLUSTER=n diff --git a/examples/pytest_esp_matter_light.py b/examples/pytest_esp_matter_light.py index 9d39b3e55..a22640d8d 100644 --- a/examples/pytest_esp_matter_light.py +++ b/examples/pytest_esp_matter_light.py @@ -271,7 +271,7 @@ def test_matter_commissioning_h2(dut:Tuple[Dut, Dut]) -> None: if len(result) != 0: assert False time.sleep(2) - command = CHIP_TOOL_EXE + ' threadborderroutermanagement set-active-dataset-request hex:' + OT_DATASET_HEXSTR + ' 1 1' + command = CHIP_TOOL_EXE + ' threadborderroutermanagement set-active-dataset-request hex:' + OT_DATASET_HEXSTR + ' 1 1 --timedInteractionTimeoutMs 2000' out_str = subprocess.getoutput(command) print(out_str) result = re.findall(r'Run command failure', str(out_str)) diff --git a/tools/ci/extended_color_light_wifi_pics_code.txt b/tools/ci/extended_color_light_wifi_pics_code.txt index 1cb421fa1..9a74ec0c8 100644 --- a/tools/ci/extended_color_light_wifi_pics_code.txt +++ b/tools/ci/extended_color_light_wifi_pics_code.txt @@ -37,6 +37,8 @@ CADMIN.M.UserInterfaceDisplay=0 CADMIN.M.AudioInterface=0 MCORE.DT_SW_COMP=0 MCORE.COM.BLE=1 +MCORE.COM.WIFI_2P4GHZ=1 +MCORE.COM.WIFI_5GHZ=0 MCORE.COM.WIFI=1 MCORE.COM.ETH=0 MCORE.COM.THR=0 @@ -327,6 +329,88 @@ CNET.C.C08.Tx=0 CNET.C.F00=0 CNET.C.F01=0 CNET.C.F02=0 +OPCREDS.S=1 +OPCREDS.C=0 +OPCREDS.S.A0000=1 +OPCREDS.S.A0001=1 +OPCREDS.S.A0002=1 +OPCREDS.S.A0003=1 +OPCREDS.S.A0004=1 +OPCREDS.S.A0005=1 +OPCREDS.S.C01.Tx=1 +OPCREDS.S.C03.Tx=1 +OPCREDS.S.C05.Tx=1 +OPCREDS.S.C08.Tx=1 +OPCREDS.S.C0e.Tx=1 +OPCREDS.S.C00.Rsp=1 +OPCREDS.S.C02.Rsp=1 +OPCREDS.S.C04.Rsp=1 +OPCREDS.S.C06.Rsp=1 +OPCREDS.S.C07.Rsp=1 +OPCREDS.S.C09.Rsp=1 +OPCREDS.S.C0a.Rsp=1 +OPCREDS.S.C0b.Rsp=1 +OPCREDS.S.C0c.Rsp=1 +OPCREDS.S.C0d.Rsp=1 +OPCREDS.C.A0000=0 +OPCREDS.C.A0001=0 +OPCREDS.C.A0002=0 +OPCREDS.C.A0003=0 +OPCREDS.C.A0004=0 +OPCREDS.C.A0005=0 +OPCREDS.C.C00.Tx=0 +OPCREDS.C.C02.Tx=0 +OPCREDS.C.C04.Tx=0 +OPCREDS.C.C06.Tx=0 +OPCREDS.C.C07.Tx=0 +OPCREDS.C.C09.Tx=0 +OPCREDS.C.C0a.Tx=0 +OPCREDS.C.C0b.Tx=0 +OPCREDS.C.C01.Rsp=0 +OPCREDS.C.C03.Rsp=0 +OPCREDS.C.C05.Rsp=0 +OPCREDS.C.C08.Rsp=0 +OTAP.S.M.DelayedActionTime=0 +OTAP.S.M.UserConsentNeeded=0 +OTAR.C.M.AnnounceOTAProvider=0 +OTAR.C.M.NotifyUpdateApplied=1 +I.S=1 +I.C=0 +I.S.A0000=1 +I.S.A0001=1 +I.S.C00.Rsp=1 +I.S.C40.Rsp=1 +I.C.C00.Tx=0 +I.C.C40.Tx=0 +LVL.S=1 +LVL.C=0 +LVL.S.A0000=1 +LVL.S.A0001=1 +LVL.S.A0002=1 +LVL.S.A0003=1 +LVL.S.A0004=0 +LVL.S.A0005=0 +LVL.S.A0006=0 +LVL.S.A000f=1 +LVL.S.A0010=0 +LVL.S.A0011=1 +LVL.S.A0012=0 +LVL.S.A0013=0 +LVL.S.A0014=0 +LVL.S.A4000=1 +LVL.S.C00.Rsp=1 +LVL.S.C01.Rsp=1 +LVL.S.C02.Rsp=1 +LVL.S.C03.Rsp=1 +LVL.S.C04.Rsp=1 +LVL.S.C05.Rsp=1 +LVL.S.C06.Rsp=1 +LVL.S.C07.Rsp=1 +LVL.S.C08.Rsp=0 +LVL.S.F00=1 +LVL.S.F01=1 +LVL.S.F02=0 +LVL.S.M.VarRate=0 CC.S=1 CC.C=0 CC.S.A0000=0 @@ -501,43 +585,6 @@ G.C.C02.Tx=0 G.C.C03.Tx=0 G.C.C04.Tx=0 G.C.C05.Tx=0 -I.S=1 -I.C=0 -I.S.A0000=1 -I.S.A0001=1 -I.S.C00.Rsp=1 -I.S.C40.Rsp=1 -I.C.C00.Tx=0 -I.C.C40.Tx=0 -LVL.S=1 -LVL.C=0 -LVL.S.A0000=1 -LVL.S.A0001=1 -LVL.S.A0002=1 -LVL.S.A0003=1 -LVL.S.A0004=0 -LVL.S.A0005=0 -LVL.S.A0006=0 -LVL.S.A000f=1 -LVL.S.A0010=0 -LVL.S.A0011=1 -LVL.S.A0012=0 -LVL.S.A0013=0 -LVL.S.A0014=0 -LVL.S.A4000=1 -LVL.S.C00.Rsp=1 -LVL.S.C01.Rsp=1 -LVL.S.C02.Rsp=1 -LVL.S.C03.Rsp=1 -LVL.S.C04.Rsp=1 -LVL.S.C05.Rsp=1 -LVL.S.C06.Rsp=1 -LVL.S.C07.Rsp=1 -LVL.S.C08.Rsp=0 -LVL.S.F00=1 -LVL.S.F01=1 -LVL.S.F02=0 -LVL.S.M.VarRate=0 OO.S=1 OO.C=0 OO.S.A0000=1