<?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 with singlebank patch too large</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/3548/dfu-bootloader-with-singlebank-patch-too-large</link><description>I am unable to compile this to fit into the allocated bootloader space.
Has anyone been able to compile this patched version of the signlebankdfu-ble
with nrf sdk v6 so that if fits in the allocated bootloader rom space? 
 If so please share your github</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 22 Aug 2014 18:01:04 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/3548/dfu-bootloader-with-singlebank-patch-too-large" /><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12851?ContentTypeID=1</link><pubDate>Fri, 22 Aug 2014 18:01:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:465eadbb-42ba-4370-97ae-fade28a6c87d</guid><dc:creator>tim</dc:creator><description>&lt;p&gt;I will test that I can use this &lt;br /&gt;
bootloader_settings.hex&lt;br /&gt;
as described here&lt;br /&gt;
to convince the bootloader that it has an valid application&lt;br /&gt;
&lt;a href="https://devzone.nordicsemi.com/question/15081/how-to-flash-the-softdevice-the-bootloader-and-the-application-at-once/"&gt;devzone.nordicsemi.com/.../&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12850?ContentTypeID=1</link><pubDate>Fri, 22 Aug 2014 02:20:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:10553e5b-7ab1-4de1-b691-611d47f5963a</guid><dc:creator>Nikita</dc:creator><description>&lt;p&gt;Read this: &lt;a href="https://devzone.nordicsemi.com/question/14988/cannot-init-the-m_boot_settings-in-s110-70-bootloader/?answer=15146#post-id-15146"&gt;devzone.nordicsemi.com/.../&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12849?ContentTypeID=1</link><pubDate>Thu, 21 Aug 2014 01:27:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:88ca22b5-a06d-463c-9044-5729a7a9d0b6</guid><dc:creator>tim</dc:creator><description>&lt;p&gt;Please see for the bootloader migrated to v6&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;&lt;a href="https://github.com/tdwebste/nRF51-SingleBankDFU-BLE/tree/master_v6"&gt;github.com/.../master_v6&lt;/a&gt; 
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;However the following change to enabling installing a bootable application using nrfjprog causes the bootloader to exceed the size allowed.&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;bootloader_util_arm.c

-uint8_t  m_boot_settings[CODE_PAGE_SIZE] __attribute__((at(BOOTLOADER_SETTINGS_ADDRESS))) __attribute__((used));          
-uint32_t m_uicr_bootloader_start_address __attribute__((at(NRF_UICR_BOOT_START_ADDRESS))) = BOOTLOADER_REGION_START;      
+const uint8_t  m_boot_settings[CODE_PAGE_SIZE] __attribute__((at(BOOTLOADER_SETTINGS_ADDRESS))) __attribute__((used)) = {BANK_VALID_APP};       
+const uint32_t m_uicr_bootloader_start_address __attribute__((at(NRF_UICR_BOOT_START_ADDRESS))) = BOOTLOADER_REGION_START;    
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;To see the change compare branch master_v6 and branch jtag_bootable_v6&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12848?ContentTypeID=1</link><pubDate>Thu, 21 Aug 2014 01:24:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:178deffe-c78c-45ad-a2fc-6b8678c973d0</guid><dc:creator>tim</dc:creator><description>&lt;p&gt;I have also uploaded another branch pin_bypass which
advertise for 60s
bonds for 5mins
or bypasses the dfu and directly launches the application if a pin is sensed low.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12847?ContentTypeID=1</link><pubDate>Wed, 20 Aug 2014 20:41:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b53eb1df-52cb-4ac1-a9bf-d7d4d3a1ecb3</guid><dc:creator>tim</dc:creator><description>&lt;p&gt;I did my migration from scratch&lt;br /&gt;
please see&lt;br /&gt;
&lt;code&gt;
&lt;a href="https://github.com/tdwebste/nRF51-SingleBankDFU-BLE/tree/master_v6"&gt;github.com/.../master_v6&lt;/a&gt;
&lt;/code&gt;
&lt;br /&gt;
This compiles into the bootloader rom space.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dfu bootloader with singlebank patch too large</title><link>https://devzone.nordicsemi.com/thread/12846?ContentTypeID=1</link><pubDate>Wed, 20 Aug 2014 14:28:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:39d2a6d6-da85-445a-8605-c4874bc106e5</guid><dc:creator>Nikita</dc:creator><description>&lt;p&gt;Attach the project with your changes so I can check it.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>