<?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>DFU bootloader doesn&amp;#39;t load the my application</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/28427/dfu-bootloader-doesn-t-load-the-my-application</link><description>I loaded the bootloader on the device and it always advertises as DfuTarg even after loading a application that simply blinks an LED. It doesn&amp;#39;t seem to switch to the application after uploading the DFU zip from my phone. 
 I followed these instructions</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 18 Dec 2017 15:55:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/28427/dfu-bootloader-doesn-t-load-the-my-application" /><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112256?ContentTypeID=1</link><pubDate>Mon, 18 Dec 2017 15:55:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b8e4aca9-897b-4240-bb0e-39cd573c5793</guid><dc:creator>noe</dc:creator><description>&lt;p&gt;That helped me so much!! Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112254?ContentTypeID=1</link><pubDate>Fri, 31 Mar 2017 14:50:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3d76e873-e1cd-4adf-930e-45230f85a61e</guid><dc:creator>ypearson</dc:creator><description>&lt;p&gt;Thank you for the response=) I&amp;#39;ll look at the link in detail.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112255?ContentTypeID=1</link><pubDate>Fri, 31 Mar 2017 07:35:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a967c72e-bc1f-4c0c-9121-8a562891030c</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi,
I&amp;#39;m glad that you found the issue. If you want to enter DFU bootloader without a button you should try the buttonless example. It will write to s_dfu_settings.enter_buttonless_dfu to set it to 1 and then trigger a reset to enter bootloader.  Please have a look at the example &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v12.2.0/ble_sdk_app_buttonless_dfu.html?cp=4_0_1_4_2_2_22"&gt;here&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112253?ContentTypeID=1</link><pubDate>Thu, 30 Mar 2017 17:04:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:af837742-a8bb-4cd1-9dc0-024f2b1a5628</guid><dc:creator>ypearson</dc:creator><description>&lt;p&gt;The GPIO 16 that is being held low is what is causing the app from running. I removed the GPIO check and now the app runs, but I can&amp;#39;t use the DFU anymore. I&amp;#39;m using a custom PCB without a button.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;__WEAK bool nrf_dfu_enter_check(void){

 if (nrf_gpio_pin_read(BOOTLOADER_BUTTON) == 0)
{
    return true;
}

if (s_dfu_settings.enter_buttonless_dfu == 1)
{
    s_dfu_settings.enter_buttonless_dfu = 0;
    APP_ERROR_CHECK(nrf_dfu_settings_write(NULL));
    return true;
}
return false;
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112250?ContentTypeID=1</link><pubDate>Thu, 30 Mar 2017 15:58:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cfa0bd67-0ada-478f-9352-cfb26ca3575e</guid><dc:creator>ypearson</dc:creator><description>&lt;p&gt;I&amp;#39;m going to update my post, need to make sure I re-add the correct keys&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112252?ContentTypeID=1</link><pubDate>Thu, 30 Mar 2017 12:53:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6d601cc2-b2a1-45f9-b9ce-f2c0c3c1c650</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Does the blinky work with the softdevice S132 ? Or it works as a stand alone application without softdevice ?&lt;/p&gt;
&lt;p&gt;Could you provide the .zip file you used, the private and public key you generated and the bootloader you generated ?
Please set your bootloader in debug mode and step into the code and put a breakpoint inside nrf_dfu_init() in nrf_dfu.c. We have a function called nrf_dfu_app_is_valid() to check if there is a valid application. Please check the return value of nrf_dfu_app_is_valid().&lt;/p&gt;
&lt;p&gt;Please try to test with unmodified bootloader and an image of an BLE example in the SDK.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: DFU bootloader doesn't load the my application</title><link>https://devzone.nordicsemi.com/thread/112251?ContentTypeID=1</link><pubDate>Wed, 29 Mar 2017 21:07:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:29fe5a64-5bf2-4463-9f53-2e0fdf7805d0</guid><dc:creator>ypearson</dc:creator><description>&lt;p&gt;It seems that the code doesn&amp;#39;t pass this line:
ret_val = nrf_bootloader_init();&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>