<?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>debuging the nrf break point</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/73326/debuging-the-nrf-break-point</link><description>hello, 
 i am using nrf52840 with coded phy in our customised board and using the long range example as base for my application i have changed the ble_app_blinky to act as a pheripheral and usng that central example as it is and i am getting the long</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 29 Mar 2021 14:57:53 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/73326/debuging-the-nrf-break-point" /><item><title>RE: debuging the nrf break point</title><link>https://devzone.nordicsemi.com/thread/302416?ContentTypeID=1</link><pubDate>Mon, 29 Mar 2021 14:57:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ca22c6e8-aeb4-4a6f-8f8f-c99f74741bf2</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;I am happy to hear that you now are able to resolve the issue! :)&amp;nbsp;&lt;br /&gt;&lt;br /&gt;You can change the RAM size by changing the&amp;nbsp;&lt;em&gt;Section Placement Macros&amp;nbsp;&lt;/em&gt;found in the&amp;nbsp;&lt;em&gt;Linker&amp;nbsp;&lt;/em&gt;tab of the&amp;nbsp;&lt;em&gt;Common&lt;/em&gt; configuration options (same options where you added the DEBUG define in your&amp;nbsp;&lt;em&gt;Preprocessor&amp;nbsp;&lt;/em&gt;tab).&lt;br /&gt;If you change your loggers default debug level to 4, and change the nrf_sdh_ble log level in the sd_config.h - NRF_SDH_BLE_LOG_LEVEL - to 4, then it will print out in the logger the appropriate value you should change your SoftDevice RAM start to, along with the NRF_ERROR_NO_MEM error message.&lt;br /&gt;&lt;br /&gt;Please do not hesitate to open a new ticket if you should encounter any issues or questions in the future.&lt;br /&gt;&lt;br /&gt;Good luck with your development!&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: debuging the nrf break point</title><link>https://devzone.nordicsemi.com/thread/302385?ContentTypeID=1</link><pubDate>Mon, 29 Mar 2021 13:29:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:516ea281-204c-4c3f-bda4-c677fe6b08ff</guid><dc:creator>manikandan</dc:creator><description>&lt;p&gt;thanks i can&amp;nbsp; resolved the issue but i want to know how can i change the ram size for sofdevice 132 is there any documentation regarding this?&lt;/p&gt;
&lt;p&gt;thanks and regards&lt;/p&gt;
&lt;p&gt;manikandan v&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: debuging the nrf break point</title><link>https://devzone.nordicsemi.com/thread/302325?ContentTypeID=1</link><pubDate>Mon, 29 Mar 2021 09:45:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f758d4c-62f4-48ce-8a23-d5f97534b737</guid><dc:creator>Karl Ylvisaker</dc:creator><description>[quote user="manikandanvalaguru"]thanks for your reply now i can debug my issue is this[/quote]
&lt;p&gt;Great! I am happy to hear that you are now able to debug your issues.&lt;/p&gt;
[quote user="manikandanvalaguru"]how can i resolve this i want to run my application smoothly wiithout any issues[/quote]
&lt;p&gt;When an error report is posted, you can look at the function on the line specified in the report. From the error message above, you see that the error was triggered on line 792 of main.c.&lt;br /&gt;What function returned the NRF_ERROR_NO_MEM on this line?&lt;br /&gt;The next thing we do is to check the API Reference for this function, to see why it would return the NRF_ERROR_NO_MEM, and then fix this issue. As an example, if the error was returned from a call to &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Fcom.nordic.infocenter.s140.api.v7.2.0%2Fgroup___b_l_e___c_o_m_m_o_n___f_u_n_c_t_i_o_n_s.html&amp;amp;anchor=ga8a92420df90945526d4c89d09486508d"&gt;sd_ble_enable&lt;/a&gt;&amp;nbsp;we could see the following in its API Reference:&lt;/p&gt;
&lt;table&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td colspan="1" rowspan="1"&gt;&lt;a title="No Memory for operation." href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.s140.api.v7.2.0/group__nrf__error.html#ga7ef4d466b79b31c6325f8b7af5d4f75f"&gt;NRF_ERROR_NO_MEM&lt;/a&gt;&lt;/td&gt;
&lt;td colspan="1" rowspan="1"&gt;One or more of the following is true:
&lt;ul&gt;
&lt;li&gt;The amount of memory assigned to the SoftDevice by *p_app_ram_base is not large enough to fit this configuration&amp;#39;s memory requirement. Check *p_app_ram_base and set the start address of the application RAM region accordingly.&lt;/li&gt;
&lt;li&gt;Dynamic part of the SoftDevice RAM region is larger then 64 kB which is currently not supported.&lt;/li&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;p&gt;We would then know what to check and fix, to resolve this error.&lt;br /&gt;&lt;br /&gt;Keep in mind that I do not have your code, so I do not know what is on your line 792, you will need to check this yourself.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: debuging the nrf break point</title><link>https://devzone.nordicsemi.com/thread/302319?ContentTypeID=1</link><pubDate>Mon, 29 Mar 2021 08:50:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:214da964-c51a-42d0-9907-7fe853535929</guid><dc:creator>manikandan</dc:creator><description>&lt;p&gt;thanks for your reply now i can debug my issue is this&lt;/p&gt;
&lt;p&gt;logs dropped (1)[0m&lt;br /&gt;[00:00:03.581,970] &amp;lt;debug&amp;gt; app: Disconnected: reason 0x13.&lt;br /&gt;[00:00:03.687,103] &amp;lt;error&amp;gt; app: ERROR 4 [NRF_ERROR_NO_MEM] at C:\folder\nRF5_SDK_15.0.0_a53641a\examples\my projects\nRF52-ble-long-range-demo\central_long_range_demo_kit\main.c:792&lt;br /&gt;PC at: 0x0002EA59&lt;br /&gt;[00:00:03.687,652] &amp;lt;error&amp;gt; app: End of error report&lt;/p&gt;
&lt;p&gt;how can i resolve this i want to run my application smoothly wiithout any issues&lt;/p&gt;
&lt;p&gt;thanks and regards&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: debuging the nrf break point</title><link>https://devzone.nordicsemi.com/thread/302301?ContentTypeID=1</link><pubDate>Mon, 29 Mar 2021 07:56:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:601d0451-bb50-4370-a019-a67478e42c21</guid><dc:creator>Karl Ylvisaker</dc:creator><description>&lt;p&gt;Hello manikandan v,&lt;br /&gt;&lt;br /&gt;Please see the suggestions by me and @awneil in your other ticket:&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/73304/regarding-spi-communication"&gt;https://devzone.nordicsemi.com/f/nordic-q-a/73304/regarding-spi-communication&lt;/a&gt;&lt;br /&gt;The methods we suggest here - using the debugger to step through the code, and defining DEBUG to have the logger print detailed error messages - are two of the most common and successful ways of debugging your code.&lt;br /&gt;Let us continue this general debugging issue in the other ticket.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Karl&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>