<?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 Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/99336/how-can-i-update-firmware-through-dfu-bootloader-and-custom-mobile-app</link><description>Dear All, 
 I am working on a Bluetooth edge device with nRF Connect Environment. we are designing a product in which mobile application and battery operated edge device both are there. I went through some Nordic blogs and videos. 
 here is my understanding</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 30 May 2023 13:40:07 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/99336/how-can-i-update-firmware-through-dfu-bootloader-and-custom-mobile-app" /><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/428188?ContentTypeID=1</link><pubDate>Tue, 30 May 2023 13:40:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4d30be8c-d569-42a8-b076-c904514bad39</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The guides you have referred to are quite old. I suggest you refer to the examples I suggested, or just do a few changes that are needed, as explained in &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/100107/fota-with-external-flash"&gt;this post&lt;/a&gt;. If it does not work, perhaps you can show all your changes and the full build log / errors? (You can post code/logs in a readable way using Insert -&amp;gt; Code)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/427749?ContentTypeID=1</link><pubDate>Fri, 26 May 2023 10:42:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0ddfcd27-d108-4044-a1b0-3a94392f3777</guid><dc:creator>Thanuha</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I found the below Nordic link for Firmware upgrade using external Flash over SPI. I have taken Peripheral_lbs example as base code.&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://github.com/simon-iversen/sdk-zephyr/tree/serial_dfu_ext_flash_hello_world/samples/hello_world"&gt;https://github.com/simon-iversen/sdk-zephyr/tree/serial_dfu_ext_flash_hello_world/samples/hello_world&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;but whenever I am trying to compile same its throwing errors. my query is in the link above if you see there is 1 another folder which is named as child image, its also having prj.config and .overlay file. why it is required? I wants to use secondary slot in SPI external flash that&amp;#39;s why I am referring this.&lt;/p&gt;
