<?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 Memory Issue</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/66816/flash-memory-issue</link><description>Hi, I have written these 3 functions to erase/read and write. When I write any value from address 1 it gives following wrong output(0 1 2 3). But When I start address from 0 it gives the right values. How can I save values in rondom addresses? Thanks</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 04 Jan 2021 13:26:15 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/66816/flash-memory-issue" /><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/287244?ContentTypeID=1</link><pubDate>Mon, 04 Jan 2021 13:26:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b4a1a77d-a608-421d-bdd3-b54fade13382</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Well, if you put the start address right after your application, you will have to move it every time you change the application so that its size increases, you need to change the address every time. If you have room for it, you can try leaving some space between the application and the Fstorage start_address. You can leave it like this during development so you won&amp;#39;t have to change it all the time. However, when you reach a final version of your application, I would suggest moving this address to have as much space as possible for flash storage.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/286663?ContentTypeID=1</link><pubDate>Mon, 28 Dec 2020 10:00:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d6c25832-42ce-4ecd-840e-ca4130efea3a</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/simonr"&gt;Simonr&lt;/a&gt;&lt;br /&gt;Is there any generic space available which I can use to save data? As if I made changes in my application I have to change address again. &lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f61e.svg" title="Disappointed"&gt;&amp;#x1f61e;&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/285754?ContentTypeID=1</link><pubDate>Fri, 18 Dec 2020 07:41:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0c282c66-21c6-4a4f-9ffe-f8696a729019</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I see that you and Edvin discuss the bootloader as well, do you have a bootloader in your application as well. If so, where is this stored? You need to set the nrf_fstorage start and end address somewhere between the application (0x0004583b) and the start of the bootloader. Please note that these boundaries needs to be set before nrf_fstorage_init() is called in runtime.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/285649?ContentTypeID=1</link><pubDate>Thu, 17 Dec 2020 13:39:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:25fc5912-c3ba-4678-882d-d7ca2889c597</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Thanks &lt;a href="https://devzone.nordicsemi.com/members/simonr"&gt;Simonr&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Now, which start and end I should use for FStorage?&lt;br /&gt;&lt;br /&gt;Can you please guide me?&lt;br /&gt;Thanks&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
    /* Set a handler for fstorage events. */
    .evt_handler = fstorage_evt_handler,

    /* These below are the boundaries of the flash space assigned to this instance of fstorage.
     * You must set these manually, even at runtime, before nrf_fstorage_init() is called.
     * The function nrf5_flash_end_addr_get() can be used to retrieve the last address on the
     * last page of flash available to write data. */
    .start_addr = 0xd8000,//f4000
    .end_addr   = 0xd9000,//0xf4fff
};&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/285603?ContentTypeID=1</link><pubDate>Thu, 17 Dec 2020 11:57:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:42e8ea19-9b89-4069-b438-98abc7a0f4da</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Well, yes. You can see all the addresses that are programmed in this log, which tells you what addresses are written to during the programming of this application, so you can add the KB sizes under the &lt;strong&gt;Downloading &amp;#39;ble_app_template_pca10056_s140.elf&amp;#39; to J-Link &lt;/strong&gt;line to find the total size of your application. The SoftDevice and MBR will come in addition to this (mentioned earlier in the log).&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/285599?ContentTypeID=1</link><pubDate>Thu, 17 Dec 2020 11:43:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d7a84c43-387f-467c-8b8f-273fff59083d</guid><dc:creator>Muqarrab</dc:creator><description>[quote userid="75734" url="~/f/nordic-q-a/66816/flash-memory-issue/283723#283723"]You can check the size of your application, for example, by opening the programmer app in &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Connect-for-desktop"&gt;nRFConnect for Desktop&lt;/a&gt; to get a visual representation of the flash memory.[/quote]
&lt;p&gt;Can I check the size of my application from here?&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1608205399842v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/283723?ContentTypeID=1</link><pubDate>Tue, 08 Dec 2020 08:52:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4c1d539d-75a0-4d73-9106-4e6a3c647fcd</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;You can check the size of your application, for example, by opening the programmer app in &lt;a href="https://www.nordicsemi.com/Software-and-tools/Development-Tools/nRF-Connect-for-desktop"&gt;nRFConnect for Desktop&lt;/a&gt; to get a visual representation of the flash memory.&lt;/p&gt;
&lt;p&gt;Please try adding the &amp;quot;aligned&amp;quot; attribute to the data you&amp;#39;re trying to write. &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/60717/please-help-me-with-the-problem-of-the-optimization-set-to-0-flash-read-and-write-error/246855#246855"&gt;This reply&lt;/a&gt; by my colleague Jørgen explains how you can do so.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/283547?ContentTypeID=1</link><pubDate>Mon, 07 Dec 2020 13:09:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b7b629e9-a3e7-4b52-9fa8-61cebf2e948e</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/simonr"&gt;Simonr&lt;/a&gt;.&lt;br /&gt;-How can I check the&amp;nbsp;&lt;span&gt;size of my application?&lt;br /&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
[quote userid="75734" url="~/f/nordic-q-a/66816/flash-memory-issue/281114#281114"]I would suggest the first word-aligned address that is free after the flash reserved for your application.[/quote]
&lt;p&gt;-How can I do this?&lt;br /&gt;&lt;br /&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/281114?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 13:23:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:68de36be-ed78-45f6-be03-a07cba3352f1</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Well, I don&amp;#39;t know what the size of your application, I would suggest the first word-aligned address that is free after the flash reserved for your application. You can check out&lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fps_nrf52840%2Fmemory.html"&gt; the memory chapter &lt;/a&gt;to see which memory addresses are available for EasyDMA.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/281060?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 10:01:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5f05797c-651f-4fd6-96b5-0333760bf4de</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;What should I use?&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;.start_addr = 0x?????,//f4000&lt;/strong&gt;&lt;br /&gt;&lt;strong&gt; .end_addr = 0x?????,//0xf4fff&lt;/strong&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/281045?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 08:54:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c0e81010-8f8d-4a5b-b30c-b66e975919aa</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;This check within nrf_fstorage_write which will return the invalid address error if your destination address is not word aligned. &lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_FSTORAGE_PARAM_CHECK(addr_is_aligned32(dest),                NRF_ERROR_INVALID_ADDR);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Please make sure that it is.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/281028?ContentTypeID=1</link><pubDate>Fri, 20 Nov 2020 06:33:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a2ce8db3-6ecd-47fe-94f0-78a631d08f61</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
[quote userid="75734" url="~/f/nordic-q-a/66816/flash-memory-issue/280926#280926"]These start and end addresses seem to be too big. Can you try to reduce this so that the end address stop before 0xd9000.[/quote]
&lt;p&gt;I have tried to change the address now getting this error.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
    /* Set a handler for fstorage events. */
    .evt_handler = fstorage_evt_handler,

    /* These below are the boundaries of the flash space assigned to this instance of fstorage.
     * You must set these manually, even at runtime, before nrf_fstorage_init() is called.
     * The function nrf5_flash_end_addr_get() can be used to retrieve the last address on the
     * last page of flash available to write data. */
    .start_addr = 0xd8000,//f4000
    .end_addr   = 0xd9000,//0xf4fff
};
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1605853904752v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Can you please suggest the start and end address.?&lt;br /&gt;Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280926?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 14:15:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0dc08e8a-2689-4127-9164-41a1216e7bcf</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi again&lt;/p&gt;
&lt;p&gt;You should not enable both of these backends as that may cause conflicts between the two. Please use the RTT backend if you want to log this information in SEGGER Embedded Studios.&amp;nbsp;These start and end addresses seem to be too big. Can you try to reduce this so that the end address stop before 0xd9000.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280778?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 08:44:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:78e3badc-a729-4cc5-919e-c7d89b0f4245</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;The problem is when&amp;nbsp;I connect the device and call flash read/write functions it not work.&lt;br /&gt;&amp;nbsp;&lt;br /&gt;Have I selected the write bank for flash memory?&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
    /* Set a handler for fstorage events. */
    .evt_handler = fstorage_evt_handler,

    /* These below are the boundaries of the flash space assigned to this instance of fstorage.
     * You must set these manually, even at runtime, before nrf_fstorage_init() is called.
     * The function nrf5_flash_end_addr_get() can be used to retrieve the last address on the
     * last page of flash available to write data. */
    .start_addr = 0xf4000,
    .end_addr   = 0xf4fff,
};&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280774?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 08:37:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eee1f185-6603-42a2-a5c9-f18b86a53926</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// &amp;lt;e&amp;gt; NRF_LOG_BACKEND_RTT_ENABLED - nrf_log_backend_rtt - Log RTT backend
//==========================================================
#ifndef NRF_LOG_BACKEND_RTT_ENABLED
#define NRF_LOG_BACKEND_RTT_ENABLED 1
#endif




