LinkMargin availibility

Hi,

we are currently developing our product using nRF5 SDK for Thread and Zigbee v4.1.0 (Release Date: Week 18, 2020). We would like to implement the link margin which is available in the latest OpenThread release. But it seems this feature is not available in our SDK version. So my questions are:

Which release of OpenThread is inside nRF5 SDK for Thread and Zigbee v4.1.0?

Is it possible to use link margin in some way?

Do we have to make an update to achieve this?

How about the nRF Connect? To which OpenThread version is it linked? Is it possible to use nRFConnect? Is it possible to upgrade from nRF5 SDK to nRF Connect?

Parents Reply
  • Hi,

    how can I extract the mLqi? I can not see any function to get this value. I only see that it is inside structot_thread_link_info. Also there is no function to get this. What we tried is this:

    otError error;
    otRouterInfo *link_quality;
    error = otThreadGetParentInfo(COMWIRELESS_ot_instance, link_quality);
    ASSERT(error == OT_ERROR_NONE);
    link_U8 = (link_quality->mLinkQualityIn);

    and this:

    S8 *Rssi_S8;
    otError error;
    error = otThreadGetParentLastRssi(COMWIRELESS_ot_instance,Rssi_S8);

    Both resulting in blocking the joining process. Also the debugger behaves weird and stops in thread_api.cpp (only in disassembly).

Children
No Data
Related