<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://devzone.nordicsemi.com/cfs-file/__key/system/syndication/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>BLE mesh SeqAuth</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/36874/ble-mesh-seqauth</link><description>In the Lower transport layer, segmentation will be carried out. The concept of a place is not very clear. Can you help me? 
 SeqAuth = IV Index + first segment SEQ = 56bit, SeqZero is the least significant 13bits of the SeqAuth. 
 When SEQ = 0x647262</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 09 Aug 2018 10:12:51 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/36874/ble-mesh-seqauth" /><item><title>RE: BLE mesh SeqAuth</title><link>https://devzone.nordicsemi.com/thread/143528?ContentTypeID=1</link><pubDate>Thu, 09 Aug 2018 10:12:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4b0c0148-98fa-4c5b-850a-eacc6912cbcc</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;sorry for the late reply,&lt;/p&gt;
&lt;p&gt;Isn&amp;#39;t this the function that calculates the sequence number.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static uint32_t seqauth_sequence_number_get(uint32_t seqnum, uint16_t seqzero)
{
    if ((seqnum &amp;amp; TRANSPORT_SAR_SEQZERO_MASK) &amp;lt; seqzero)
    {
        return ((seqnum - ((seqnum &amp;amp; TRANSPORT_SAR_SEQZERO_MASK) - seqzero) - (TRANSPORT_SAR_SEQZERO_MASK + 1)));
    }
    else
    {
        return ((seqnum - ((seqnum &amp;amp; TRANSPORT_SAR_SEQZERO_MASK) - seqzero)));
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;I am not sure of the internals of&amp;nbsp;segmentation&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>