// &amp;lt;e&amp;gt; NRF_LOG_BACKEND_UART_ENABLED - nrf_log_backend_uart - Log UART backend
//==========================================================
#ifndef NRF_LOG_BACKEND_UART_ENABLED
#define NRF_LOG_BACKEND_UART_ENABLED 1
#endif&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280772?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 08:33:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5dc56225-b4ff-4315-9de2-cd3dc7928a47</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Can you confirm what log backend you&amp;#39;re using? In your sdk_config.h file, either&amp;nbsp;NRF_LOG_BACKEND_RTT_ENABLED or&amp;nbsp;NRF_LOG_BACKEND_UART_ENABLED should be set to 1. If the UART backend is used, you need to use a terminal to read the debug information, or edit this to use the RTT instead.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280752?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 06:44:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7dcc4fed-1a72-457d-beca-2c09c83757f9</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/simonr"&gt;Simonr&lt;/a&gt;,&lt;br /&gt;I have already defined this.&lt;br /&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1605768259977v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280751?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 06:40:49 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1fd8112e-c9b8-48a6-b5da-9b2237ebfa8c</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Have you set the DEBUG define in your preprocessor definitions? This is necessary in order to see any of the debug logging information in your log backend. To do so, right click your project in SES, and open Options..., then set the build configuration to Common, find the Preprocessor Definitions tab, and add DEBUG to the bottom here. See the attached picture for reference.&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/8032.DEBUG-preprocessor.png" /&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/280750?ContentTypeID=1</link><pubDate>Thu, 19 Nov 2020 06:11:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e842d0aa-3035-4a0d-b33a-de429e3aba70</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Sorry for the late reply.&lt;/p&gt;
[quote userid="75734" url="~/f/nordic-q-a/66816/flash-memory-issue/279635#279635"]When debugging, do you see any kind of error code in either the write_SNV() or read_SNV() functions?[/quote]
&lt;p&gt;No, I have not seen any error.&lt;/p&gt;
&lt;p&gt;The issue is when I connect the device and call the read/write function I got no response.&lt;br /&gt;&lt;br /&gt;Here is my code.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;/**
 * Copyright (c) 2014 - 2020, Nordic Semiconductor ASA
 *
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * 1. Redistributions of source code must retain the above copyright notice, this
 *    list of conditions and the following disclaimer.
 *
 * 2. Redistributions in binary form, except as embedded into a Nordic
 *    Semiconductor ASA integrated circuit in a product or a software update for
 *    such product, must reproduce the above copyright notice, this list of
 *    conditions and the following disclaimer in the documentation and/or other
 *    materials provided with the distribution.
 *
 * 3. Neither the name of Nordic Semiconductor ASA nor the names of its
 *    contributors may be used to endorse or promote products derived from this
 *    software without specific prior written permission.
 *
 * 4. This software, with or without modification, must only be used with a
 *    Nordic Semiconductor ASA integrated circuit.
 *
 * 5. Any software provided in binary form under this license must not be reverse
 *    engineered, decompiled, modified and/or disassembled.
 *
 * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA &amp;quot;AS IS&amp;quot; AND ANY EXPRESS
 * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */
/** @file
 *
 * @defgroup ble_sdk_app_template_main main.c
 * @{
 * @ingroup ble_sdk_app_template
 * @brief Template project main file.
 *
 * This file contains a template for creating a new application. It has the code necessary to wakeup
 * from button, advertise, get a connection restart advertising on disconnect and if no new
 * connection created go back to system-off mode.
 * It can easily be used as a starting point for creating a new application, the comments identified
 * with &amp;#39;YOUR_JOB&amp;#39; indicates where and how you can customize.
 */

#include &amp;lt;stdbool.h&amp;gt;
#include &amp;lt;stdint.h&amp;gt;
#include &amp;lt;string.h&amp;gt;
#include &amp;lt;nrfx.h&amp;gt;
#include &amp;lt;stdio.h&amp;gt;
#include &amp;lt;ble_dis.h&amp;gt;

#include &amp;quot;nrf_nvmc.h&amp;quot;

#include &amp;quot;nordic_common.h&amp;quot;
#include &amp;quot;nrf.h&amp;quot;
#include &amp;quot;app_error.h&amp;quot;
#include &amp;quot;ble.h&amp;quot;
#include &amp;quot;ble_hci.h&amp;quot;
#include &amp;quot;ble_srv_common.h&amp;quot;
#include &amp;quot;ble_advdata.h&amp;quot;
#include &amp;quot;ble_advertising.h&amp;quot;
#include &amp;quot;ble_conn_params.h&amp;quot;
#include &amp;quot;nrf_sdh.h&amp;quot;
#include &amp;quot;nrf_sdh_soc.h&amp;quot;
#include &amp;quot;nrf_sdh_ble.h&amp;quot;
#include &amp;quot;app_timer.h&amp;quot;
#include &amp;quot;fds.h&amp;quot;
#include &amp;quot;peer_manager.h&amp;quot;
#include &amp;quot;peer_manager_handler.h&amp;quot;
#include &amp;quot;bsp_btn_ble.h&amp;quot;
#include &amp;quot;sensorsim.h&amp;quot;
#include &amp;quot;ble_conn_state.h&amp;quot;
#include &amp;quot;nrf_ble_gatt.h&amp;quot;
#include &amp;quot;nrf_ble_qwr.h&amp;quot;
#include &amp;quot;nrf_pwr_mgmt.h&amp;quot;
#include &amp;quot;nrf_drv_gpiote.h&amp;quot;
#include &amp;quot;nrf_log.h&amp;quot;
#include &amp;quot;nrf_log_ctrl.h&amp;quot;
#include &amp;quot;nrf_log_default_backends.h&amp;quot;
#include &amp;quot;ble_cus.h&amp;quot;
#include &amp;quot;nrf_drv_clock.h&amp;quot;
#include &amp;quot;nrf_soc.h&amp;quot;
#include &amp;quot;nrf_delay.h&amp;quot;
#include &amp;quot;app_pwm.h&amp;quot;
#include &amp;quot;bsp.h&amp;quot;

#include &amp;quot;nrf_drv_saadc.h&amp;quot;
#include &amp;quot;boards.h&amp;quot;
#include &amp;quot;app_error.h&amp;quot;
#include &amp;quot;app_util_platform.h&amp;quot;


#include &amp;quot;app_util.h&amp;quot;
#include &amp;quot;nrf_fstorage.h&amp;quot;
#include &amp;quot;nrf_fstorage_sd.h&amp;quot;



#define APP_BLE_CONN_CFG_TAG    1



#define SAMPLES_IN_BUFFER 1



/* Defined in cli.c */
extern void cli_init(void);
extern void cli_start(void);
extern void cli_process(void);

static void fstorage_evt_handler(nrf_fstorage_evt_t * p_evt);


NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
    /* Set a handler for fstorage events. */
    .evt_handler = fstorage_evt_handler,

    /* These below are the boundaries of the flash space assigned to this instance of fstorage.
     * You must set these manually, even at runtime, before nrf_fstorage_init() is called.
     * The function nrf5_flash_end_addr_get() can be used to retrieve the last address on the
     * last page of flash available to write data. */
    .start_addr = 0xf4000,
    .end_addr   = 0xf4fff,
};




volatile uint8_t state = 1;

static nrf_saadc_value_t     m_buffer_pool[2][SAMPLES_IN_BUFFER];
static uint32_t              m_adc_evt_counter;

uint16_t adc_result = 0;
uint16_t adc_voltage_mv = 0;
int percentage=0;
uint16_t Max_Value = 4200;



// 14bit
// V(P) = RESULT x REFERENCE / ( GAIN x RESOLUTION) = RESULT x (600 / (1/6 x 2^(14)) =  ADC_RESULT x 0.2197265625;
//#define ADC_RESULT_IN_MILLI_VOLTS(ADC_RESULT) ((ADC_RESULT * 0.2197265625))
//#define ADC_RESULT_IN_MILLI_VOLTS(ADC_RESULT) ((ADC_RESULT * 3.53080568))
#define ADC_RESULT_IN_MILLI_VOLTS(ADC_RESULT) ((ADC_RESULT * 3.578732106))


#define DEVICE_NAME                     &amp;quot;Muqarrab&amp;quot;                            /**&amp;lt; Name of device. Will be included in the advertising data. */
#define MANUFACTURER_NAME               &amp;quot;Rahman&amp;quot;                   /**&amp;lt; Manufacturer. Will be passed to Device Information Service. */
#define MODEL_NUMBER                    &amp;quot;Pro&amp;quot;                   
#define SERIAL_NUMBER                   &amp;quot;16121994&amp;quot;                   
#define HARDWARE_NUMBER                 &amp;quot;Pro&amp;quot;                   
#define FIRMWARE_NUMBER                 &amp;quot;5.0&amp;quot;                   



#define APP_ADV_INTERVAL                300                                     /**&amp;lt; The advertising interval (in units of 0.625 ms. This value corresponds to 187.5 ms). */

#define APP_ADV_DURATION                0                                       /**&amp;lt; The advertising duration (180 seconds) in units of 10 milliseconds. */
#define APP_BLE_OBSERVER_PRIO           3                                       /**&amp;lt; Application&amp;#39;s BLE observer priority. You shouldn&amp;#39;t need to modify this value. */
#define APP_BLE_CONN_CFG_TAG            1                                       /**&amp;lt; A tag identifying the SoftDevice BLE configuration. */

#define MIN_CONN_INTERVAL               MSEC_TO_UNITS(100, UNIT_1_25_MS)        /**&amp;lt; Minimum acceptable connection interval (0.1 seconds). */
#define MAX_CONN_INTERVAL               MSEC_TO_UNITS(200, UNIT_1_25_MS)        /**&amp;lt; Maximum acceptable connection interval (0.2 second). */
#define SLAVE_LATENCY                   0                                       /**&amp;lt; Slave latency. */
#define CONN_SUP_TIMEOUT                MSEC_TO_UNITS(4000, UNIT_10_MS)         /**&amp;lt; Connection supervisory timeout (4 seconds). */

#define FIRST_CONN_PARAMS_UPDATE_DELAY  APP_TIMER_TICKS(5000)                   /**&amp;lt; Time from initiating event (connect or start of notification) to first time sd_ble_gap_conn_param_update is called (5 seconds). */
#define NEXT_CONN_PARAMS_UPDATE_DELAY   APP_TIMER_TICKS(30000)                  /**&amp;lt; Time between each call to sd_ble_gap_conn_param_update after the first call (30 seconds). */
#define MAX_CONN_PARAMS_UPDATE_COUNT    3                                       /**&amp;lt; Number of attempts before giving up the connection parameter negotiation. */

#define SEC_PARAM_BOND                  1                                       /**&amp;lt; Perform bonding. */
#define SEC_PARAM_MITM                  0                                       /**&amp;lt; Man In The Middle protection not required. */
#define SEC_PARAM_LESC                  0                                       /**&amp;lt; LE Secure Connections not enabled. */
#define SEC_PARAM_KEYPRESS              0                                       /**&amp;lt; Keypress notifications not enabled. */
#define SEC_PARAM_IO_CAPABILITIES       BLE_GAP_IO_CAPS_NONE                    /**&amp;lt; No I/O capabilities. */
#define SEC_PARAM_OOB                   0                                       /**&amp;lt; Out Of Band data not available. */
#define SEC_PARAM_MIN_KEY_SIZE          7                                       /**&amp;lt; Minimum encryption key size. */
#define SEC_PARAM_MAX_KEY_SIZE          16                                      /**&amp;lt; Maximum encryption key size. */

