@@ -103,13 +103,12 @@ app::Clusters::NetworkCommissioning::Instance
103
103
sWiFiNetworkCommissioningInstance (0 /* Endpoint Id */ , &(NetworkCommissioning::SlWiFiDriver::GetInstance()));
104
104
#endif /* SL_WIFI */
105
105
106
- # if !(defined(CHIP_DEVICE_CONFIG_ENABLE_SED) && CHIP_DEVICE_CONFIG_ENABLE_SED)
106
+ bool sIsProvisioned = false ;
107
107
108
- bool sIsProvisioned = false ;
108
+ # if !(defined(CHIP_DEVICE_CONFIG_ENABLE_SED) && CHIP_DEVICE_CONFIG_ENABLE_SED)
109
109
bool sIsEnabled = false ;
110
110
bool sIsAttached = false ;
111
111
bool sHaveBLEConnections = false ;
112
-
113
112
#endif // CHIP_DEVICE_CONFIG_ENABLE_SED
114
113
115
114
EmberAfIdentifyEffectIdentifier sIdentifyEffect = EMBER_ZCL_IDENTIFY_EFFECT_IDENTIFIER_STOP_EFFECT;
@@ -236,6 +235,9 @@ CHIP_ERROR BaseApplication::Init(Identify * identifyObj)
236
235
SILABS_LOG (" Getting QR code failed!" );
237
236
}
238
237
238
+ PlatformMgr ().AddEventHandler (OnPlatformEvent, 0 );
239
+ sIsProvisioned = ConnectivityMgr ().IsThreadProvisioned ();
240
+
239
241
return err;
240
242
}
241
243
@@ -287,7 +289,7 @@ void BaseApplication::FunctionEventHandler(AppEvent * aEvent)
287
289
StopStatusLEDTimer ();
288
290
#endif // CHIP_DEVICE_CONFIG_ENABLE_SED
289
291
290
- chip::Server::GetInstance (). ScheduleFactoryReset ();
292
+ ScheduleFactoryReset ();
291
293
}
292
294
}
293
295
@@ -307,9 +309,8 @@ void BaseApplication::LightEventHandler()
307
309
sIsAttached = ConnectivityMgr ().IsWiFiStationConnected ();
308
310
#endif /* SL_WIFI */
309
311
#if CHIP_ENABLE_OPENTHREAD
310
- sIsProvisioned = ConnectivityMgr ().IsThreadProvisioned ();
311
- sIsEnabled = ConnectivityMgr ().IsThreadEnabled ();
312
- sIsAttached = ConnectivityMgr ().IsThreadAttached ();
312
+ sIsEnabled = ConnectivityMgr ().IsThreadEnabled ();
313
+ sIsAttached = ConnectivityMgr ().IsThreadAttached ();
313
314
#endif /* CHIP_ENABLE_OPENTHREAD */
314
315
sHaveBLEConnections = (ConnectivityMgr ().NumBLEConnections () != 0 );
315
316
PlatformMgr ().UnlockChipStack ();
@@ -427,7 +428,7 @@ void BaseApplication::ButtonHandler(AppEvent * aEvent)
427
428
#ifdef SL_WIFI
428
429
if (!ConnectivityMgr ().IsWiFiStationProvisioned ())
429
430
#else
430
- if (!ConnectivityMgr (). IsThreadProvisioned () )
431
+ if (!sIsProvisioned )
431
432
#endif /* !SL_WIFI */
432
433
{
433
434
// Open Basic CommissioningWindow. Will start BLE advertisements
@@ -570,3 +571,19 @@ void BaseApplication::DispatchEvent(AppEvent * aEvent)
570
571
SILABS_LOG (" Event received with no handler. Dropping event." );
571
572
}
572
573
}
574
+
575
+ void BaseApplication::ScheduleFactoryReset ()
576
+ {
577
+ PlatformMgr ().ScheduleWork ([](intptr_t ) {
578
+ PlatformMgr ().HandleServerShuttingDown ();
579
+ ConfigurationMgr ().InitiateFactoryReset ();
580
+ });
581
+ }
582
+
583
+ void BaseApplication::OnPlatformEvent (const ChipDeviceEvent * event, intptr_t )
584
+ {
585
+ if (event->Type == DeviceEventType::kServiceProvisioningChange )
586
+ {
587
+ sIsProvisioned = event->ServiceProvisioningChange .IsServiceProvisioned ;
588
+ }
589
+ }
0 commit comments