Skip to content

Commit

Permalink
[Telink] Disable Wi-Fi LPM during the OTA (project-chip#35006)
Browse files Browse the repository at this point in the history
* [Telink] Add OTAImageProcessorImplWiFi.h

* [Telink] remove IPv4 temporarry debug configs
  • Loading branch information
s07641069 authored and PeterC1965 committed Aug 28, 2024
1 parent 7380cf7 commit 3e3e0a1
Show file tree
Hide file tree
Showing 3 changed files with 64 additions and 3 deletions.
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

0 comments on commit 3e3e0a1

Please sign in to comment.