8000 [Telink] Disable Wi-Fi LPM during the OTA by s07641069 · Pull Request #35006 · project-chip/connectedhomeip · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[Telink] Disable Wi-Fi LPM during the OTA #35006

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions config/telink/chip-module/Kconfig.defaults
Original file line number Diff line number Diff line change
Expand Up @@ -304,9 +304,6 @@ config CHIP_WIFI
select NET_IPV6_ND # enable Neighbor Discovery to handle Router Advertisements
select NET_IPV6_NBR_CACHE
select NET_STATISTICS_USER_API
# select NET_IPV4 # TODO: remove IPv4 when IPv6 will be ready (see CHIP_IPV4)
# select NET_CONFIG_NEED_IPV4
# select NET_DHCPV4

if CHIP_WIFI

Expand Down
1 change: 1 addition & 0 deletions src/platform/telink/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,7 @@ static_library("telink") {

if (chip_enable_wifi) {
sources += [
"OTAImageProcessorImplWiFi.h",
"wifi/ConnectivityManagerImplWiFi.cpp",
"wifi/ConnectivityManagerImplWiFi.h",
"wifi/TelinkWiFiDriver.cpp",
Expand Down
63 changes: 63 additions & 0 deletions src/platform/telink/OTAImageProcessorImplWiFi.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
/*
* Copyright (c) 2024 Project CHIP Authors
*
* 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.
*/

#pragma once

#include "OTAImageProcessorImpl.h"
#include "wifi/WiFiManager.h"

namespace chip {

namespace DeviceLayer {

class OTAImageProcessorImplWiFi : public OTAImageProcessorImpl
{
public:
explicit OTAImageProcessorImplWiFi(ExternalFlashManager * flashHandler = nullptr) : OTAImageProcessorImpl(flashHandler) {}

CHIP_ERROR PrepareDownload() override
{
CHIP_ERROR err = WiFiManager::Instance().SetLowPowerMode(false);
if (err == CHIP_NO_ERROR)
{
return OTAImageProcessorImpl::PrepareDownload();
}
return err;
};

CHIP_ERROR Abort() override
{
CHIP_ERROR err = OTAImageProcessorImpl::Abort();
if (err == CHIP_NO_ERROR)
{
return WiFiManager::Instance().SetLowPowerMode(true);
}
return err;
};

CHIP_ERROR Apply() override
{
CHIP_ERROR err = OTAImageProcessorImpl::Apply();
if (err == CHIP_NO_ERROR)
{
return WiFiManager::Instance().SetLowPowerMode(true);
}
return err;
};
};

} // namespace DeviceLayer
} // namespace chip
Loading
0