#define DEAD_BEEF                       0xDEADBEEF                              /**&amp;lt; Value used as error code on stack dump, can be used to identify stack location on stack unwind. */


#define Signal_LED            NRF_GPIO_PIN_MAP(1,10)
#define State_LED             NRF_GPIO_PIN_MAP(1,11)  


#define Servo_Pin             NRF_GPIO_PIN_MAP(0,3)
#define Blocker_Pin           NRF_GPIO_PIN_MAP(1,14)

#define TIME_PERIOD  20000 // 20 milliseconds

int check_battery=0;

int servo_lock_counter=2;   
int servo_unlock_counter=2;


int servo_delay=1000;
int blocker_delay=1000;
int Blocker_on=0;

uint8_t counter_test;
uint8_t counter_l_u=0x52;

uint8_t reset_counter_test;
uint8_t counter_r=0x02;


NRF_BLE_GATT_DEF(m_gatt);                                                       /**&amp;lt; GATT module instance. */
NRF_BLE_QWR_DEF(m_qwr);                                                         /**&amp;lt; Context for the Queued Write module.*/
BLE_ADVERTISING_DEF(m_advertising);                                             /**&amp;lt; Advertising module instance. */

BLE_CUS_DEF(m_cus);

// Create a pwm instance by passing the name of the handle and the timer to be used for pwm generation
// here 1 means timer 1
APP_PWM_INSTANCE(PWM1, 1);

APP_TIMER_DEF(Delay_Event);  

ble_cus_t * p_cus;

/**@brief Timeout handler for the single shot timer.
 */

static uint16_t m_conn_handle = BLE_CONN_HANDLE_INVALID;                        /**&amp;lt; Handle of the current connection. */

/* YOUR_JOB: Declare all services structure your application is using
 *  BLE_XYZ_DEF(m_xyz);
 */

// YOUR_JOB: Use UUIDs for service(s) used in your application.
static ble_uuid_t m_adv_uuids[] =                                               /**&amp;lt; Universally unique service identifiers. */
{
{BLE_UUID_DEVICE_INFORMATION_SERVICE, BLE_UUID_TYPE_BLE},    
// YOUR_JOB: Use UUIDs for service(s) used in your application.
{CUSTOM_SERVICE_UUID, BLE_UUID_TYPE_VENDOR_BEGIN } /**&amp;lt; Universally unique service identifiers. */

};

/////////////////////////////////////////////////////////////////// Keys Part Start  ////////////////////////////////////////////////////////////

uint8_t masterkey1  = 10;
uint8_t masterkey2  = 10;
uint8_t regularkey1 = 10;
uint8_t regularkey2 = 10;

int feedback=0;
int masterokforeg=0;
int regchange=0;
int regchgc=0;
int masterchange=0;   
int masterchgc=0;
uint8_t masterkeyinput;
uint8_t regularkeyinput;
uint8_t keycheck;
int regularchk=0;
int masterchk=0;

/////////////////////////////////////////////////////////////////// Keys Part End  ////////////////////////////////////////////////////////////


////////////////////////////////////////////////////////////////// Regular checks End   //////////////////////////////////////////////////////////

int adv_off = 0 ;
int wrong_counter_reg=0;
int wrong_counter_master=0;
int no_of_tries=10;

int indicator_counter_1 = 0 ;
int indicator_counter_2 = 0 ;

int notify_check=0;
uint8_t notify_value=0;


////////////////////////////////////////////////////////////////// Regular checks ///////////////////////////////////////////////////////////

int regular_chk = 0;
int master_chk = 0;

int Disconnect_Lock=1;
int verified_lock=0;    

int Smart_key_State=0;
int Car_Type=1;

int push_state_chk=0;
int push_state_counter=0;
int push_state_change=0;

int indicator_speed=0;
int indicator_counter=0;

int verified_engine_kill=0;     
int Engin_Kill_Setting=0;
int Engin_Kill_Time=1;
int toggle_flash=0;
int indicator_toggle=0;
int i_counter=0;

int regular_key_expire=0;
int share_check=0;

int prox_stop_value=0;
int prox_stop_timer=5000;
int prox_toggle=0;
int prox_counter=1;


int Door_Status=3;      //3 for Lock 4 for unlock
int feedback_wire=2;    //1 for Unlock 2 for Lock
int door_update=2;      //1 for Unlock 2 for Lock
int Lock_Wires=2;       
int stop_delay=0;

////////////////////////////////////////////////////////////////// Regular checks End///////////////////////////////////////////////////////////

////////////////////////////////////////////////////////////////// Characters input ///////////////////////////////////////////////////////////

uint8_t lock_engine_test=0;
uint8_t lock_engine=0;

uint8_t self_start_test=0;
uint8_t self_start=0;

int start_on_check=0;
int start_check=0;
int start_timer = 750;

uint8_t timer_test=0;
uint8_t timer=0x13;

int push_power_on=0;

uint8_t setting_test=0;
uint8_t setting=0x01;
uint8_t test_bit=0;


///////////////////////////////////////////////////////////////   Connection Checks   //////////////////////////////////////////////////////////////
int connection_state=0;
int toggle=0;
int pins_chk=0;
int blink_time=1000;

uint8_t retain_on=0;                     //////// 1st bit For Engine Kill
                                       //////// 2nd bit For Smart Key


uint8_t retain_test_bit=0;


char      SNV_Data[]   =&amp;quot;Muqarrab112&amp;quot;;
char Test_SNV_Data[]   =&amp;quot;11223344556&amp;quot;;


/////////////////////////////////////////////////////////////////////////////// SNV

void write_SNV()
{
    ret_code_t rc;
    //SNV_Data[0]=0xEE;



    sd_flash_page_erase(0xf4);

    NRF_LOG_INFO(&amp;quot;Writing \&amp;quot;%s\&amp;quot; to flash.&amp;quot;, SNV_Data);
    rc = nrf_fstorage_write(&amp;amp;fstorage, 0xf4000, SNV_Data, sizeof(SNV_Data), NULL);
    APP_ERROR_CHECK(rc);

    wait_for_flash_ready(&amp;amp;fstorage);
    NRF_LOG_INFO(&amp;quot;Writing Done&amp;quot;);

}

uint32_t read_SNV()
{
    ret_code_t rc;

    rc = nrf_fstorage_read(&amp;amp;fstorage, 0xf4000, Test_SNV_Data, sizeof(Test_SNV_Data));
    APP_ERROR_CHECK(rc);


    NRF_LOG_INFO(&amp;quot;Reading from flash hex:&amp;quot;);
    for(uint8_t i=0; i&amp;lt;sizeof(Test_SNV_Data); i++)
    {
        NRF_LOG_RAW_INFO(&amp;quot;%02x:&amp;quot;, Test_SNV_Data[i]);
    //    NRF_LOG_INFO(&amp;quot;Reading from flash char Hex %h :&amp;quot;,Test_SNV_Data[i] );
    }

    NRF_LOG_RAW_INFO(&amp;quot;\r\n&amp;quot;);
    NRF_LOG_INFO(&amp;quot;Reading from flash char:&amp;quot;);
    for(uint8_t i=0; i&amp;lt;sizeof(Test_SNV_Data); i++)
    {
        NRF_LOG_RAW_INFO(&amp;quot;%c&amp;quot;, Test_SNV_Data[i]);
    }
    NRF_LOG_RAW_INFO(&amp;quot;\r\n&amp;quot;);

    NRF_LOG_INFO(&amp;quot;Reading Done&amp;quot;);
}
/////////////////////////////////////////////////////////////////////////////// SNV

/////////////////////////////////////////////////////////////////////////////// Charcteristics Initialize
void Charcteristics_Init(ble_cus_t * d_cus)
{
  p_cus=d_cus;

  ble_cus_custom_value_update(p_cus, 0,1);
  ble_cus_custom_value_update(p_cus, 0,2);
  ble_cus_custom_value_update(p_cus, 0,3);
  ble_cus_custom_value_update(p_cus, 0x22,4);
  ble_cus_custom_value_update(p_cus, 0,5);
  ble_cus_custom_value_update(p_cus, 0,6);
  ble_cus_custom_value_update(p_cus, 0,7);
  ble_cus_custom_value_update(p_cus, 0,8);
  ble_cus_custom_value_update(p_cus, 0,9);
  ble_cus_custom_value_update(p_cus, 0,10);
}

