Todor Dimitrov
Todor Dimitrov
The calls to `void BaseApplication::StopStatusLEDTimer()` and `void BaseApplication::StartStatusLEDTimer()` should be done on the app instance, e.g. `AppTask::GetAppTask().StartStatusLEDTimer()`. https://github.com/project-chip/connectedhomeip/blob/63ad9f780899b41db2544f44b34ced525c54384c/examples/platform/efr32/BaseApplication.cpp#L257 https://github.com/project-chip/connectedhomeip/blob/63ad9f780899b41db2544f44b34ced525c54384c/examples/platform/efr32/BaseApplication.cpp#L273 https://github.com/project-chip/connectedhomeip/blob/63ad9f780899b41db2544f44b34ced525c54384c/examples/platform/efr32/BaseApplication.cpp#L406
We have an OTBR setup, where multicast routing works (testing with Matter). What we've observed is that after restarting the OTBR, the messages are not delivered to the nodes until...
Is there a minimal Linux kernel version required for running the OTBR. We have one system in particular, which seems to have problems when shutting down the OTBR daemon. The...
It seems that the file discovery performed by the VS Code C++ Tools extension hangs and consumes a lot of CPU time due to the recursions inside the `examples` folder....
Shouldn't this read `ResetSharedConnection` instead of `StartSharedConnection`: https://github.com/project-chip/connectedhomeip/blob/49d7b42d0e732ae63fb0efc8c474f487633da46d/src/platform/Darwin/DnssdHostNameRegistrar.cpp#L275 The callback will be invoked on interface changes and will fail since the connection already exists.
Pairing an EFR32 sleepy end device is not possible, the controller cannot find the operational device. This has been tested with a custom Linux controller as well as with the...
The `DeviceCommissioner::ReleaseCommissioneeDevice` call inside `DeviceCommissioner::CleanupCommissioning` will set the `mDeviceBeingCommissioned` to a `nullptr`. https://github.com/project-chip/connectedhomeip/blob/ee04eb687a88824583f1afeadd9164c8656648e6/src/controller/CHIPDeviceController.cpp#L585 Then the subsequent call to `DeviceCommissioner::CommissioningStageComplete` will crash with an EXC_BAD_ACCESS since the nodeId is being retrieved:...
The size of the stripped LXC executables (e.g. `lxc-start`) is too big: ``` /lxc-5.0.1/build/src/lxc/tools$ ls -la lxc-start -rwxr-xr-x 1 ana ana 1439744 Jan 4 17:06 lxc-start ``` For LXC 4.0.12,...