<?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 create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/13120/how-to-create-combined-image-after-dfu</link><description>Dear all, 
 Our application is made of
Chip nRF518122 + SDK 11.0.0 + DFU Bootloader + BLE application (gcc complied) loaded with nRF Toolbox over the air 
 we are putting our project into production
and need to generate a combined image file for pre</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 23 Oct 2019 20:33:59 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/13120/how-to-create-combined-image-after-dfu" /><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/216461?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2019 20:33:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:47467ff9-0c67-463a-b2e8-2e4f4f1e6220</guid><dc:creator>Tim Adu</dc:creator><description>&lt;p&gt;This ticket is closed. You should probably make a new ticket to improve your chances of getting a quick respose :) I&amp;#39;d be happy to help. I managed to figure out how to make mine work.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/216458?ContentTypeID=1</link><pubDate>Wed, 23 Oct 2019 19:58:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8eb5f98e-0009-48a0-948f-71f246043816</guid><dc:creator>Spirit</dc:creator><description>&lt;p&gt;Nordic guys!&lt;/p&gt;
&lt;p&gt;1+ for this question.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/215670?ContentTypeID=1</link><pubDate>Fri, 18 Oct 2019 10:50:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d37a8867-51f9-4fa2-bff7-f5469f2f1a52</guid><dc:creator>Tim Adu</dc:creator><description>&lt;p&gt;Would this correspond to setting&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt; uint8_t m_dfu_settings_buffer[BOOTLOADER_SETTINGS_PAGE_SIZE]
        __attribute__((section(&amp;quot;.bootloader_settings_page&amp;quot;)))
        __attribute__((used))&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;to&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;uint8_t m_dfu_settings_buffer[BOOTLOADER_SETTINGS_PAGE_SIZE]
        __attribute__((section(&amp;quot;.bootloader_settings_page&amp;quot;)))
        __attribute__((used)) = {NRF_DFU_BANK_VALID_APP};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;in nrf_dfu_settings.c? (I&amp;#39;m using SDK 15.2.0 and facing the exact same problem)&lt;/p&gt;
&lt;p&gt;-Tim&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/50027?ContentTypeID=1</link><pubDate>Wed, 13 Apr 2016 06:39:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b9682693-d6ad-4fee-a8e1-887f8ecd82b4</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;In order to flash a combined SoftDevice, Bootloader and Application, where the device jumps to the application without having to perform a OTA update, you have to set the &lt;code&gt;BANK_VALID_APP&lt;/code&gt; flag in &lt;code&gt;bootloader_settings.c&lt;/code&gt;, i.e. change the line&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;uint8_t  m_boot_settings[CODE_PAGE_SIZE]    __attribute__((at(BOOTLOADER_SETTINGS_ADDRESS))) __attribute__((used));   
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;to the following&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;uint8_t  m_boot_settings[CODE_PAGE_SIZE]    __attribute__((at(BOOTLOADER_SETTINGS_ADDRESS))) __attribute__((used)) = {BANK_VALID_APP};
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;-Bjørn&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/50026?ContentTypeID=1</link><pubDate>Tue, 12 Apr 2016 17:03:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:12f314db-4b28-4724-994a-2adf46ce0d4b</guid><dc:creator>sing</dc:creator><description>&lt;p&gt;Yes. I think so. And I wonder if there may be more settings need to be accounted for. If updating the settings is complicated, an alternative way would be modifying the bootloader to by-pass the app checking.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to create combined image after DFU ?</title><link>https://devzone.nordicsemi.com/thread/50025?ContentTypeID=1</link><pubDate>Tue, 12 Apr 2016 09:14:11 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:43d7d20e-39f6-4b3f-acc9-22e02d1fcb48</guid><dc:creator>bjorn-spockeli</dc:creator><description>&lt;p&gt;Is the custom settings you are referring to setting the &lt;code&gt;BANK_VALID_APP&lt;/code&gt; flag on the bootloader setttings flash page?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>