<?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>buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/34964/buttonless-dfu-integration-in-ble-app-uart-example-compiling-problem</link><description>I&amp;#39;m trying to integrate buttonless DFU in BLE app uart example. I added the file: ble_dfu.c, ble_dfu_bonded.c, ble_dfu_unbonded.c in the project. I added the following folder: 
 C:\Nordic_Semi\nRF5_SDK_15.0.0_a53641a\components\libraries\svc 
 C:\Nordic_Semi</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 14 Jan 2019 13:15:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/34964/buttonless-dfu-integration-in-ble-app-uart-example-compiling-problem" /><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/165462?ContentTypeID=1</link><pubDate>Mon, 14 Jan 2019 13:15:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a4a471e9-4504-43e1-ad90-e9aa6c9c46e4</guid><dc:creator>Alex_Golubev</dc:creator><description>&lt;p&gt;&lt;span&gt;I get error.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/5736.IAR_5F00_error_5F00_1.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/1464.IAR-error_5F00_2.png" /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;What do I do wrong?&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/154224?ContentTypeID=1</link><pubDate>Wed, 24 Oct 2018 08:40:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6902241c-1396-4704-b172-be27bf8fde5a</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;In main.c you have to add the service for buttonless dfu:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void services_init(void)
{
    uint32_t           err_code;
    ble_nus_init_t     nus_init;
    nrf_ble_qwr_init_t qwr_init = {0};
    ble_dfu_buttonless_init_t dfus_init = {0};
    ble_dis_init_t     dis_init;

    // Initialize Queued Write Module.
    qwr_init.error_handler = nrf_qwr_error_handler;

    err_code = nrf_ble_qwr_init(&amp;amp;m_qwr, &amp;amp;qwr_init);
    APP_ERROR_CHECK(err_code);

    // Initialize NUS.
    memset(&amp;amp;nus_init, 0, sizeof(nus_init));

    nus_init.data_handler = nus_data_handler;

    err_code = ble_nus_init(&amp;amp;m_nus, &amp;amp;nus_init);
    APP_ERROR_CHECK(err_code);

#if defined(NDEBUG)
//***** buttonless DFU *****
    // Initialize the async SVCI interface to bootloader.
    err_code = ble_dfu_buttonless_async_svci_init();
    APP_ERROR_CHECK(err_code);

    dfus_init.evt_handler = ble_dfu_evt_handler;

    err_code = ble_dfu_buttonless_init(&amp;amp;dfus_init);
    APP_ERROR_CHECK(err_code);

//**************************
#endif

//************ Battery Service *********************
    ble_bas_init_t bas_init;
    memset(&amp;amp;bas_init, 0, sizeof(bas_init));
    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;bas_init.battery_level_char_attr_md.cccd_write_perm);
    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;bas_init.battery_level_char_attr_md.read_perm);
    BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&amp;amp;bas_init.battery_level_char_attr_md.write_perm);

    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;bas_init.battery_level_report_read_perm);

    bas_init.evt_handler = NULL;
    bas_init.support_notification = true;
    bas_init.p_report_ref = NULL;
    bas_init.initial_batt_level = 100;

    err_code = ble_bas_init(&amp;amp;m_bas,&amp;amp;bas_init);
    APP_ERROR_CHECK(err_code);
 //****************************************************

 //********** Initialize Device Information Service *************
    memset(&amp;amp;dis_init, 0, sizeof(dis_init));

    ble_srv_ascii_to_utf8(&amp;amp;dis_init.manufact_name_str, (char *)MANUFACTURER_NAME);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.fw_rev_str, (char *)SW_REV);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.sw_rev_str, (char *)SW_REV);

    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;dis_init.dis_attr_md.read_perm);
    BLE_GAP_CONN_SEC_MODE_SET_NO_ACCESS(&amp;amp;dis_init.dis_attr_md.write_perm);

    err_code = ble_dis_init(&amp;amp;dis_init);
    APP_ERROR_CHECK(err_code);
 //**************************************************************

}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;What is the specific problem?&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/154165?ContentTypeID=1</link><pubDate>Tue, 23 Oct 2018 16:01:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e43cbd6-8125-45d6-88c2-b037775ba5a8</guid><dc:creator>Rajneesh</dc:creator><description>&lt;p&gt;Hi Mdido&lt;/p&gt;
&lt;p&gt;Can I have your integrated main.c and&amp;nbsp;sdk_config.h&amp;nbsp;&amp;nbsp;file?&lt;/p&gt;
&lt;p&gt;I have tried it so many times but still it is not working.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134397?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 14:35:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d37c0098-f651-4dd2-b4c4-b12e894e6f9b</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;&lt;span id="result_box" lang="en"&gt;&lt;span&gt;I have increased memory and it seems to work.&lt;/span&gt; &lt;span&gt;Wow! What a hard job!&lt;/span&gt; &lt;span&gt;I suggest you to make a guide or an application note &lt;span style="background-color:transparent;color:#11171a;float:none;font-family:&amp;#39;GT Eesti&amp;#39;,&amp;#39;Helvetica&amp;#39;,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:21px;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;on how to add the DFU service to a custom application&lt;/span&gt;..&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en"&gt;&lt;span&gt;Thanks for the support&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en"&gt;&lt;span&gt;Best regards&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134396?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 14:34:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f0af9fb7-bb7e-4626-9e33-cc434379dbba</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;That is stated in the&amp;nbsp;p_app_ram_start variable, or more correctly in the variable that&amp;nbsp;p_app_ram_start points to, i.e. *p_app_ram_start . If you add p_app_ram_start to watch and then set a breakpoint after&amp;nbsp;sd_ble_enable() you should be able to see which value&amp;nbsp;points top_app_ram_start.&lt;/p&gt;
&lt;p&gt;Take a look at &lt;a href="https://www.youtube.com/watch?v=o_H1USWAM18&amp;amp;t=256s"&gt;this&amp;nbsp;&lt;/a&gt;&amp;nbsp;video, it explains how to modify the build settings, including the memory settings.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134392?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 14:04:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:41efbd1c-434f-4ea8-b9ed-e4bc5820b2cd</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;&lt;span id="result_box" lang="en"&gt;&lt;span&gt;Ok, but please could you tell me how to make it and how much memory to allocate.?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span lang="en"&gt;&lt;span&gt;Thank you for the support&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134386?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 13:41:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f1203691-1e37-47e9-a438-539d993891b6</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Yes, you need to increase the RAM allocated to the SoftDevice as stated in the RTT log output.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134385?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 13:33:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d7371163-d9be-470c-8b4b-f4811073b0d9</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;I changed 1 in 2, but now in function:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;ret_code_t nrf_sdh_ble_enable(uint32_t * const p_app_ram_start)
{
    // Start of RAM, obtained from linker symbol.
    uint32_t const app_ram_start_link = *p_app_ram_start;

    ret_code_t ret_code = sd_ble_enable(p_app_ram_start);
    if (*p_app_ram_start &amp;gt; app_ram_start_link)
    {
        NRF_LOG_WARNING(&amp;quot;Insufficient RAM allocated for the SoftDevice.&amp;quot;);

        NRF_LOG_WARNING(&amp;quot;Change the RAM start location from 0x%x to 0x%x.&amp;quot;,
                        app_ram_start_link, *p_app_ram_start);
        NRF_LOG_WARNING(&amp;quot;Maximum RAM size for application is 0x%x.&amp;quot;,
                        ram_end_address_get() - (*p_app_ram_start));
    }
    else
    {
        NRF_LOG_DEBUG(&amp;quot;RAM starts at 0x%x&amp;quot;, app_ram_start_link);
        if (*p_app_ram_start != app_ram_start_link)
        {
            NRF_LOG_DEBUG(&amp;quot;RAM start location can be adjusted to 0x%x.&amp;quot;, *p_app_ram_start);

            NRF_LOG_DEBUG(&amp;quot;RAM size for application can be adjusted to 0x%x.&amp;quot;,
                          ram_end_address_get() - (*p_app_ram_start));
        }
    }

    if (ret_code == NRF_SUCCESS)
    {
        m_stack_is_enabled = true;
    }
    else
    {
        NRF_LOG_ERROR(&amp;quot;sd_ble_enable() returned %s.&amp;quot;, nrf_strerror_get(ret_code));
    }

    return ret_code;
}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;the the execution &lt;span class="short_text" id="result_box" lang="en"&gt;&lt;span&gt;the execution enters in the block&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; if (*p_app_ram_start &amp;gt; app_ram_start_link)&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; {&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRF_LOG_WARNING(&amp;quot;Insufficient RAM allocated for the SoftDevice.&amp;quot;);&lt;/div&gt;
&lt;div&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRF_LOG_WARNING(&amp;quot;Change the RAM start location from 0x%x to 0x%x.&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; app_ram_start_link, *p_app_ram_start);&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NRF_LOG_WARNING(&amp;quot;Maximum RAM size for application is 0x%x.&amp;quot;,&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ram_end_address_get() - (*p_app_ram_start));&lt;br /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; }&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134374?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 13:06:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:867d798c-3d30-4d82-af7e-bd01b25ded0a</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Increase the&amp;nbsp;NRF_SDH_BLE_VS_UUID_COUNT from 1 to 2 in sdk_config.h&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134370?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 12:51:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:50de1b5c-7285-43fc-a1f9-b0986fad9d69</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;I can&amp;#39;t place a breakpoint &lt;span style="background-color:transparent;color:#11171a;float:none;font-family:&amp;#39;GT Eesti&amp;#39;,&amp;#39;Helvetica&amp;#39;,Arial,sans-serif;font-size:14px;font-style:normal;font-weight:400;letter-spacing:normal;line-height:21px;text-align:left;text-decoration:none;text-indent:0px;text-transform:none;white-space:normal;"&gt;app_error_handler_bare()&lt;/span&gt;, the IDE tell me &amp;quot;no code for breakpoint&amp;quot;.&lt;/p&gt;
&lt;p&gt;In debugging I&amp;#39;ve got &amp;quot;NRF_ERROR_NO_MEM&amp;quot; form function &amp;quot;sd_ble_uuid_vs_add(&amp;amp;nordic_base_uuid, &amp;amp;m_dfu.uuid_type);&amp;quot; in &amp;quot;uint32_t ble_dfu_buttonless_init(const ble_dfu_buttonless_init_t * p_dfu_init)&amp;quot;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134340?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 11:22:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d872166-e541-48d0-83a0-cb6b2b6b7a92</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/members/mdido"&gt;mdido&lt;/a&gt;: We do not have an official guide on how to add the DFU service to a custom application.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;If you&amp;#39;re entering the&amp;nbsp;app_error_fault_handler function then there is probably a APP_ERROR_CHECK(err_code) check that is asserting. Could you place a breakpoint in&amp;nbsp;app_error_handler_bare() in app_error.c and take a look at the call stack to see which function that caused the assert?&lt;/p&gt;
&lt;p&gt;Bjørn&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134339?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 11:19:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e731008-c462-4ab4-9db7-2ad19144b2e1</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Just in case someone else runs into the same compilation issues:&amp;nbsp;&lt;/p&gt;
&lt;p&gt;As stated by &lt;a href="https://devzone.nordicsemi.com/members/mdido"&gt;mdido&lt;/a&gt; you have to add the following files to the project&amp;nbsp;&lt;/p&gt;
&lt;p&gt;ble_dfu.c&lt;br /&gt;ble_dfu_bonded.c&lt;br /&gt;ble_dfu_unbonded.c&lt;br /&gt;nrf_dfu_svci.c&lt;/p&gt;
&lt;p&gt;You have to add the following paths to&amp;nbsp;Preprocessor-&amp;gt;User include Directories&amp;nbsp; the Common build configuration&lt;br /&gt;&lt;br /&gt;../../../../../../components/libraries/bootloader&lt;br /&gt;../../../../../../components/libraries/bootloader/ble_dfu&lt;br /&gt;../../../../../../components/libraries/bootloader/dfu&lt;br /&gt;../../../../../../components/libraries/svc&lt;/p&gt;
&lt;p&gt;and lastly you need to add the following Preprocessor Defines&lt;/p&gt;
&lt;p&gt;BL_SETTINGS_ACCESS_ONLY&lt;br /&gt;NRF_DFU_SVCI_ENABLED&lt;br /&gt;NRF_DFU_TRANSPORT_BLE=1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134275?ContentTypeID=1</link><pubDate>Fri, 01 Jun 2018 07:38:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:92106ff3-be4c-4b13-956f-863dfe64078e</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;&lt;span class="" id="result_box" lang="en"&gt;&lt;span&gt;I solved the compilation problems.&lt;/span&gt;&lt;/span&gt; I changed the function &amp;quot;services_init(void)&amp;quot; of project app_uart_example in:&lt;pre class="ui-code" data-mode="text"&gt;static void services_init(void)
{
    uint32_t           err_code;
    ble_nus_init_t     nus_init;
    nrf_ble_qwr_init_t qwr_init = {0};
    ble_dfu_buttonless_init_t dfus_init = {0};

    // Initialize Queued Write Module.
    qwr_init.error_handler = nrf_qwr_error_handler;

    err_code = nrf_ble_qwr_init(&amp;amp;m_qwr, &amp;amp;qwr_init);
    APP_ERROR_CHECK(err_code);

    // Initialize NUS.
    memset(&amp;amp;nus_init, 0, sizeof(nus_init));

    nus_init.data_handler = nus_data_handler;

    err_code = ble_nus_init(&amp;amp;m_nus, &amp;amp;nus_init);
    APP_ERROR_CHECK(err_code);

//***** buttonless DFU *****

    // Initialize the async SVCI interface to bootloader.
    err_code = ble_dfu_buttonless_async_svci_init();
    APP_ERROR_CHECK(err_code);

    dfus_init.evt_handler = ble_dfu_evt_handler;

    err_code = ble_dfu_buttonless_init(&amp;amp;dfus_init);
    APP_ERROR_CHECK(err_code);

//**************************


}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;but in executio I&amp;#39;ve got error &amp;quot;&amp;nbsp;NRF_BREAKPOINT_COND;&amp;quot; in function &amp;quot;__WEAK void app_error_fault_handler(uint32_t id, uint32_t pc, uint32_t info)&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="" lang="en"&gt;&lt;span class=""&gt;&lt;span class="" id="result_box" lang="en"&gt;There are news regarding official documentation about integration&lt;/span&gt; of buttonless DFU to a custom application?&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: buttonless DFU integration in BLE app uart example: compiling problem</title><link>https://devzone.nordicsemi.com/thread/134233?ContentTypeID=1</link><pubDate>Thu, 31 May 2018 15:19:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cd52084f-c699-4ca6-a0cd-c94f7226bdb6</guid><dc:creator>mdido</dc:creator><description>&lt;p&gt;&lt;span class="" id="result_box" lang="en"&gt;&lt;span&gt;I solved the compilation problems.&lt;/span&gt; &lt;span class=""&gt;I&amp;#39;ll try the functionality in the next days.&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="" lang="en"&gt;&lt;span class=""&gt;&lt;span class="" id="result_box" lang="en"&gt;There are news regarding official documentation about integration&lt;/span&gt; of buttonless DFU to a custom application?&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>