<?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>How to integrate the ble peripheral uart example to the beaconing mesh example?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/31071/how-to-integrate-the-ble-peripheral-uart-example-to-the-beaconing-mesh-example</link><description>I try to integrate the ble peripheral uart example and the beaconing mesh example. It build completed. But when i build and debug on nrf52 board. I have some errors about funtion &amp;quot;SVCALL(SD_BLE_CFG_SET, uint32_t, sd_ble_cfg_set(uint32_t cfg_id, ble_cfg_t</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 06 Mar 2018 10:08:53 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/31071/how-to-integrate-the-ble-peripheral-uart-example-to-the-beaconing-mesh-example" /><item><title>RE: How to integrate the ble peripheral uart example to the beaconing mesh example?</title><link>https://devzone.nordicsemi.com/thread/123005?ContentTypeID=1</link><pubDate>Tue, 06 Mar 2018 10:08:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a0b89c7a-0d0c-44b9-b4d8-a16a8900e14b</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You need to comment out the&amp;nbsp;SD_EVT_IRQHandler in nrf_mesh_sdk.c&lt;/p&gt;
&lt;p&gt;In the ble_app_uart + Mesh light example in the post I linked to,&amp;nbsp;&lt;span&gt;SD_EVT_IRQHandler is just wrapped with a #if 0 #endif&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Snippet:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#if 0
void SD_EVT_IRQHandler(void)
{
    /* Fetch SOC events. */
    uint32_t evt_id;
    while (sd_evt_get(&amp;amp;evt_id) == NRF_SUCCESS)
    {
        nrf_mesh_on_sd_evt(evt_id);
    }

    /* Fetch BLE events. */
    uint16_t evt_len = sizeof(m_ble_evt_buffer);
    while (sd_ble_evt_get(&amp;amp;m_ble_evt_buffer[0], &amp;amp;evt_len) == NRF_SUCCESS)
    {
        nrf_mesh_on_ble_evt((ble_evt_t*) &amp;amp;m_ble_evt_buffer[0]);
        evt_len = sizeof(m_ble_evt_buffer);
    }
}
#endif&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to integrate the ble peripheral uart example to the beaconing mesh example?</title><link>https://devzone.nordicsemi.com/thread/122972?ContentTypeID=1</link><pubDate>Tue, 06 Mar 2018 08:51:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1ea398cc-3a9c-4019-984e-ad819b083459</guid><dc:creator>Dinh Le</dc:creator><description>&lt;p&gt;Tks Sigurd!&lt;/p&gt;
&lt;p&gt;This problem is solved. But now i have a new problem, the beacon mesh and the ble uart use the same interrupt 2 (SWI2_EGU2_IRQHandler), so both can&amp;#39;t work at the same time. I have changed to use interrupt 3 but it doesn&amp;#39;t work.&lt;/p&gt;
&lt;p&gt;Are you have the solution for this problem??&lt;/p&gt;
&lt;p&gt;Tks again.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to integrate the ble peripheral uart example to the beaconing mesh example?</title><link>https://devzone.nordicsemi.com/thread/122964?ContentTypeID=1</link><pubDate>Tue, 06 Mar 2018 08:38:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:beaa3ea3-a824-48eb-8061-2ef92e62f81f</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;In &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/29108/how-to-add-mesh-into-nrf5-sdk-v14-1-ble-application/115531#115531"&gt;this post&lt;/a&gt;, you can find an example on how the ble_app_uart example is integrated into the Mesh&amp;nbsp;Light switch client example. So you should compare that with how you have tried to integrate ble_app_uart to the Mesh&amp;nbsp;beaconing&amp;nbsp;example.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>