void Charcteristics_4(uint8_t test)
{
    lock_engine_test=test;
    ret_code_t         err_code;
     if(regular_chk==1)
     {
  //////////////////     Lock     ///////////////////////
       if (lock_engine_test == 1)
       {
           if(servo_lock_counter==1)
           {     
              NRF_LOG_INFO(&amp;quot;Lock Counter : %d&amp;quot;,servo_lock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 5) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_lock_counter==2)
           {     
              NRF_LOG_INFO(&amp;quot;Lock Counter : %d&amp;quot;,servo_lock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 4) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_lock_counter==3)
           {     
              NRF_LOG_INFO(&amp;quot;Lock Counter : %d&amp;quot;,servo_lock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 3) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_lock_counter==4)
           {     
              NRF_LOG_INFO(&amp;quot;Lock Counter : %d&amp;quot;,servo_lock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 2) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
          lock_engine=lock_engine&amp;amp;0xF0;
          lock_engine=lock_engine|0x03;      
          ble_cus_custom_value_update(p_cus,lock_engine,4);
       }
  //////////////////     UnLock   ///////////////////////
       else if (lock_engine_test == 2)
       {
           if(servo_unlock_counter==1)
           {     
              NRF_LOG_INFO(&amp;quot;Unlock Counter : %d&amp;quot;,servo_unlock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 7) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_unlock_counter==2)
           {     
              NRF_LOG_INFO(&amp;quot;Unlock Counter : %d&amp;quot;,servo_unlock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 8) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_unlock_counter==3)
           {     
              NRF_LOG_INFO(&amp;quot;Unlock Counter : %d&amp;quot;,servo_unlock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 9) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }       
           else if(servo_unlock_counter==4)
           {     
              NRF_LOG_INFO(&amp;quot;Unlock Counter : %d&amp;quot;,servo_unlock_counter);

              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 10) == NRF_ERROR_BUSY);
              nrf_delay_ms(500); // half second delay after every step
              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);
           }
       }
       else if (lock_engine_test == 10)
       {
              nrf_gpio_pin_set(Signal_LED);

              while(app_pwm_channel_duty_set(&amp;amp;PWM1, 0, 6) == NRF_ERROR_BUSY);
              nrf_delay_ms(500);

              nrf_gpio_pin_clear(Signal_LED);

       }
   //////////////////     Trunk   ///////////////////////
       else if (lock_engine_test == 5)
       {
          nrf_gpio_pin_set(Signal_LED);
          nrf_gpio_pin_set(Blocker_Pin);
          nrf_delay_ms(2000);
          nrf_gpio_pin_clear(Blocker_Pin);
          nrf_gpio_pin_clear(Signal_LED);

          lock_engine=lock_engine&amp;amp;0x0F;
          lock_engine=lock_engine|0x10;      
          ble_cus_custom_value_update(p_cus,lock_engine,4);
       }
     }
     ble_cus_custom_value_update(p_cus,lock_engine,4);
}
void Charcteristics_5(uint8_t test)
{
    counter_test=test;
    ret_code_t         err_code;
    // if(regular_chk==1)
     {
//////////////////     Lock Counter     ///////////////////////

     if (counter_test == 0)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_lock_counter=1;
       counter_l_u=counter_l_u&amp;amp;0xF0;
       counter_l_u=counter_l_u|0x01;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }
     else if (counter_test == 1)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_lock_counter=2;
       counter_l_u=counter_l_u&amp;amp;0xF0;
       counter_l_u=counter_l_u|0x02;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }
     else if (counter_test == 2)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_lock_counter=3;
       counter_l_u=counter_l_u&amp;amp;0xF0;
       counter_l_u=counter_l_u|0x03;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }
     else if (counter_test == 3)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_lock_counter=4;
       counter_l_u=counter_l_u&amp;amp;0xF0;
       counter_l_u=counter_l_u|0x04;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }
//////////////////     Unlock Counter     ///////////////////////

     else if (counter_test == 10)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_unlock_counter=1;
       counter_l_u=counter_l_u&amp;amp;0x0F;
       counter_l_u=counter_l_u|0x10;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }
     else if (counter_test == 11)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_unlock_counter=2;
       counter_l_u=counter_l_u&amp;amp;0x0F;
       counter_l_u=counter_l_u|0x20;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }       
     else if (counter_test == 12)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_unlock_counter=3;
       counter_l_u=counter_l_u&amp;amp;0x0F;
       counter_l_u=counter_l_u|0x30;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }       
     else if (counter_test == 13)
     {
       nrf_gpio_pin_set(Signal_LED);
       nrf_delay_ms(500);
       nrf_gpio_pin_clear(Signal_LED);

       servo_unlock_counter=4;
       counter_l_u=counter_l_u&amp;amp;0x0F;
       counter_l_u=counter_l_u|0x40;      
       ble_cus_custom_value_update(p_cus,counter_l_u,5);
     }       
 
//     if(osal_snv_write( 0xF5, 8,  &amp;amp;counter_l_u)==SUCCESS)
//      {
//      } 
     }
 
     ble_cus_custom_value_update(p_cus,counter_l_u,5);
}
void Charcteristics_6(uint8_t test)
{
}
void Charcteristics_7(uint8_t test)
{
ret_code_t         err_code;
}

void Charcteristics_8(uint8_t test)
{
    ret_code_t         err_code;
    err_code = nrf_drv_saadc_sample();
    APP_ERROR_CHECK(err_code);
}

void Charcteristics_9(uint8_t test)
{
    NRF_LOG_INFO(&amp;quot;Memory Function&amp;quot;);

    SNV_Data[0]=0xEE;
    write_SNV();
    read_SNV();
    ble_cus_custom_value_update(p_cus,5,9);

}
void Charcteristics_10(uint8_t test)
{
}
void battery_calculation()
{
    uint16_t t_adc=0;
    t_adc=adc_result;

    adc_voltage_mv = ADC_RESULT_IN_MILLI_VOLTS(t_adc);
    adc_voltage_mv=adc_voltage_mv*2;

    if(adc_voltage_mv&amp;gt;4200)
    {
     percentage=255;
    }   
    else if(adc_voltage_mv&amp;gt;4100&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=4200)
    {
     percentage=100;
    }
    else if(adc_voltage_mv&amp;gt;4000&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=4100)
    {
     percentage=90;
    }
    else if(adc_voltage_mv&amp;gt;3900&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=4000)
    {
    percentage=80;
    }
    else if(adc_voltage_mv&amp;gt;3800&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3900)
    {
     percentage=70;
    }
    else if(adc_voltage_mv&amp;gt;3700&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3800)
    {
    percentage=60;
    }
    else if(adc_voltage_mv&amp;gt;3600&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3700)
    {
     percentage=50;
    }
    else if(adc_voltage_mv&amp;gt;3500&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3600)
    {
    percentage=40;
    }
    else if(adc_voltage_mv&amp;gt;3400&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3500)
    {
     percentage=30;
    }
    else if(adc_voltage_mv&amp;gt;3300&amp;amp;&amp;amp;adc_voltage_mv&amp;lt;=3400)
    {
    percentage=10;
    }
    else if(adc_voltage_mv&amp;lt;3300)
    {
    percentage=0;
    }

    NRF_LOG_INFO(&amp;quot;Voltage         : %d mV&amp;quot;, adc_voltage_mv);
    NRF_LOG_INFO(&amp;quot;Percentage      : %d %&amp;quot;, percentage);
    NRF_LOG_INFO(&amp;quot;--------------------------------------&amp;quot;);

    ble_cus_custom_value_update(p_cus,percentage,8);
}



/////////////////////////////////////////////////////////////////////////////// Charcteristics Functions


static void Delay_Event_handler(void * p_context)
{
    ret_code_t err_code;
}

static void advertising_start(bool erase_bonds);


/**@brief Callback function for asserts in the SoftDevice.
 *
 * @details This function will be called in case of an assert in the SoftDevice.
 *
 * @warning This handler is an example only and does not fit a final product. You need to analyze
 *          how your product is supposed to react in case of Assert.
 * @warning On assert from the SoftDevice, the system can only recover on reset.
 *
 * @param[in] line_num   Line number of the failing ASSERT call.
 * @param[in] file_name  File name of the failing ASSERT call.
 */
void assert_nrf_callback(uint16_t line_num, const uint8_t * p_file_name)
{
    app_error_handler(DEAD_BEEF, line_num, p_file_name);
}


/**@brief Function for handling Peer Manager events.
 *
 * @param[in] p_evt  Peer Manager event.
 */
static void pm_evt_handler(pm_evt_t const * p_evt)
{
    pm_handler_on_pm_evt(p_evt);
    pm_handler_flash_clean(p_evt);

    switch (p_evt-&amp;gt;evt_id)
    {
        case PM_EVT_PEERS_DELETE_SUCCEEDED:
            advertising_start(false);
        break;

        case PM_EVT_CONN_SEC_CONFIG_REQ:
        {
            // Allow pairing request from an already bonded peer.
            pm_conn_sec_config_t conn_sec_config = {.allow_repairing = true};
            pm_conn_sec_config_reply(p_evt-&amp;gt;conn_handle, &amp;amp;conn_sec_config);
        } 
        break;

        default:
            break;
    }
}


/**@brief Function for the Timer initialization.
 *
 * @details Initializes the timer module. This creates and starts application timers.
 */
static void timers_init(void)
{
    // Initialize timer module.
    ret_code_t err_code = app_timer_init();
    APP_ERROR_CHECK(err_code);


    err_code = app_timer_create(&amp;amp;Delay_Event,
                                APP_TIMER_MODE_SINGLE_SHOT,
                                Delay_Event_handler);
    APP_ERROR_CHECK(err_code);


    // Create timers.

    /* YOUR_JOB: Create any timers to be used by the application.
                 Below is an example of how to create a timer.
                 For every new timer needed, increase the value of the macro APP_TIMER_MAX_TIMERS by
                 one.
       ret_code_t err_code;
       err_code = app_timer_create(&amp;amp;m_app_timer_id, APP_TIMER_MODE_REPEATED, timer_timeout_handler);
       APP_ERROR_CHECK(err_code); */
}


/**@brief Function for the GAP initialization.
 *
 * @details This function sets up all the necessary GAP (Generic Access Profile) parameters of the
 *          device including the device name, appearance, and the preferred connection parameters.
 */
static void gap_params_init(void)
{
    ret_code_t              err_code;
    ble_gap_conn_params_t   gap_conn_params;
    ble_gap_conn_sec_mode_t sec_mode;
    security_req_t level;


    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;sec_mode);

    err_code = sd_ble_gap_device_name_set(&amp;amp;sec_mode,
                                          (const uint8_t *)DEVICE_NAME,
                                          strlen(DEVICE_NAME));
    APP_ERROR_CHECK(err_code);

    /* YOUR_JOB: Use an appearance value matching the application&amp;#39;s use case.
       err_code = sd_ble_gap_appearance_set(BLE_APPEARANCE_);
       APP_ERROR_CHECK(err_code); */

    memset(&amp;amp;gap_conn_params, 0, sizeof(gap_conn_params));

    gap_conn_params.min_conn_interval = MIN_CONN_INTERVAL;
    gap_conn_params.max_conn_interval = MAX_CONN_INTERVAL;
    gap_conn_params.slave_latency     = SLAVE_LATENCY;
    gap_conn_params.conn_sup_timeout  = CONN_SUP_TIMEOUT;

    err_code = sd_ble_gap_ppcp_set(&amp;amp;gap_conn_params);
    APP_ERROR_CHECK(err_code);



}
/**@brief Function for initializing the GATT module.
 */
