Skip to content

Commit 5ce6d67

Browse files
committed
adding the remove services to get rid of the matter multicast service
1 parent d9ccb4b commit 5ce6d67

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

examples/platform/silabs/BaseApplication.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -803,8 +803,8 @@ void BaseApplication::ScheduleFactoryReset()
803803
Provision::Manager::GetInstance().SetProvisionRequired(true);
804804
}
805805
#if SL_WIFI
806-
// Delete all fabrics and clear wifi provision.
807-
chip::Server::GetInstance().GetFabricTable().DeleteAllFabrics();
806+
// Removing the matter services on factory reset
807+
chip::Dnssd::ServiceAdvertiser::Instance().RemoveServices();
808808
#endif
809809
PlatformMgr().HandleServerShuttingDown(); // HandleServerShuttingDown calls OnShutdown() which is only implemented for the
810810
// basic information cluster it seems. And triggers and Event flush, which is not

src/platform/silabs/ConfigurationManagerImpl.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -294,6 +294,8 @@ void ConfigurationManagerImpl::DoFactoryReset(intptr_t arg)
294294
{
295295
ChipLogError(DeviceLayer, "wfx_sta_discon() failed: %lx", status);
296296
}
297+
ChipLogProgress(DeviceLayer, "Clearing WiFi provision");
298+
wfx_clear_wifi_provision();
297299
#endif // CHIP_DEVICE_CONFIG_ENABLE_WIFI_STATION
298300

299301
// Restart the system.

0 commit comments

Comments
 (0)