Todor Dimitrov
Todor Dimitrov
Here are the logs when stopping the OTBR: ``` Aug 3 11:07:31 user.info otbr-agent[510]: 00:01:38.371 [I] MeshForwarder-: Received IPv6 UDP msg, len:91, chksum:cb66, ecn:no, from:0211fa931fa268db, sec:no, prio:net, rss:-37.0 Aug 3...
Interesting, related to #1459.
This EFR32 output seems weird (Device Role: DETACHED): ``` [DL] OpenThread State Changed (Flags: 0x1117d11d) [DL] Device Role: DETACHED [DL] Network Name: OpenThread-858c [DL] PAN Id: 0x858C [DL] Extended PAN...
This is the OTBR commit we are currently using: 1a424f3445ea2a7cf37ef8add3886cdfdd607472
I was also able to have the SED join the Thread network, but the CASE establishment never completed successfully.
Thanks for the explanation, I think the problem is not related to the SDK then. We are using a custom AutoCommissioner, which probably has to be aligned with the latest...
Doesn't it make more sense to have the code the other way around, e.g. ``` // Send the callbacks, we're done. CommissioningStageComplete(CHIP_NO_ERROR); SendCommissioningCompleteCallbacks(nodeId, commissioningCompletionStatus); CommissioneeDeviceProxy * commissionee = FindCommissioneeDevice(nodeId); if...
Most of the code should be inside the shared library, the executables are linked against it. ``` public_programs += executable( 'lxc-' + cmd, files('lxc_' + cmd + '.c') + tools_common_sources,...
I finally found some time to work on this issue. It seems that the problem is related to the Meson project setup: - the shared lib does not export any...
I've created a script to export only the symbols being used: ``` #!/bin/sh for symbol in $(ninja -C out/ | grep "undefined reference to" | awk '{print $5}' | sort...