<?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>Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/77689/flash-overflowed-fota-upgrade-sdk-1-6-0-zephyr-nrf52</link><description>Hello 
 I made an application on the nRF52 sdk, which works correctly. 
 Now I want to add the ability to update the firmware via OTA bluetooth. 
 I followed the instructions indicated at linkt https://developer.nordicsemi.com/nRF_Connect_SDK/doc/1.6</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 03 Aug 2021 06:49:53 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/77689/flash-overflowed-fota-upgrade-sdk-1-6-0-zephyr-nrf52" /><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322997?ContentTypeID=1</link><pubDate>Tue, 03 Aug 2021 06:49:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc148f10-14ae-416c-b362-ed42d5b79aa2</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;HI,&lt;/p&gt;
&lt;p&gt;OK thank you.&lt;br /&gt;I have the nRFDK_nRF52832, so to test the FOTA I modified the code of the blink example, adding the following activations in the prj.conf&lt;/p&gt;
&lt;p&gt;CONFIG_GPIO=y&lt;/p&gt;
&lt;p&gt;# Enable mcumgr.&lt;br /&gt;CONFIG_MCUMGR=y&lt;/p&gt;
&lt;p&gt;# Ensure an MCUboot-compatible binary is generated.&lt;br /&gt;CONFIG_BOOTLOADER_MCUBOOT=y&lt;/p&gt;
&lt;p&gt;# Enable flash operations.&lt;br /&gt;CONFIG_FLASH=y&lt;/p&gt;
&lt;p&gt;# Enable most core commands.&lt;br /&gt;CONFIG_MCUMGR_CMD_IMG_MGMT=y&lt;br /&gt;CONFIG_MCUMGR_CMD_OS_MGMT=y&lt;br /&gt;CONFIG_MCUMGR_CMD_STAT_MGMT=y&lt;br /&gt;CONFIG_MCUMGR_SMP_BT=y&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I added the bluetooth.c file taken from the smp_svr example to the project, and I modified the main in this way .&lt;/p&gt;
&lt;p&gt;/*&lt;br /&gt; * Copyright (c) 2016 Intel Corporation&lt;br /&gt; *&lt;br /&gt; * SPDX-License-Identifier: Apache-2.0&lt;br /&gt; */&lt;/p&gt;
&lt;p&gt;#include &amp;lt;zephyr.h&amp;gt;&lt;br /&gt;#include &amp;lt;stats/stats.h&amp;gt;&lt;br /&gt;#include &amp;lt;device.h&amp;gt;&lt;br /&gt;#include &amp;lt;devicetree.h&amp;gt;&lt;br /&gt;#include &amp;lt;drivers/gpio.h&amp;gt;&lt;br /&gt;#include &amp;lt;bluetooth/bluetooth.h&amp;gt;&lt;br /&gt;#include &amp;lt;bluetooth/hci.h&amp;gt;&lt;br /&gt;#include &amp;lt;bluetooth/gap.h&amp;gt;&lt;br /&gt;#include &amp;quot;common.h&amp;quot;&lt;br /&gt;/* 1000 msec = 1 sec */&lt;br /&gt;#define SLEEP_TIME_MS 100&lt;/p&gt;
&lt;p&gt;/* The devicetree node identifier for the &amp;quot;led0&amp;quot; alias. */&lt;br /&gt;#define LED0_NODE DT_ALIAS(led0)&lt;/p&gt;
&lt;p&gt;#if DT_NODE_HAS_STATUS(LED0_NODE, okay)&lt;br /&gt;#define LED0 DT_GPIO_LABEL(LED0_NODE, gpios)&lt;br /&gt;#define PIN DT_GPIO_PIN(LED0_NODE, gpios)&lt;br /&gt;#define FLAGS DT_GPIO_FLAGS(LED0_NODE, gpios)&lt;br /&gt;#else&lt;br /&gt;/* A build error here means your board isn&amp;#39;t set up to blink an LED. */&lt;br /&gt;#error &amp;quot;Unsupported board: led0 devicetree alias is not defined&amp;quot;&lt;br /&gt;#define LED0 &amp;quot;&amp;quot;&lt;br /&gt;#define PIN 0&lt;br /&gt;#define FLAGS 0&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;#ifdef CONFIG_MCUMGR_CMD_FS_MGMT&lt;br /&gt;#include &amp;lt;device.h&amp;gt;&lt;br /&gt;#include &amp;lt;fs/fs.h&amp;gt;&lt;br /&gt;#include &amp;quot;fs_mgmt/fs_mgmt.h&amp;quot;&lt;br /&gt;#include &amp;lt;fs/littlefs.h&amp;gt;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_CMD_OS_MGMT&lt;br /&gt;#include &amp;quot;os_mgmt/os_mgmt.h&amp;quot;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_CMD_IMG_MGMT&lt;br /&gt;#include &amp;quot;img_mgmt/img_mgmt.h&amp;quot;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_CMD_STAT_MGMT&lt;br /&gt;#include &amp;quot;stat_mgmt/stat_mgmt.h&amp;quot;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_SMP_BT&lt;br /&gt;#include &amp;quot;mgmt\mcumgr\smp_bt.h&amp;quot;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_CMD_SHELL_MGMT&lt;br /&gt;#include &amp;quot;shell_mgmt/shell_mgmt.h&amp;quot;&lt;br /&gt;#endif&lt;br /&gt;#ifdef CONFIG_MCUMGR_CMD_FS_MGMT&lt;br /&gt;#include &amp;quot;fs_mgmt/fs_mgmt.h&amp;quot;&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;void main(void)&lt;br /&gt;{&lt;br /&gt; const struct device *dev;&lt;br /&gt; bool led_is_on = true;&lt;br /&gt; int ret;&lt;br /&gt; os_mgmt_register_group();&lt;br /&gt; img_mgmt_register_group();&lt;br /&gt; smp_bt_register();&lt;br /&gt; #ifdef CONFIG_MCUMGR_SMP_BT&lt;br /&gt; start_smp_bluetooth();&lt;br /&gt;#endif&lt;br /&gt; &lt;br /&gt; dev = device_get_binding(LED0);&lt;br /&gt; if (dev == NULL) {&lt;br /&gt; return;&lt;br /&gt; }&lt;/p&gt;
&lt;p&gt;ret = gpio_pin_configure(dev, PIN, GPIO_OUTPUT_ACTIVE | FLAGS);&lt;br /&gt; if (ret &amp;lt; 0) {&lt;br /&gt; return;&lt;br /&gt; }&lt;/p&gt;
&lt;p&gt;while (1) {&lt;br /&gt; gpio_pin_set(dev, PIN, (int)led_is_on);&lt;br /&gt; led_is_on = !led_is_on;&lt;br /&gt; k_msleep(SLEEP_TIME_MS);&lt;br /&gt; STATS_INC(smp_svr_stats, ticks);&lt;br /&gt; }&lt;br /&gt;}&lt;/p&gt;
&lt;p&gt;The project is compiled without errors, and start.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;Activated nRF Connect on my phone, I see the Zephyr connection, I can connect, I select the DFU button, I select the app_update.bin file generated, but the update procedure stops during validation.&lt;/p&gt;
&lt;div class="FFpbKc"&gt;
&lt;div class="ZTPlmc"&gt;&lt;span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div class="dePhmb"&gt;
&lt;div class="eyKpYb"&gt;
&lt;div class="J0lOec"&gt;&lt;span class="VIiyi" lang="en"&gt;&lt;span class="JLqJ4b ChMk0b"&gt;&lt;span&gt;Could you help me understand where I went wrong.&lt;/span&gt;&lt;/span&gt;&lt;span class="JLqJ4b"&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="J0lOec"&gt;&lt;span class="VIiyi" lang="en"&gt;&lt;span class="JLqJ4b ChMk0b"&gt;&lt;span&gt;Thanks in advance&lt;/span&gt;&lt;/span&gt;&lt;span class="JLqJ4b"&gt;&lt;span&gt; &lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div class="J0lOec"&gt;&lt;span class="VIiyi" lang="en"&gt;&lt;span class="JLqJ4b ChMk0b"&gt;&lt;span&gt;Fausto&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322920?ContentTypeID=1</link><pubDate>Mon, 02 Aug 2021 13:55:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fe3fdbe0-3dda-4ce0-9fd1-53ac094c3d38</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Answered in this post:&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/78130/fota-flash-overflowed-sdk-1-6-0"&gt;devzone.nordicsemi.com/.../fota-flash-overflowed-sdk-1-6-0&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322831?ContentTypeID=1</link><pubDate>Mon, 02 Aug 2021 10:29:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:96191933-2a23-4c55-aefc-e756724b8769</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;HI&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I execute the command : &lt;span&gt;&amp;nbsp;build -t rom_report,&amp;nbsp; (in the build_crf52dk_nrf52832 directory and get this error:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;:\Users\PCF\ncs\v1.6.0\zephyr\samples\bluetooth\scan_adv\build_nrf52dk_nrf52832&amp;gt;west build -t rom_report&lt;br /&gt;-- west build: running target rom_report&lt;br /&gt;[0/17] Performing build step for &amp;#39;mcuboot_subimage&amp;#39;&lt;br /&gt;ninja: no work to do.&lt;br /&gt;[2/15] Linking C executable zephyr\zephyr_prebuilt.elf&lt;br /&gt;FAILED: zephyr/zephyr_prebuilt.elf zephyr/zephyr_prebuilt.map&lt;br /&gt;cmd.exe /C &amp;quot;cd . &amp;amp;&amp;amp; C:\Users\PCF\ncs\v1.6.0\toolchain\opt\bin\arm-none-eabi-gcc.exe @CMakeFiles\zephyr_prebuilt.rsp -o zephyr\zephyr_prebuilt.elf &amp;amp;&amp;amp; cmd.exe /C &amp;quot;cd /D C:\Users\PCF\ncs\v1.6.0\zephyr\samples\bluetooth\scan_adv\build_nrf52dk_nrf52832\zephyr &amp;amp;&amp;amp; C:\Users\PCF\ncs\v1.6.0\toolchain\opt\bin\cmake.exe -E echo &amp;quot;&amp;quot;&lt;br /&gt;c:/users/pcf/ncs/v1.6.0/toolchain/opt/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld.exe: zephyr\zephyr_prebuilt.elf section `text&amp;#39; will not fit in region `FLASH&amp;#39;&lt;br /&gt;c:/users/pcf/ncs/v1.6.0/toolchain/opt/bin/../lib/gcc/arm-none-eabi/9.2.1/../../../../arm-none-eabi/bin/ld.exe: region `FLASH&amp;#39; overflowed by 46088 bytes&lt;br /&gt;collect2.exe: error: ld returned 1 exit status&lt;br /&gt;ninja: build stopped: subcommand failed.&lt;br /&gt;FATAL ERROR: command exited with status 1: &amp;#39;C:\Users\PCF\ncs\v1.6.0\toolchain\opt\bin\cmake.EXE&amp;#39; --build &amp;#39;C:\Users\PCF\ncs\v1.6.0\zephyr\samples\bluetooth\scan_adv\build_nrf52dk_nrf52832&amp;#39; --target rom_report&lt;/p&gt;
&lt;p&gt;C:\Users\PCF\ncs\v1.6.0\zephyr\samples\bluetooth\scan_adv\build_nrf52dk_nrf52832&amp;gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I need help to integrate the FOTA in my application.&lt;/p&gt;
&lt;p&gt;Tanks in avance.&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322784?ContentTypeID=1</link><pubDate>Mon, 02 Aug 2021 06:18:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c6f88378-9ce4-4d3b-93fc-06bc125d8ec3</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;i need help to solve the error in previous post.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Thanks in avance&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322344?ContentTypeID=1</link><pubDate>Thu, 29 Jul 2021 06:05:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b1bd77c3-7c94-4ce2-ad56-0b917dd71267</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;Hi ,&lt;/p&gt;
&lt;p&gt;now i get this error&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1627538696990v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;what to do?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Best Regards&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322325?ContentTypeID=1</link><pubDate>Wed, 28 Jul 2021 20:01:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f6baa46-764c-4f93-9233-99becd570875</guid><dc:creator>Marjeris Romero</dc:creator><description>&lt;p&gt;Another thing you can do, is to open the command prompt from the toolchain manager:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1627502515215v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322324?ContentTypeID=1</link><pubDate>Wed, 28 Jul 2021 20:00:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:62750c51-c4ff-4b18-83b6-b2cc008fb9cf</guid><dc:creator>Marjeris Romero</dc:creator><description>&lt;p&gt;No, I don&amp;#39;t think so. If you have used the Toolchain Manager then it must be installed. Check if you have the directory in PATH variable.&lt;/p&gt;
&lt;p&gt;In Windows you can open a terminal with cmd.exe and type &amp;#39;echo %PATH%&amp;#39; to see which directories are included in PATH, if you cannot see the directory where &amp;#39;west&amp;#39; is install then that&amp;#39;s the problem. &lt;/p&gt;
&lt;p&gt;You can be add the install directory for west in &amp;quot;Edit the system enviroment variables&amp;quot; in System Properties.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1627502351671v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;In the System Variables section (lower half) find the row with &amp;quot;Path&amp;quot; and add the installed directory for west.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322322?ContentTypeID=1</link><pubDate>Wed, 28 Jul 2021 19:44:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:703549cb-bad6-4319-ac4e-cbdc40f1b729</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;I need to reinstall all?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322321?ContentTypeID=1</link><pubDate>Wed, 28 Jul 2021 19:43:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:beea45e1-8b3d-45cf-8b40-60b269aeb0cd</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I have used the toolchain Manager of nRF Connect SDK&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/322319?ContentTypeID=1</link><pubDate>Wed, 28 Jul 2021 19:34:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0f75ba1a-8fc7-461e-ae91-1193c1d2f3c5</guid><dc:creator>Marjeris Romero</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am sorry for the late reply. Perhaps &amp;#39;west&amp;#39; is not in PATH? You must have installed it since &amp;#39;west&amp;#39; is part of the toolchain for nRF Connect SDK. It should have been installed automatically if you were using the &amp;#39;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/gs_assistant.html#toolchain-manager"&gt;Toolchain Manager&amp;#39; &lt;/a&gt;or you can take a look at &amp;#39;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/gs_installing.html"&gt;Installing manually&lt;/a&gt;&amp;#39;.&lt;/p&gt;
&lt;p&gt;-Marjeris&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/321367?ContentTypeID=1</link><pubDate>Thu, 22 Jul 2021 13:12:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e9f765e3-a7ef-4d85-92d8-3886002b3426</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;HI,&lt;/p&gt;
&lt;p&gt;thne command west&amp;nbsp; is&amp;nbsp;not recognized.&lt;/p&gt;
&lt;p&gt;what can I do?&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1626959454176v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/321315?ContentTypeID=1</link><pubDate>Thu, 22 Jul 2021 11:15:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fef24366-a2ca-4aef-8c79-f34a8807453c</guid><dc:creator>Marjeris Romero</dc:creator><description>[quote user="Fb62"]&lt;p&gt;in witch directory i use the command&amp;nbsp;&lt;/p&gt;
&lt;p&gt;west build -t rom_report&lt;/p&gt;[/quote]
&lt;p&gt;&amp;nbsp;Inside your project folder. Where CMakeLists.txt and prj.conf are located.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/321265?ContentTypeID=1</link><pubDate>Thu, 22 Jul 2021 08:57:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:40a24281-009d-4cb2-b669-01b4125b2983</guid><dc:creator>Fb62</dc:creator><description>&lt;p&gt;HI,&lt;/p&gt;
&lt;p&gt;I&amp;#39;m using nRF52dk_NRF52852,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;in witch directory i use the command&amp;nbsp;&lt;/p&gt;
&lt;p&gt;west build -t rom_report&lt;/p&gt;
&lt;p&gt;Tanks&lt;/p&gt;
&lt;p&gt;Best regards&lt;/p&gt;
&lt;p&gt;Fausto&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Overflowed FOTA upgrade sdk 1.6.0 (Zephyr)  nRF52</title><link>https://devzone.nordicsemi.com/thread/321259?ContentTypeID=1</link><pubDate>Thu, 22 Jul 2021 08:37:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d21a0c92-0bd4-478b-a531-dc5f7ace1716</guid><dc:creator>Marjeris Romero</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Which nRF5 device are you working with? FOTA uses dual-bank update, which means you need to have double the flash size of the application available. Try running&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;west build -t rom_report&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;to see how much flash the different libraries on the application are using.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Marjeris&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>