Fixes for build failure after submodule update

- components/esp_matter_ota_provider: remove undefined mStopPolling member variable
  This is inspired from https://github.com/project-chip/connectedhomeip/pull/34538
- examples/zap_light: remove the unused occupancy sensor dir from SRC_DIRS
- Remove the esp_diag_data_store dependency from components/esp-matter
This commit is contained in:
Shubham Patil
2024-10-29 14:35:15 +05:30
parent 49b4cbd80d
commit 9df17ef578
3 changed files with 1 additions and 13 deletions
-10
View File
@@ -1,10 +0,0 @@
## IDF Component Manager Manifest File
dependencies:
# This matches the dependency of esp_insights
# TODO: CON-1374
espressif/esp_diag_data_store:
version: "1.0.1"
require: public
rules:
- if: "idf_version >=5.0"
- if: "target != esp32h2"
@@ -170,7 +170,6 @@ void OtaBdxSender::HandleTransferSessionOutput(TransferSession::OutputEvent &eve
break;
case TransferSession::OutputEventType::kAckEOFReceived: {
ESP_LOGD(TAG, "Transfer completed, got AckEOF");
mStopPolling = true; // Stop polling the TransferSession only after receiving BlockAckEOF
Reset();
break;
}
@@ -205,7 +204,7 @@ void OtaBdxSender::Reset()
{
mFabricIndex.ClearValue();
mNodeId.ClearValue();
mTransfer.Reset();
ResetTransfer();
if (mExchangeCtx != nullptr) {
mExchangeCtx->Close();
mExchangeCtx = nullptr;
-1
View File
@@ -16,7 +16,6 @@ idf_component_register(SRC_DIRS "."
"${MATTER_SDK_PATH}/src/app/clusters/level-control"
"${MATTER_SDK_PATH}/src/app/clusters/localization-configuration-server"
"${MATTER_SDK_PATH}/src/app/clusters/network-commissioning"
"${MATTER_SDK_PATH}/src/app/clusters/occupancy-sensor-server"
"${MATTER_SDK_PATH}/src/app/clusters/on-off-server"
"${MATTER_SDK_PATH}/src/app/clusters/operational-credentials-server"
"${MATTER_SDK_PATH}/src/app/clusters/ota-requestor"