File tree 2 files changed +0
-11
lines changed
2 files changed +0
-11
lines changed Original file line number Diff line number Diff line change @@ -124,13 +124,6 @@ static_library("ESP32") {
124
124
" NetworkCommissioningDriver.cpp" ,
125
125
" NetworkCommissioningDriver.h" ,
126
126
]
127
-
128
- # TODO: this is NOT ok, however we added a layering dependecy
129
- # in NetworkCommissioningDriver accessing app/InteractionModelEngine.h
130
- #
131
- # Should be removed after https://github.com/project-chip/connectedhomeip/issues/37126
132
- # is fixed
133
- deps += [ " ${ chip_root } /src/access:access_config" ]
134
127
}
135
128
136
129
if (chip_mdns == " platform" ) {
Original file line number Diff line number Diff line change 15
15
* limitations under the License.
16
16
*/
17
17
18
- #include < app/InteractionModelEngine.h> // nogncheck
19
18
#include < lib/support/CodeUtils.h>
20
19
#include < lib/support/SafeInt.h>
21
20
#include < platform/CHIPDeviceLayer.h>
@@ -459,9 +458,6 @@ void ESPWiFiDriver::OnScanWiFiNetworkDone()
459
458
460
459
void ESPWiFiDriver::OnNetworkStatusChange ()
461
460
{
462
- // This function reports the status to the data model provider, so skip it if the provider is not ready.
463
- VerifyOrReturn (app::InteractionModelEngine::GetInstance () &&
464
- app::InteractionModelEngine::GetInstance ()->GetDataModelProvider ());
465
461
Network configuredNetwork;
466
462
bool staEnabled = false , staConnected = false ;
467
463
VerifyOrReturn (ESP32Utils::IsStationEnabled (staEnabled) == CHIP_NO_ERROR);
You can’t perform that action at this time.
0 commit comments