static void gatt_init(void)
{
    ret_code_t err_code = nrf_ble_gatt_init(&amp;amp;m_gatt, NULL);
    APP_ERROR_CHECK(err_code);
}


/**@brief Function for handling Queued Write Module errors.
 *
 * @details A pointer to this function will be passed to each service which may need to inform the
 *          application about an error.
 *
 * @param[in]   nrf_error   Error code containing information about what went wrong.
 */
static void nrf_qwr_error_handler(uint32_t nrf_error)
{
    APP_ERROR_HANDLER(nrf_error);
}


/**@brief Function for handling the YYY Service events.
 * YOUR_JOB implement a service handler function depending on the event the service you are using can generate
 *
 * @details This function will be called for all YY Service events which are passed to
 *          the application.
 *
 * @param[in]   p_yy_service   YY Service structure.
 * @param[in]   p_evt          Event received from the YY Service.
 *
 *
static void on_yys_evt(ble_yy_service_t     * p_yy_service,
                       ble_yy_service_evt_t * p_evt)
{
    switch (p_evt-&amp;gt;evt_type)
    {
        case BLE_YY_NAME_EVT_WRITE:
            APPL_LOG(&amp;quot;[APPL]: charact written with value %s. &amp;quot;, p_evt-&amp;gt;params.char_xx.value.p_str);
            break;

        default:
            // No implementation needed.
            break;
    }
}
*/

/**@brief Function for initializing services that will be used by the application.
 */
static void services_init(void)
{

/* YOUR_JOB: Add code to initialize the services used by the application.*/
    ret_code_t         err_code;
    ble_cus_init_t     cus_init;
    ble_dis_init_t     dis_init;
    nrf_ble_qwr_init_t qwr_init = {0};


     // Initialize CUS Service init structure to zero.
    memset(&amp;amp;cus_init, 0, sizeof(cus_init));
	
     // Initialize Queued Write Module.
    qwr_init.error_handler = nrf_qwr_error_handler;

    err_code = nrf_ble_qwr_init(&amp;amp;m_qwr, &amp;amp;qwr_init);
    APP_ERROR_CHECK(err_code);

    // Initialize Device Information Service.
    memset(&amp;amp;dis_init, 0, sizeof(dis_init));


    ble_gap_addr_t ble_addr;
    sd_ble_gap_addr_get(&amp;amp;ble_addr);

    uint64_t MANUFACTURER_ID;
    uint32_t ORG_UNIQUE_ID;

    MANUFACTURER_ID=ble_addr.addr[2];
    MANUFACTURER_ID=(MANUFACTURER_ID*0x100)+ble_addr.addr[1];
    MANUFACTURER_ID=(MANUFACTURER_ID*0x100)+ble_addr.addr[0];

    ORG_UNIQUE_ID=ble_addr.addr[5];
    ORG_UNIQUE_ID=(ORG_UNIQUE_ID*0x100)+ble_addr.addr[4];
    ORG_UNIQUE_ID=(ORG_UNIQUE_ID*0x100)+ble_addr.addr[3];


    ble_dis_sys_id_t system_id;
    system_id.manufacturer_id            = MANUFACTURER_ID;
    system_id.organizationally_unique_id = ORG_UNIQUE_ID;
    dis_init.p_sys_id                    = &amp;amp;system_id;
    dis_init.dis_char_rd_sec = SEC_OPEN;

    ble_srv_ascii_to_utf8(&amp;amp;dis_init.model_num_str, (char *)MODEL_NUMBER);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.serial_num_str, (char *)SERIAL_NUMBER);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.fw_rev_str, (char *)FIRMWARE_NUMBER);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.hw_rev_str, (char *)HARDWARE_NUMBER);
    ble_srv_ascii_to_utf8(&amp;amp;dis_init.manufact_name_str, (char *)MANUFACTURER_NAME);

    err_code = ble_dis_init(&amp;amp;dis_init);
    APP_ERROR_CHECK(err_code);



    ble_gatts_attr_md_t cccd_md;
    memset(&amp;amp;cccd_md, 0, sizeof(cccd_md));

    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;cccd_md.read_perm);
    BLE_GAP_CONN_SEC_MODE_SET_OPEN(&amp;amp;cccd_md.write_perm);


    BLE_GAP_CONN_SEC_MODE_SET_ENC_NO_MITM(&amp;amp;cus_init.custom_value_char_attr_md.read_perm);
    BLE_GAP_CONN_SEC_MODE_SET_ENC_NO_MITM(&amp;amp;cus_init.custom_value_char_attr_md.write_perm);

    err_code = ble_cus_init(&amp;amp;m_cus, &amp;amp;cus_init);
    APP_ERROR_CHECK(err_code);
            


    /*
    /* YOUR_JOB: Add code to initialize the services used by the application.
       ble_xxs_init_t                     xxs_init;
       ble_yys_init_t                     yys_init;

       // Initialize XXX Service.
       memset(&amp;amp;xxs_init, 0, sizeof(xxs_init));

       xxs_init.evt_handler                = NULL;
       xxs_init.is_xxx_notify_supported    = true;
       xxs_init.ble_xx_initial_value.level = 100;

       err_code = ble_bas_init(&amp;amp;m_xxs, &amp;amp;xxs_init);
       APP_ERROR_CHECK(err_code);

       // Initialize YYY Service.
       memset(&amp;amp;yys_init, 0, sizeof(yys_init));
       yys_init.evt_handler                  = on_yys_evt;
       yys_init.ble_yy_initial_value.counter = 0;

       err_code = ble_yy_service_init(&amp;amp;yys_init, &amp;amp;yy_init);
       APP_ERROR_CHECK(err_code);
     */



}


/**@brief Function for handling the Connection Parameters Module.
 *
 * @details This function will be called for all events in the Connection Parameters Module which
 *          are passed to the application.
 *          @note All this function does is to disconnect. This could have been done by simply
 *                setting the disconnect_on_fail config parameter, but instead we use the event
 *                handler mechanism to demonstrate its use.
 *
 * @param[in] p_evt  Event received from the Connection Parameters Module.
 */
static void on_conn_params_evt(ble_conn_params_evt_t * p_evt)
{
    ret_code_t err_code;

    if (p_evt-&amp;gt;evt_type == BLE_CONN_PARAMS_EVT_FAILED)
    {
        err_code = sd_ble_gap_disconnect(m_conn_handle, BLE_HCI_CONN_INTERVAL_UNACCEPTABLE);
        APP_ERROR_CHECK(err_code);
    }
}


/**@brief Function for handling a Connection Parameters error.
 *
 * @param[in] nrf_error  Error code containing information about what went wrong.
 */
static void conn_params_error_handler(uint32_t nrf_error)
{
    APP_ERROR_HANDLER(nrf_error);
}


/**@brief Function for initializing the Connection Parameters module.
 */
static void conn_params_init(void)
{
    ret_code_t             err_code;
    ble_conn_params_init_t cp_init;

    memset(&amp;amp;cp_init, 0, sizeof(cp_init));

    cp_init.p_conn_params                  = NULL;
    cp_init.first_conn_params_update_delay = FIRST_CONN_PARAMS_UPDATE_DELAY;
    cp_init.next_conn_params_update_delay  = NEXT_CONN_PARAMS_UPDATE_DELAY;
    cp_init.max_conn_params_update_count   = MAX_CONN_PARAMS_UPDATE_COUNT;
    cp_init.start_on_notify_cccd_handle    = BLE_GATT_HANDLE_INVALID;
    cp_init.disconnect_on_fail             = false;
    cp_init.evt_handler                    = on_conn_params_evt;
    cp_init.error_handler                  = conn_params_error_handler;

    err_code = ble_conn_params_init(&amp;amp;cp_init);
    APP_ERROR_CHECK(err_code);
}


/**@brief Function for starting timers.
 */
static void application_timers_start(void)
{
    /* YOUR_JOB: Start your timers. below is an example of how to start a timer.
       ret_code_t err_code;
       err_code = app_timer_start(m_app_timer_id, TIMER_INTERVAL, NULL);
       APP_ERROR_CHECK(err_code); */

}


/**@brief Function for putting the chip into sleep mode.
 *
 * @note This function will not return.
 */
static void sleep_mode_enter(void)
{
    ret_code_t err_code;

    err_code = bsp_indication_set(BSP_INDICATE_IDLE);
    APP_ERROR_CHECK(err_code);

    // Prepare wakeup buttons.
    err_code = bsp_btn_ble_sleep_mode_prepare();
    APP_ERROR_CHECK(err_code);

    // Go to system-off mode (this function will not return; wakeup will cause a reset).
    err_code = sd_power_system_off();
    APP_ERROR_CHECK(err_code);
}


/**@brief Function for handling advertising events.
 *
 * @details This function will be called for advertising events which are passed to the application.
 *
 * @param[in] ble_adv_evt  Advertising event.
 */
static void on_adv_evt(ble_adv_evt_t ble_adv_evt)
{
    ret_code_t err_code;

    switch (ble_adv_evt)
    {
        case BLE_ADV_EVT_FAST:
            NRF_LOG_INFO(&amp;quot;Fast advertising.&amp;quot;);
            err_code = bsp_indication_set(BSP_INDICATE_ADVERTISING);
            APP_ERROR_CHECK(err_code);
            break;

        case BLE_ADV_EVT_IDLE:
            sleep_mode_enter();
            break;

        default:
            break;
    }
}


/**@brief Function for handling BLE events.
 *
 * @param[in]   p_ble_evt   Bluetooth stack event.
 * @param[in]   p_context   Unused.
 */
