<?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>Mesh 3.2: LPN GET and receiving STATUS</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/52117/mesh-3-2-lpn-get-and-receiving-status</link><description>Based on the experimental_lpn example if have ported at application (light switch) to work as a low power node. 
 Everything work fine on the lpn node where i use the generic_onoff_client to send button on/off to a server node. 
 I now want to &amp;#39;request</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 17 Sep 2019 15:29:34 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/52117/mesh-3-2-lpn-get-and-receiving-status" /><item><title>RE: Mesh 3.2: LPN GET and receiving STATUS</title><link>https://devzone.nordicsemi.com/thread/210190?ContentTypeID=1</link><pubDate>Tue, 17 Sep 2019 15:29:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c03d1691-9b6e-4679-a98b-92090eebcccb</guid><dc:creator>tesc</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In order for a node using the Low Power feature to consistently receive messages, it must establish a friendship with a node with the Friend feature, yes.&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Terje&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh 3.2: LPN GET and receiving STATUS</title><link>https://devzone.nordicsemi.com/thread/209788?ContentTypeID=1</link><pubDate>Mon, 16 Sep 2019 10:13:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bd7464ef-159a-4d39-bfbd-4818e6326339</guid><dc:creator>Jesper W.</dc:creator><description>&lt;p&gt;Did I missed that at LPN can only received STATUS etc after establishing a friendship with a server ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Mesh 3.2: LPN GET and receiving STATUS</title><link>https://devzone.nordicsemi.com/thread/209597?ContentTypeID=1</link><pubDate>Fri, 13 Sep 2019 11:19:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d7efefec-b154-4e05-886f-0e4c18f87e96</guid><dc:creator>Jesper W.</dc:creator><description>&lt;p&gt;I have also made these changes to the mesh-init and main loop .. allowing me to use APP_SCHED (Event Scheduler) .&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;void mesh_init(void)
{
    mesh_stack_init_params_t init_params =
    {
        /* Run application and mesh event handling in main loop using app_scheduler:
           When using the APP_SCHED to post event, the irq_priority must be changed from 
           NRF_MESH_IRQ_PRIORITY_LOWEST to NRF_MESH_IRQ_PRIORITY_THREAD in order to avoid 
           mesh app assert. */
        .core.irq_priority       = NRF_MESH_IRQ_PRIORITY_THREAD, //NRF_MESH_IRQ_PRIORITY_LOWEST,
        .core.lfclksrc           = DEV_BOARD_LF_CLK_CFG,
        .core.p_uuid             = NULL,
        .models.models_init_cb   = models_init_cb,
        .models.config_server_cb = NULL //config_server_evt_cb
    };
    ERROR_CHECK(mesh_stack_init(&amp;amp;init_params, &amp;amp;m_device_provisioned));

    __LOG(LOG_SRC_APP, LOG_LEVEL_INFO, &amp;quot;m_device_provisioned:%d\n&amp;quot;,m_device_provisioned);

    /* Register event handler to receive LPN and friendship events. */
    nrf_mesh_evt_handler_add(&amp;amp;m_mesh_core_event_handler);
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;    for (;;)
    {
        app_sched_execute();
        bool done = nrf_mesh_process();
        if (done)
        {
            sd_app_evt_wait();
        }
    }&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>