&lt;p&gt;I have already done Firmware upgrade with the help of below link.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/guides/nrf-connect-sdk-guides/b/software/posts/ncs-dfu"&gt;Add DFU support to your application&lt;/a&gt;&amp;nbsp; here there is no concept of child image and all. only single file is been generated as app_update.bin. I just flashed the same code through J-Tag and after changing few line and compiling the project again generated the file and uploaded the bin file successfully through OTA(device manager app).&amp;nbsp;&lt;/p&gt;
&lt;p&gt;right now I am following the below steps for external flash.&lt;/p&gt;
&lt;p&gt;1st Step&amp;gt; Modify overlay file as per below:-&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1685095403332v2.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;2nd Step&amp;gt; Modify prj.config as like:-&lt;/p&gt;
&lt;div&gt;
&lt;div&gt;&lt;span&gt;##################### OTA Config #############################&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Enable mcumgr.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_MCUMGR&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Enable most core commands.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_MCUMGR_CMD_IMG_MGMT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_MCUMGR_CMD_OS_MGMT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Ensure an MCUboot-compatible binary is generated.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BOOTLOADER_MCUBOOT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_PM_EXTERNAL_FLASH_MCUBOOT_SECONDARY&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;# Allow for large Bluetooth data packets.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_L2CAP_TX_MTU&lt;/span&gt;&lt;span&gt;=252&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_BUF_ACL_RX_SIZE&lt;/span&gt;&lt;span&gt;=256&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Enable the Bluetooth (unauthenticated) and shell mcumgr transports.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_MCUMGR_SMP_BT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_MCUMGR_SMP_BT_AUTHEN&lt;/span&gt;&lt;span&gt;=n&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Enable the LBS service&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_LBS&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_LBS_POLL_BUTTON&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_DK_LIBRARY&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;################# OTA CONFIG END ######################################&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;##############&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_GPIO&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_LOG&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;# Configure Bluetooth Low Energy.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_PERIPHERAL&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_DEVICE_NAME&lt;/span&gt;&lt;span&gt;=&lt;/span&gt;&lt;span&gt;&amp;quot;NDC12345672&amp;quot;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_DEVICE_APPEARANCE&lt;/span&gt;&lt;span&gt;=0&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_MAX_CONN&lt;/span&gt;&lt;span&gt;=1&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_BT_LL_SOFTDEVICE&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;
&lt;div&gt;&lt;span&gt;CONFIG_SYSTEM_WORKQUEUE_STACK_SIZE&lt;/span&gt;&lt;span&gt;=10240&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;
&lt;div&gt;&lt;span&gt;CONFIG_I2C&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;#CONFIG_NO_OPTIMIZATIONS=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_SPI&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_FLASH&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_STDOUT_CONSOLE&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span&gt;CONFIG_CBPRINTF_FP_SUPPORT&lt;/span&gt;&lt;span&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;br /&gt;&lt;br /&gt;&lt;/div&gt;
&lt;div&gt;3rd Step&amp;gt; try to Add pm_static.yml file to project directory. it is having following content.&lt;/div&gt;
&lt;div&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1685096026882v3.png" alt=" " /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;4th Step&amp;gt; but due pm_static.yml file&amp;nbsp;error been&amp;nbsp;generated as seen below so I just changed the name from &lt;span&gt;pm_static.yml to pm.yml file. all the errors resolved.&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1685096417791v4.png" alt=" " /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;5th step&amp;gt; Flashed the code through J-Tag. no response seemed from firmware. I try to debug and put a breakpoint at main itself, It never came here. it looks like it is trapped here as below&lt;/div&gt;
&lt;div&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1685097418161v5.png" alt=" " /&gt;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;I was thinking if it is done successfully and responding, I will change again some lines of the code and make binary file app_update.bin and then upload through device manager app. but unfortunately I couldn&amp;#39;t reach up to here.&amp;nbsp;&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Can you please guide me step by step&amp;nbsp;which step I am doing mistake.&amp;nbsp;&lt;/div&gt;
&lt;div&gt;&lt;/div&gt;
&lt;div&gt;Heartly thanks in advance!!&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/426460?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 08:05:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ceed5005-55f1-492c-9f6e-87fb04a23a93</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi&amp;nbsp; Sabir,&lt;/p&gt;
[quote user="Thanuha"]1&amp;gt; weather my above requirement can be fulfilled like nearly 800kb application can be updated through OTA on Bluetooth. I want to make slot-2 in external flash. if yes can you please provide step by step support.[/quote]
&lt;p&gt;A colleago of me made a simple sample of using external flash for the second slot &lt;a href="https://github.com/hellesvik-nordic/samples_for_nrf_connect_sdk/tree/main/bootloader_samples/smp/mcuboot_smp_uart_feat_external_flash"&gt;here&lt;/a&gt;. This use UART instead of BLE for transport, but that is a separate matter, so you can still refer to that sample for the external flash part (mostly the relevant parts here are in the configuration parts under &lt;a href="https://github.com/hellesvik-nordic/samples_for_nrf_connect_sdk/tree/main/bootloader_samples/smp/mcuboot_smp_uart_feat_external_flash/child_image"&gt;child_image&lt;/a&gt;, but also in &lt;a href="https://github.com/hellesvik-nordic/samples_for_nrf_connect_sdk/blob/main/bootloader_samples/smp/mcuboot_smp_uart_feat_external_flash/app.overlay"&gt;app.overlay&lt;/a&gt;).&lt;/p&gt;
[quote user="Thanuha"]2&amp;gt;&amp;nbsp;My bootloader and application should be in microcontroller flash memory and remaining other partitions should be in external flash. if it could be done, how to do partitioning&amp;nbsp;[/quote]
&lt;p&gt;Yes, this can be done. The partition manager will automatically partition the flash, and if you build with the secondary slot in the external flash, this will be automatically handled by the partition manager. You can hand-write the partitions if you like though, as&amp;nbsp;explained in the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/scripts/partition_manager/partition_manager.html"&gt;partition manager documentation&lt;/a&gt;.&lt;/p&gt;
[quote user="Thanuha"]&lt;p&gt;3&amp;gt; We are using our custom app for ios application(in react). we found a below library for DFU support for ios. please confirm weather below library should work or not for react IOS application.&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span dir="ltr"&gt;&lt;a href="https://github.com/Pilloxa/react-native-nordic-dfu"&gt;https://github.com/Pilloxa/react-native-nordic-dfu&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;[/quote]
&lt;p&gt;This is a project that is not&amp;nbsp;maintained&amp;nbsp;by Nordic (and not maintained at all anymore, it seems). It was also for the nRF5 SDK bootloader, and is not relevant in your case. We provide native DFU libraries for &lt;a href="https://github.com/NordicSemiconductor/IOS-nRF-Connect-Device-Manager"&gt;iOS&lt;/a&gt; and &lt;a href="https://github.com/NordicSemiconductor/Android-nRF-Connect-Device-Manager"&gt;Android&lt;/a&gt;. We also have &lt;a href="https://pub.dev/packages/mcumgr_flutter"&gt;mcumgr_flutter&lt;/a&gt;&amp;nbsp;for cross-platform projects, but that is it.&amp;nbsp;The&amp;nbsp;McuManager protocol is not Nordic specific though, so you could also use other implementations that suits your needs. We do not have experience with any of these, but there are some out there, for instance &lt;a href="https://github.com/PlayerData/react-native-mcu-manager"&gt;this one&lt;/a&gt; (I cannot say how well it works or how the qualify of this third party library is, though).&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/426441?ContentTypeID=1</link><pubDate>Mon, 22 May 2023 07:37:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ec38ead-b428-414e-82c1-aa84f85fdeaa</guid><dc:creator>Thanuha</dc:creator><description>&lt;p&gt;Hi Einar,&lt;/p&gt;
&lt;p&gt;now I am able to update f/w through device manager app with smaller size of nearly 150kb code.&lt;/p&gt;
&lt;p&gt;I was seeing it was&amp;nbsp;creating&amp;nbsp;500kbs two partitions(I am using nrf52840 ). if I was trying to compile more than 500kb size code, it was throwing errors flash and RAM overflow. my actual code size is nearly 800kb. I am also using SPI external flash(mx25l25645g) in my project&lt;/p&gt;
&lt;p&gt;can you please answer my few below queries.&lt;/p&gt;
&lt;p&gt;1&amp;gt; weather my above requirement can be fulfilled like nearly 800kb application can be updated through OTA on Bluetooth. I want to make slot-2 in external flash. if yes can you please provide step by step support.&lt;/p&gt;
&lt;p&gt;2&amp;gt;&amp;nbsp;My bootloader and application should be in microcontroller flash memory and remaining other partitions should be in external flash. if it could be done, how to do partitioning&amp;nbsp;&lt;/p&gt;
&lt;p&gt;3&amp;gt; We are using our custom app for ios application(in react). we found a below library for DFU support for ios. please confirm weather below library should work or not for react IOS application.&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span class="ui-provider gr b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;&lt;a id="" href="https://github.com/Pilloxa/react-native-nordic-dfu"&gt;https://github.com/Pilloxa/react-native-nordic-dfu&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span class="ui-provider gr b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span class="ui-provider gr b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;Thanks &amp;amp; Regards&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="text-decoration:underline;"&gt;&lt;span class="ui-provider gr b c d e f g h i j k l m n o p q r s t u v w x y z ab ac ae af ag ah ai aj ak" dir="ltr"&gt;Sabir&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/423775?ContentTypeID=1</link><pubDate>Thu, 04 May 2023 12:26:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bf209570-809c-496e-b10b-1913918ca806</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi Sabir,&lt;/p&gt;
[quote user="Thanuha"]can you please provide me some video link or example blog which is clarifying the things in easy manner. I am able to see some videos but that all is showing in nrf5 sdk.[/quote]
&lt;p&gt;I am not aware of any video, but&amp;nbsp;a colleague of me made a collection of samples with descriptions &lt;a href="https://github.com/hellesvik-nordic/samples_for_nrf_connect_sdk/tree/main/bootloader_samples"&gt;here&lt;/a&gt;. You can also refer to the &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.3.0/zephyr/samples/subsys/mgmt/mcumgr/smp_svr/README.html"&gt;SMP server&amp;nbsp;sample&lt;/a&gt;&amp;nbsp;(but ignore most details about signing and keys as this is handled differently in the nRF connect&amp;nbsp;SDK compared to&amp;nbsp;vanilla Zephyr).&lt;/p&gt;
[quote user="Thanuha"]is there any difference in&amp;nbsp;OTA process in nrf5 sdk and nrf connect sdk ?[/quote]
&lt;p&gt;These are fundamentally different. In the nRF Connect SDK, we provided a custom bootloader that included the transport (BLE or other) in the bootloader. In the nRF Connect SDK, we use MCUboot which does not support transports (other than serial for recovery), so that is handled by the application. The protocol is also completely different (in the nRF Connect SD we use&amp;nbsp;Simple Management Protocol (SMP)).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/423729?ContentTypeID=1</link><pubDate>Thu, 04 May 2023 09:34:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c54b863f-a21d-42dd-bb52-700bb909225b</guid><dc:creator>Thanuha</dc:creator><description>&lt;p&gt;Hi Einar,&lt;/p&gt;
&lt;p&gt;Thanks a lot for your quick response.&lt;/p&gt;
&lt;p&gt;Here there are lots of material for the learning and doing same. but still I am not able to see any specific guide which is clarifying the things step by step for performing OTA .&amp;nbsp;&lt;/p&gt;
&lt;p&gt;can you please provide me some video link or example blog which is clarifying the things in easy manner. I am able to see some videos but that all is showing in nrf5 sdk.&lt;/p&gt;
&lt;p&gt;is there any difference in&amp;nbsp;OTA process in nrf5 sdk and nrf connect sdk ?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks &amp;amp; Regards&lt;/p&gt;
&lt;p&gt;Sabir Khan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How Can I Update Firmware through DFU Bootloader and custom mobile app</title><link>https://devzone.nordicsemi.com/thread/423587?ContentTypeID=1</link><pubDate>Wed, 03 May 2023 13:36:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ff4202bc-40c0-4adc-8e10-47a91216b4ba</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi Sabir,&lt;/p&gt;
&lt;p&gt;What you are describing is a typical use case. On the nRF side, MCUBoot is integrated in the nRF Connect SDK. See &lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/app_dev/bootloaders_and_dfu/index.html"&gt;Bootloaders and Device Firmware Updates&lt;/a&gt;&amp;nbsp;for more information about that. On the mobile phone side you will need to make your own app that gets the firmware updates from the cloud, and performs the DFU operation of the nRF. We provide a library that will handle the DFU part though (including example applications), both for iOS (&lt;a href="https://github.com/NordicSemiconductor/IOS-nRF-Connect-Device-Manager"&gt;iOS nRF Connect Device Manager&lt;/a&gt;) and Android (&lt;a href="https://github.com/NordicSemiconductor/Android-nRF-Connect-Device-Manager"&gt;Android nRF Connect Device Manager&lt;/a&gt;).&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>