static void ble_evt_handler(ble_evt_t const * p_ble_evt, void * p_context)
{
    ret_code_t err_code = NRF_SUCCESS;

    switch (p_ble_evt-&amp;gt;header.evt_id)
    {
        case BLE_GAP_EVT_DISCONNECTED:
            NRF_LOG_INFO(&amp;quot;Disconnected.&amp;quot;);
            // LED indication will be changed when advertising starts.
//        regular_chk=0;
  //      masterokforeg=0;
    //    connection_state=0;
      //  err_code = app_timer_start(Disconnect_Commands, APP_TIMER_TICKS(3000), NULL);
        break;

        case BLE_GAP_EVT_CONNECTED:
            NRF_LOG_INFO(&amp;quot;Connected.&amp;quot;);
            err_code = bsp_indication_set(BSP_INDICATE_CONNECTED);
            APP_ERROR_CHECK(err_code);
            m_conn_handle = p_ble_evt-&amp;gt;evt.gap_evt.conn_handle;
            err_code = nrf_ble_qwr_conn_handle_assign(&amp;amp;m_qwr, m_conn_handle);
            APP_ERROR_CHECK(err_code);
//      pins_chk=1;
//    connection_state=1;
//  State_LED=1;
//      osal_start_timerEx( simpleBLEPeripheral_TaskID, Regular_Check_Timer ,300000); 



            break;

        case BLE_GAP_EVT_PHY_UPDATE_REQUEST:
        {
            NRF_LOG_DEBUG(&amp;quot;PHY update request.&amp;quot;);
            ble_gap_phys_t const phys =
            {
                .rx_phys = BLE_GAP_PHY_AUTO,
                .tx_phys = BLE_GAP_PHY_AUTO,
            };
            err_code = sd_ble_gap_phy_update(p_ble_evt-&amp;gt;evt.gap_evt.conn_handle, &amp;amp;phys);
            APP_ERROR_CHECK(err_code);
        } break;

        case BLE_GATTC_EVT_TIMEOUT:
            // Disconnect on GATT Client timeout event.
            NRF_LOG_DEBUG(&amp;quot;GATT Client Timeout.&amp;quot;);
            err_code = sd_ble_gap_disconnect(p_ble_evt-&amp;gt;evt.gattc_evt.conn_handle,
                                             BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION);
            APP_ERROR_CHECK(err_code);
            break;

        case BLE_GATTS_EVT_TIMEOUT:
            // Disconnect on GATT Server timeout event.
            NRF_LOG_DEBUG(&amp;quot;GATT Server Timeout.&amp;quot;);
            err_code = sd_ble_gap_disconnect(p_ble_evt-&amp;gt;evt.gatts_evt.conn_handle,
                                             BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION);
            APP_ERROR_CHECK(err_code);
            break;

        default:
            // No implementation needed.
            break;
    }
}


/**@brief Function for initializing the BLE stack.
 *
 * @details Initializes the SoftDevice and the BLE event interrupt.
 */
static void ble_stack_init(void)
{
    ret_code_t err_code;

    err_code = nrf_sdh_enable_request();
    APP_ERROR_CHECK(err_code);

    // Configure the BLE stack using the default settings.
    // Fetch the start address of the application RAM.
    uint32_t ram_start = 0;
    err_code = nrf_sdh_ble_default_cfg_set(APP_BLE_CONN_CFG_TAG, &amp;amp;ram_start);
    APP_ERROR_CHECK(err_code);

    // Enable BLE stack.
    err_code = nrf_sdh_ble_enable(&amp;amp;ram_start);
    APP_ERROR_CHECK(err_code);

    // Register a handler for BLE events.
    NRF_SDH_BLE_OBSERVER(m_ble_observer, APP_BLE_OBSERVER_PRIO, ble_evt_handler, NULL);
}


/**@brief Function for the Peer Manager initialization.
 */
static void peer_manager_init(void)
{
    ble_gap_sec_params_t sec_param;
    ret_code_t           err_code;

    err_code = pm_init();
    APP_ERROR_CHECK(err_code);

    memset(&amp;amp;sec_param, 0, sizeof(ble_gap_sec_params_t));

    // Security parameters to be used for all security procedures.
    sec_param.bond           = SEC_PARAM_BOND;
    sec_param.mitm           = SEC_PARAM_MITM;
    sec_param.lesc           = SEC_PARAM_LESC;
    sec_param.keypress       = SEC_PARAM_KEYPRESS;
    sec_param.io_caps        = SEC_PARAM_IO_CAPABILITIES;
    sec_param.oob            = SEC_PARAM_OOB;
    sec_param.min_key_size   = SEC_PARAM_MIN_KEY_SIZE;
    sec_param.max_key_size   = SEC_PARAM_MAX_KEY_SIZE;
    sec_param.kdist_own.enc  = 1;
    sec_param.kdist_own.id   = 1;
    sec_param.kdist_peer.enc = 1;
    sec_param.kdist_peer.id  = 1;

    err_code = pm_sec_params_set(&amp;amp;sec_param);
    APP_ERROR_CHECK(err_code);

    err_code = pm_register(pm_evt_handler);
    APP_ERROR_CHECK(err_code);
}


/**@brief Clear bond information from persistent storage.
 */
static void delete_bonds(void)
{
    ret_code_t err_code;

    NRF_LOG_INFO(&amp;quot;Erase bonds!&amp;quot;);

    err_code = pm_peers_delete();
    APP_ERROR_CHECK(err_code);
}


/**@brief Function for handling events from the BSP module.
 *
 * @param[in]   event   Event generated when button is pressed.
 */
static void bsp_event_handler(bsp_event_t event)
{
    ret_code_t err_code;

    switch (event)
    {
        case BSP_EVENT_SLEEP:
            sleep_mode_enter();
            break; // BSP_EVENT_SLEEP

        case BSP_EVENT_DISCONNECT:
            err_code = sd_ble_gap_disconnect(m_conn_handle,
                                             BLE_HCI_REMOTE_USER_TERMINATED_CONNECTION);
            if (err_code != NRF_ERROR_INVALID_STATE)
            {
                APP_ERROR_CHECK(err_code);
            }
            break; // BSP_EVENT_DISCONNECT

        case BSP_EVENT_WHITELIST_OFF:
            if (m_conn_handle == BLE_CONN_HANDLE_INVALID)
            {
                err_code = ble_advertising_restart_without_whitelist(&amp;amp;m_advertising);
                if (err_code != NRF_ERROR_INVALID_STATE)
                {
                    APP_ERROR_CHECK(err_code);
                }
            }
            break; // BSP_EVENT_KEY_0

        default:
            break;
    }
}

/**@brief Function for initializing the Advertising functionality.
 */
static void advertising_init(void)
{
    ret_code_t             err_code;
    ble_advertising_init_t init;

    memset(&amp;amp;init, 0, sizeof(init));

    init.advdata.name_type               = BLE_ADVDATA_FULL_NAME;
    init.advdata.include_appearance      = true;
    init.advdata.flags                   = BLE_GAP_ADV_FLAGS_LE_ONLY_GENERAL_DISC_MODE;
    init.srdata.uuids_complete.uuid_cnt = sizeof(m_adv_uuids) / sizeof(m_adv_uuids[0]);
    init.srdata.uuids_complete.p_uuids  = m_adv_uuids;

    init.config.ble_adv_fast_enabled  = true;
    init.config.ble_adv_fast_interval = APP_ADV_INTERVAL;
    init.config.ble_adv_fast_timeout  = APP_ADV_DURATION;//

    init.evt_handler = on_adv_evt;

    err_code = ble_advertising_init(&amp;amp;m_advertising, &amp;amp;init);
    APP_ERROR_CHECK(err_code);

    ble_advertising_conn_cfg_tag_set(&amp;amp;m_advertising, APP_BLE_CONN_CFG_TAG);
}


/**@brief Function for initializing buttons and leds.
 *
 * @param[out] p_erase_bonds  Will be true if the clear bonding button was pressed to wake the application up.
 */
static void buttons_leds_init(bool * p_erase_bonds)
{
    ret_code_t err_code;
    bsp_event_t startup_event;

    err_code = bsp_init(BSP_INIT_LEDS | BSP_INIT_BUTTONS, bsp_event_handler);
    APP_ERROR_CHECK(err_code);

    err_code = bsp_btn_ble_init(NULL, &amp;amp;startup_event);
    APP_ERROR_CHECK(err_code);

    *p_erase_bonds = (startup_event == BSP_EVENT_CLEAR_BONDING_DATA);
}


/**@brief Function for initializing the nrf log module.
 */
static void log_init(void)
{
    ret_code_t err_code = NRF_LOG_INIT(NULL);
    APP_ERROR_CHECK(err_code);

    NRF_LOG_DEFAULT_BACKENDS_INIT();
}


/**@brief Function for initializing power management.
 */
static void power_management_init(void)
{
    ret_code_t err_code;
    err_code = nrf_pwr_mgmt_init();
    APP_ERROR_CHECK(err_code);
}
/**@brief   Sleep until an event is received. */
static void power_manage(void)
{
    (void) sd_app_evt_wait();
}

static void fstorage_evt_handler(nrf_fstorage_evt_t * p_evt)
{
    if (p_evt-&amp;gt;result != NRF_SUCCESS)
    {
        NRF_LOG_INFO(&amp;quot;--&amp;gt; Event received: ERROR while executing an fstorage operation.&amp;quot;);
        return;
    }

    switch (p_evt-&amp;gt;id)
    {
        case NRF_FSTORAGE_EVT_WRITE_RESULT:
        {
            NRF_LOG_INFO(&amp;quot;--&amp;gt; Event received: wrote %d bytes at address 0x%x.&amp;quot;,
                         p_evt-&amp;gt;len, p_evt-&amp;gt;addr);
        } break;

        case NRF_FSTORAGE_EVT_ERASE_RESULT:
        {
            NRF_LOG_INFO(&amp;quot;--&amp;gt; Event received: erased %d page from address 0x%x.&amp;quot;,
                         p_evt-&amp;gt;len, p_evt-&amp;gt;addr);
        } break;

        default:
            break;
    }
}


