<?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>dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/27577/dumping-code-in-nrf52832</link><description>hiii friends, 
 i have developed new board using nRF52832 xxAA. i am dumping code in this using nrf52 DK and it is working fine but when i am removing power from this and reconnect power it is not working. but at same time if i dump simple LED program</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 04 Dec 2017 07:36:52 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/27577/dumping-code-in-nrf52832" /><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108912?ContentTypeID=1</link><pubDate>Mon, 04 Dec 2017 07:36:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1898ada0-bf1d-486d-ac66-13167040e5d7</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;i have given small delay in mpu section and now it is not stuck when power is on and off.&lt;/p&gt;
&lt;p&gt;void mpu_setup(void)
{&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;nrf_delay_ms(25);&lt;/p&gt;
&lt;/blockquote&gt;
&lt;pre&gt;&lt;code&gt;ret_code_t ret_code;
// Initiate MPU driver
ret_code = mpu_init();
APP_ERROR_CHECK(ret_code); // Check for errors in return value

// Setup and configure the MPU with intial values
mpu_config_t p_mpu_config = MPU_DEFAULT_CONFIG(); // Load default values
p_mpu_config.smplrt_div = 19;   // Change sampelrate. Sample Rate = Gyroscope Output Rate / (1 + SMPLRT_DIV). 19 gives a sample rate of 50Hz
p_mpu_config.accel_config.afs_sel = AFS_2G; // Set accelerometer full scale range to 2G
ret_code = mpu_config(&amp;amp;p_mpu_config); // Configure the MPU with above values
APP_ERROR_CHECK(ret_code); // Check for errors in return value 
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;}&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108911?ContentTypeID=1</link><pubDate>Sat, 02 Dec 2017 04:30:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b8bfaf62-d7f5-4bad-8ec6-aaee06ae017c</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;sure sir, once i got confidence what actually happens then i will definitely elaborate in answer. for now it is like i have two supply one through USB and another is battery. i was trying through battery and then i tried through USB and it is working. i am checking what actually happens when i get proper solution, i will definitely post answer. Thank you sir&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108910?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 13:57:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0e76e667-fc03-4db2-bce9-7c4bed42bce6</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;@Rahul I agree with RK. It would be very useful if you could post a more detailed solution to help other people that have a similar problem in the future. Just post it as an answer because people have a tendency not to read the comments &amp;amp; only focus on the answer :)&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108909?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 13:27:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cb13842a-734a-4e5e-a4cd-13ce40db1328</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;so how about posting a 10 line answer which explains what the problem was so the next person with a similar issue can find it and solve it. &amp;quot;some power issue&amp;quot; doesn&amp;#39;t really tell anyone what you found. If you can spell it out in more detail it helps the next guy.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108908?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 13:22:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:305db011-0134-4b69-8f39-68e18a7fc1d1</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;thank you sir this problem is solved. some power issue were there that has been sovled.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108907?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 11:28:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:975d7ae7-ae6a-4bdd-8ca4-eb20861ca020</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;yes i am refferring mpu simple example and not getting any error, it is working fine but it always requires debugger. when i remove debugger it is not working.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108906?ContentTypeID=1</link><pubDate>Fri, 01 Dec 2017 10:06:15 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cef364f5-0253-4194-8af5-96482091a7ec</guid><dc:creator>Bj&amp;#248;rn Kvaale</dc:creator><description>&lt;p&gt;Which mpu code are you referring to? Is the &lt;a href="https://github.com/Martinsbl/nrf5-mpu-examples"&gt;mpu_simple example&lt;/a&gt; found on Github? Are you getting any error messages?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108905?ContentTypeID=1</link><pubDate>Wed, 29 Nov 2017 06:44:04 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d2f7fa95-5dc6-49fa-b5ed-27914f152806</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;hello sir, i tried this one also but getting same problem. if i tried given examples then they are working fine with this but whenever i am trying mpu example then i am getting this debugger problem. so definitely some problem with mpu code&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108904?ContentTypeID=1</link><pubDate>Tue, 28 Nov 2017 10:30:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3fc6a0ef-2976-4b1a-aa32-bcb4fb282ad5</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;Try this question &lt;a href="https://devzone.nordicsemi.com/question/179656/nrf52-doesnt-start-without-debugger-jlink-on-gcc-toolchain/?comment=179668#comment-179668"&gt;devzone.nordicsemi.com/.../&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;is that possibly your problem?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108903?ContentTypeID=1</link><pubDate>Tue, 28 Nov 2017 09:57:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:779fe31a-b95a-4d64-a6fa-04f82eed8278</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;i am searching sir and trying to get all info from there only but as i am new to programming that&amp;#39;s why i am facing more problem. i got what is the problem but it was in crossworks. but i didn&amp;#39;t find how i can do it in keil. i am doing all the things that i can do and still trying&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108902?ContentTypeID=1</link><pubDate>Tue, 28 Nov 2017 09:49:42 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f13377b2-28e4-4ded-b9c9-40fea82bb0b1</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;clearly you didn&amp;#39;t bother to search or you would have found that startup from reset is an SES thing so that&amp;#39;s not it since  you&amp;#39;re on Keil (which is new information as usual)&lt;/p&gt;
&lt;p&gt;Search for another person who was having issues because they&amp;#39;d put the UART into blocking mode and was using it for debug.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108901?ContentTypeID=1</link><pubDate>Tue, 28 Nov 2017 09:43:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d941a5c1-084b-48de-ac68-37ca7e1a2d67</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;please anyone can help me with this, what is STARTUP_FROM_RESET. i am using keil v5&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108900?ContentTypeID=1</link><pubDate>Mon, 27 Nov 2017 04:49:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:461178d2-1d3c-4b0c-b7ec-92e52dc7a11a</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;please anybody can tell me what is STARTUP_FROM_RESET. where it is located or defined.
how can i add STARTUP_FROM_RESET in my project ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108899?ContentTypeID=1</link><pubDate>Sat, 25 Nov 2017 12:38:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:855a7d38-2271-46c7-9b05-6a256f66f23c</guid><dc:creator>Rahul</dc:creator><description>&lt;p&gt;where i can defined this ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: dumping code in NRF52832</title><link>https://devzone.nordicsemi.com/thread/108898?ContentTypeID=1</link><pubDate>Sat, 25 Nov 2017 12:27:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f5c5d147-77c8-48ed-a6ac-111fd872f6e3</guid><dc:creator>RK</dc:creator><description>&lt;p&gt;search the forums for STARTUP_FROM_RESET and see if that&amp;#39;s your problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>