static void print_flash_info(nrf_fstorage_t * p_fstorage)
{
    NRF_LOG_INFO(&amp;quot;========| flash info |========&amp;quot;);
    NRF_LOG_INFO(&amp;quot;erase unit: \t%d bytes&amp;quot;,      p_fstorage-&amp;gt;p_flash_info-&amp;gt;erase_unit);
    NRF_LOG_INFO(&amp;quot;program unit: \t%d bytes&amp;quot;,    p_fstorage-&amp;gt;p_flash_info-&amp;gt;program_unit);
    NRF_LOG_INFO(&amp;quot;==============================&amp;quot;);
}


void wait_for_flash_ready(nrf_fstorage_t const * p_fstorage)
{
    /* While fstorage is busy, sleep and wait for an event. */
    while (nrf_fstorage_is_busy(p_fstorage))
    {
        power_manage();
    }
}

/**@brief Function for handling the idle state (main loop).
 *
 * @details If there is no pending log operation, then sleep until next the next event occurs.
 */
static void idle_state_handle(void)
{
    if (NRF_LOG_PROCESS() == false)
    {
        nrf_pwr_mgmt_run();
    }
}


/**@brief Function for starting advertising.
 */
static void advertising_start(bool erase_bonds)
{
    if (erase_bonds == true)
    {
        delete_bonds();
        // Advertising is started by PM_EVT_PEERS_DELETED_SUCEEDED event
    }
    else
    {
        ret_code_t err_code = ble_advertising_start(&amp;amp;m_advertising, BLE_ADV_MODE_FAST);

        APP_ERROR_CHECK(err_code);
    }
}
/**
 * @brief Function for configuring: PIN_IN pin for input, PIN_OUT pin for output,
 * and configures GPIOTE to give an interrupt on pin change.
 */
static void gpio_init(void)
{
    ret_code_t err_code;

    nrf_gpio_cfg_output(Signal_LED);
    nrf_gpio_cfg_output(State_LED);

    nrf_gpio_cfg_output(Servo_Pin);
    nrf_gpio_cfg_output(Blocker_Pin);

    err_code = nrf_drv_gpiote_init();
    APP_ERROR_CHECK(err_code);

    nrf_drv_gpiote_out_config_t out_config = GPIOTE_CONFIG_OUT_SIMPLE(false);

    nrf_drv_gpiote_in_config_t in_config = GPIOTE_CONFIG_IN_SENSE_TOGGLE(true);
    in_config.pull = NRF_GPIO_PIN_PULLUP;

}

/**@brief Function starting the internal LFCLK oscillator.
 *
 * @details This is needed by RTC1 which is used by the Application Timer
 *          (When SoftDevice is enabled the LFCLK is always running and this is not needed).
 */
static void lfclk_request(void)
{
    ret_code_t err_code = nrf_drv_clock_init();
    APP_ERROR_CHECK(err_code);
    nrf_drv_clock_lfclk_request(NULL);
}
static void pwm_init_f(void)
{
// a variable to hold err_code value
  ret_code_t err_code;

//  create a pwm config struct and pass it the default configurations along with the pin number for pwm and period in microseconds
// here we have configured one channel, we can configure max up to two channels per pwm instance in this library, if we use two channels then we need to pass two pins
  app_pwm_config_t pwm_cfg = APP_PWM_DEFAULT_CONFIG_1CH(TIME_PERIOD, Servo_Pin);

// change the pwm polarity by setting this value so that logic high value is given as active signal and duty is set for the logic high signal
// we can change it to give the active low signal as well for manipulating the logic low duty
  pwm_cfg.pin_polarity[0] = APP_PWM_POLARITY_ACTIVE_HIGH;

// Initialize the pwm and pass it the intance, configurations and handler, we can also write NULL if we don&amp;#39;t want to use the handler 
  err_code = app_pwm_init(&amp;amp;PWM1, &amp;amp;pwm_cfg, NULL);
  APP_ERROR_CHECK(err_code);// check if any error occurred during initialization
// enable the pwm signal so that the pwm is started on the specified pin
  app_pwm_enable(&amp;amp;PWM1);
}

void saadc_callback(nrf_drv_saadc_evt_t const * p_event)
{
    ret_code_t err_code;
    uint32_t buffer_samples = 0;

      switch(p_event-&amp;gt;type)
      {
        case NRF_DRV_SAADC_EVT_DONE:
        {
          buffer_samples = 0;
          adc_result = 0;

          err_code =nrf_drv_saadc_buffer_convert(p_event-&amp;gt;data.done.p_buffer, SAMPLES_IN_BUFFER);     
          APP_ERROR_CHECK(err_code);

          m_adc_evt_counter++;

//          NRF_LOG_INFO(&amp;quot;ADC event number: %d&amp;quot;, (int)m_adc_evt_counter);

          for (uint8_t i = 0; i &amp;lt; SAMPLES_IN_BUFFER; i++)
          {
              buffer_samples += p_event-&amp;gt;data.done.p_buffer[i];
          }

          adc_result = buffer_samples/SAMPLES_IN_BUFFER;
          NRF_LOG_INFO(&amp;quot;adc result : %d.&amp;quot;, adc_result);
          battery_calculation();
        }
        break;

        default:
          NRF_LOG_INFO(&amp;quot;Default Called&amp;quot;);
        break;
      
      }
}


void saadc_init(void)
{
    ret_code_t err_code;
    nrf_saadc_channel_config_t channel_config =
    NRF_DRV_SAADC_DEFAULT_CHANNEL_CONFIG_SE(NRF_SAADC_INPUT_AIN4);

    // changing the saadc resolution to 14bit
    nrf_drv_saadc_config_t saadc_config ;
    saadc_config.resolution = NRF_SAADC_RESOLUTION_14BIT;

    err_code = nrf_drv_saadc_init(NULL, saadc_callback);
    APP_ERROR_CHECK(err_code);

    err_code = nrf_drv_saadc_channel_init(0, &amp;amp;channel_config);
    APP_ERROR_CHECK(err_code);

    err_code = nrf_drv_saadc_buffer_convert(m_buffer_pool[0], SAMPLES_IN_BUFFER);
    APP_ERROR_CHECK(err_code);

//    err_code = nrf_drv_saadc_buffer_convert(m_buffer_pool[1], SAMPLES_IN_BUFFER);
//    APP_ERROR_CHECK(err_code);

}
void fstorage_init_f(void)
{
    ret_code_t rc;

    nrf_fstorage_api_t * p_fs_api;
    p_fs_api = &amp;amp;nrf_fstorage_sd;

    rc = nrf_fstorage_init(&amp;amp;fstorage, p_fs_api, NULL);
    APP_ERROR_CHECK(rc);
}


/**@brief Function for application main entry.
 */
int main(void)
{
    bool erase_bonds;
    // Initialize.
    log_init();
    lfclk_request();
    gpio_init();
    timers_init();
    buttons_leds_init(&amp;amp;erase_bonds);
    power_management_init();
    ble_stack_init();
    gap_params_init();
    gatt_init();
    services_init();
    advertising_init();
    conn_params_init();
    peer_manager_init();
    pwm_init_f();

    saadc_init();

//    cli_init();
    fstorage_init_f();
    
    // Start execution.
    NRF_LOG_INFO(&amp;quot;Template example started.&amp;quot;);
    application_timers_start();

    advertising_start(erase_bonds);

    uint32_t err_code = sd_ble_gap_tx_power_set(BLE_GAP_TX_POWER_ROLE_ADV, m_advertising.adv_handle, 8); 
    APP_ERROR_CHECK(err_code); 

    write_SNV();
    read_SNV();

    Charcteristics_9(5);
/*
    SNV_Data[0]=0xEE;
    write_SNV();
    read_SNV();
    if(Test_SNV_Data[0]==0xEE)
    {
      NRF_LOG_INFO(&amp;quot;Template example started.&amp;quot;);
    }
*/
    // Enter main loop.
    for (;;)
    {
        idle_state_handle();
    }
}


/**
 * @}
 */
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/279635?ContentTypeID=1</link><pubDate>Thu, 12 Nov 2020 08:29:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:45b770f1-147e-49f7-a700-40509737ff0a</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Edvin is on leave for the time being, so I have been assigned to this case while he is away.&lt;/p&gt;
&lt;p&gt;Regarding your issue with the Characteristics_9(). When debugging, do you see any kind of error code in either the write_SNV() or read_SNV() functions? Does the application work as intended if just one of these functions are included? What I think is going on is that you try calling wither write or read _SNV before the flash is ready. You need to make sure that the reading/writing is completed and the flash is ready for a new operation first.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/279400?ContentTypeID=1</link><pubDate>Wed, 11 Nov 2020 07:44:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dc91aefb-0591-40a8-b0d2-26e431fc8bce</guid><dc:creator>Muqarrab</dc:creator><description>[quote userid="26071" url="~/f/nordic-q-a/66816/flash-memory-issue/278192#278192"]Did you find the reason for your previous issue? that the write function returned invalid length?[/quote]
&lt;p&gt;I have changed the data length (set ~12) and it&amp;#39;s working now.&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
[quote userid="26071" url="~/f/nordic-q-a/66816/flash-memory-issue/278192#278192"]&lt;p&gt;Do you have several (and probably different) implementations of wait_for_flash_ready()?&lt;/p&gt;
&lt;p&gt;When you compile it should say something like &amp;quot;your previous definition was here&amp;quot;, which points to another place.&lt;/p&gt;[/quote]
&lt;p&gt;NO, I have only one implementation in main.c.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;void fstorage_init_f(void)
{
    ret_code_t rc;

    nrf_fstorage_api_t * p_fs_api;
    p_fs_api = &amp;amp;nrf_fstorage_sd;

    rc = nrf_fstorage_init(&amp;amp;fstorage, p_fs_api, NULL);
    APP_ERROR_CHECK(rc);
}
&lt;/pre&gt;&lt;/p&gt;
[quote userid="26071" url="~/f/nordic-q-a/66816/flash-memory-issue/278192#278192"]I guess your wait_for_flash_ready() doesn&amp;#39;t return, which suggests that you don&amp;#39;t get the event. Is that correct? From where do you call&amp;nbsp;Charcteristics_9()? Inside an interrupt, by any chance? Try to call it from your main() function. Does it get executed then?[/quote]
&lt;p&gt;I have called the function in main and its working. But when I write on characteristics and called the same function it does not work. Does any suggestion please?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/278192?ContentTypeID=1</link><pubDate>Tue, 03 Nov 2020 07:41:21 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a77ec945-15e2-41e3-a6cd-d3c11dec5f0e</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;Did you find the reason for your previous issue? that the write function returned invalid length?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user="muqarrab_rahman"]Why I am getting this warning?[/quote]
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Do you have several (and probably different) implementations of wait_for_flash_ready()?&lt;/p&gt;
&lt;p&gt;When you compile it should say something like &amp;quot;your previous definition was here&amp;quot;, which points to another place.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;NO RESPONSE from what function?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
[quote user="muqarrab_rahman"]As I comment&amp;nbsp; &lt;strong&gt;write_SNV(); read_SNV();&amp;nbsp;&lt;/strong&gt;these functions print statment start wotking.&lt;br /&gt;What is the problem? Does any suggestion please?[/quote]
&lt;p&gt;&amp;nbsp;I guess your wait_for_flash_ready() doesn&amp;#39;t return, which suggests that you don&amp;#39;t get the event. Is that correct? From where do you call&amp;nbsp;Charcteristics_9()? Inside an interrupt, by any chance? Try to call it from your main() function. Does it get executed then?&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/278090?ContentTypeID=1</link><pubDate>Mon, 02 Nov 2020 13:40:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4ddc1095-c164-437b-aad2-e641252bead4</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/edvin-holmseth"&gt;Edvin&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;I think flash memory is very sensitive.&amp;nbsp;&lt;span class="emoticon" data-url="https://devzone.nordicsemi.com/cfs-file/__key/system/emoji/1f913.svg" title="Nerd"&gt;&amp;#x1f913;&lt;/span&gt;&lt;br /&gt;Now I am adding the Flash memory part to my main project.&lt;br /&gt;So here are some new points I want to discuss.&lt;br /&gt;&lt;br /&gt;1-I have made these functions to read/write. As per your instruction.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;char      SNV_Data[]   =&amp;quot;Muqarrab112&amp;quot;;
char Test_SNV_Data[]   =&amp;quot;11223344556&amp;quot;;


/////////////////////////////////////////////////////////////////////////////// SNV

void write_SNV()
{
    ret_code_t rc;
    //SNV_Data[0]=0xEE;



    sd_flash_page_erase(0xf4);

    NRF_LOG_INFO(&amp;quot;Writing \&amp;quot;%s\&amp;quot; to flash.&amp;quot;, SNV_Data);
    rc = nrf_fstorage_write(&amp;amp;fstorage, 0xf4000, SNV_Data, sizeof(SNV_Data), NULL);
    APP_ERROR_CHECK(rc);

    wait_for_flash_ready(&amp;amp;fstorage);
    NRF_LOG_INFO(&amp;quot;Writing Done&amp;quot;);

}

uint32_t read_SNV()
{
    ret_code_t rc;

    rc = nrf_fstorage_read(&amp;amp;fstorage, 0xf4000, Test_SNV_Data, sizeof(Test_SNV_Data));
    APP_ERROR_CHECK(rc);


    NRF_LOG_INFO(&amp;quot;Reading from flash hex:&amp;quot;);
    for(uint8_t i=0; i&amp;lt;sizeof(Test_SNV_Data); i++)
    {
        NRF_LOG_RAW_INFO(&amp;quot;%02x:&amp;quot;, Test_SNV_Data[i]);
    //    NRF_LOG_INFO(&amp;quot;Reading from flash char Hex %h :&amp;quot;,Test_SNV_Data[i] );
    }

    NRF_LOG_RAW_INFO(&amp;quot;\r\n&amp;quot;);
    NRF_LOG_INFO(&amp;quot;Reading from flash char:&amp;quot;);
    for(uint8_t i=0; i&amp;lt;sizeof(Test_SNV_Data); i++)
    {
        NRF_LOG_RAW_INFO(&amp;quot;%c&amp;quot;, Test_SNV_Data[i]);
    }
    NRF_LOG_RAW_INFO(&amp;quot;\r\n&amp;quot;);

    NRF_LOG_INFO(&amp;quot;Reading Done&amp;quot;);
}
/////////////////////////////////////////////////////////////////////////////// SNV
&lt;/pre&gt;&lt;br /&gt;Why I am getting this warning?&lt;/p&gt;
&lt;p&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1604323622688v2.png" /&gt;&lt;br /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1604323508315v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;2-I am calling these two functions in main and they are working fine.&lt;br /&gt;&lt;img alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1604323789763v3.png" /&gt;&lt;br /&gt;BUT when I am calling after connection they are not responding anything? NO RESPONSE from this function(When I write on characteristic 9 I call this function) even not print anything.&lt;br /&gt;As I comment&amp;nbsp; &lt;strong&gt;write_SNV(); read_SNV();&amp;nbsp;&lt;/strong&gt;these functions print statment start wotking.&lt;br /&gt;What is the problem? Does any suggestion please?&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;void Charcteristics_9(uint8_t test)
{
    NRF_LOG_INFO(&amp;quot;Memory Function&amp;quot;);

    SNV_Data[0]=0xEE;
    write_SNV();
    read_SNV();
    ble_cus_custom_value_update(p_cus,5,9);

}
&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;3-&lt;/p&gt;
[quote userid="26071" url="~/f/nordic-q-a/66816/flash-memory-issue/276371#276371"]The secure_bootloader\pca10056_s140_ble bootloader has a flash start address of&amp;nbsp;0xf8000. So if you use this one, then it means that the FDS pages are on 0xF7000, 0xF6000 and 0xF5000. You can use 0xF4000-&amp;gt;0xF4FFF.&amp;nbsp;[/quote]
&lt;p&gt;I have set the following address to store values.&lt;br /&gt;&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_FSTORAGE_DEF(nrf_fstorage_t fstorage) =
{
    /* Set a handler for fstorage events. */
    .evt_handler = fstorage_evt_handler,

    /* These below are the boundaries of the flash space assigned to this instance of fstorage.
     * You must set these manually, even at runtime, before nrf_fstorage_init() is called.
     * The function nrf5_flash_end_addr_get() can be used to retrieve the last address on the
     * last page of flash available to write data. */
    .start_addr = 0xf4000,
    .end_addr   = 0xf4fff,
};
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Any suggestion,s please?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/276944?ContentTypeID=1</link><pubDate>Mon, 26 Oct 2020 15:27:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f9377f22-4e8b-48bc-b1b7-0106304239dd</guid><dc:creator>Edvin</dc:creator><description>&lt;p&gt;did you find the reason? I am trying to make you understand what the return value means. Did you check the description above nrf_fstorage_write() in the .h file?&lt;/p&gt;
&lt;p&gt;It works now, but you may encounter it later, and come back to us, either with the same issue, or a similar one. I am trying to explain how to debug these kind of return values.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;So let me help you. The description of nrf_fstorage_write() says:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;/**@brief   Function for writing data to flash.
 *
 * Write @p len bytes from @p p_src to @p dest.
 *
 * When using @ref nrf_fstorage_sd, the data is written by several calls to @ref sd_flash_write if
 * the length of the data exceeds @ref NRF_FSTORAGE_SD_MAX_WRITE_SIZE bytes.
 * Only one event is sent upon completion.
 *
 * @note The data to be written to flash must be kept in memory until the operation has
 *       terminated and an event is received.
 *
 * @param[in]   p_fs        The fstorage instance.
 * @param[in]   dest        Address in flash memory where to write the data.
 * @param[in]   p_src       Data to be written.
 * @param[in]   len         Length of the data (in bytes).
 * @param[in]   p_param     User-defined parameter passed to the event handler (may be NULL).
 *
 * @retval  NRF_SUCCESS                 If the operation was accepted.
 * @retval  NRF_ERROR_NULL              If @p p_fs or @p p_src is NULL.
 * @retval  NRF_ERROR_INVALID_STATE     If the module is not initialized.
 * @retval  NRF_ERROR_INVALID_LENGTH    If @p len is zero or not a multiple of the program unit,
 *                                      or if it is otherwise invalid.
 * @retval  NRF_ERROR_INVALID_ADDR      If the address @p dest is outside the flash memory
 *                                      boundaries specified in @p p_fs, or if it is unaligned.
 * @retval  NRF_ERROR_NO_MEM            If no memory is available to accept the operation.
 *                                      When using the @ref nrf_fstorage_sd, this error
 *                                      indicates that the internal queue of operations is full.
 */
ret_code_t nrf_fstorage_write(nrf_fstorage_t const * p_fs,
                              uint32_t               dest,
                              void           const * p_src,
                              uint32_t               len,
                              void                 * p_param);&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;What does it say about NRF_ERROR_INVALID_LENGTH? It explains two scenarios, and a hint is that the issue was not that the length was 0, because len was 5. So it&amp;nbsp;is related to the length, right?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Flash Memory Issue</title><link>https://devzone.nordicsemi.com/thread/276897?ContentTypeID=1</link><pubDate>Mon, 26 Oct 2020 13:53:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:21333f49-9b7e-4577-a8f4-8ce206f4f766</guid><dc:creator>Muqarrab</dc:creator><description>&lt;p&gt;Hi &lt;a href="https://devzone.nordicsemi.com/members/edvin-holmseth"&gt;Edvin&lt;/a&gt;&lt;br /&gt;It&amp;#39;s STRANGE. I have changed the initializing value and its work.&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;char      SNV_Data[]   =&amp;quot;Muqarrab112&amp;quot;;
char Test_SNV_Data[]   =&amp;quot;Muqarrab112&amp;quot;;
&lt;/pre&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1603720379245v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>