<?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>nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/21607/nrf52832-does-not-work-well-at-power-on</link><description>I download my program to PCA10040 DK board and the program will make the led1 blink two times.
First I download program to flash and all work well.The led1 will blink two times and stop. But when the board power off and then power on again,the led1 will</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 27 Apr 2017 08:50:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/21607/nrf52832-does-not-work-well-at-power-on" /><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84826?ContentTypeID=1</link><pubDate>Thu, 27 Apr 2017 08:50:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9ca924ce-a5e5-4f25-af11-0438ff9f1fad</guid><dc:creator>wlgrd</dc:creator><description>&lt;p&gt;Are you using any external uart connection or similar? This can actually cause your chip to be powered just enough to not be reset, even though you turn it off. Opening the debug settings in Keil actually causes a reset, so I am guessing it is not reset properly on power down.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84827?ContentTypeID=1</link><pubDate>Thu, 27 Apr 2017 07:21:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:84073d1a-6f2d-424a-afe8-7ee4c17a5f0e</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;I just tested your code on a PCA10040. It seems to be working fine, its behavior is the same every time, the LED blinks two times, after power off and power on.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84825?ContentTypeID=1</link><pubDate>Thu, 27 Apr 2017 07:19:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0ac6bffd-177d-4367-9aed-1b2c36abb8d8</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;What does your PCB have to do with this? Are you testing this on your PCB or a PCA10040?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84824?ContentTypeID=1</link><pubDate>Thu, 27 Apr 2017 06:49:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:54b0d301-b017-4e2a-ae5e-72e9288e0793</guid><dc:creator>bijian</dc:creator><description>&lt;p&gt;the pin DCC of nrf52832 in my PCB is disconnected, but I use &amp;quot;sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);&amp;quot; ,which will cause some problems.But the PCA10040 DK&amp;#39;s DCC pin is connected to to the right components,it still can not work well,so there are some other problems in my code. I&amp;#39;m finding.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84823?ContentTypeID=1</link><pubDate>Thu, 27 Apr 2017 05:43:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1f48ef05-cda2-4ca8-be4e-ba8bfdcc3335</guid><dc:creator>bijian</dc:creator><description>&lt;p&gt;first download my code to PCA10040 DK, all work fine. There is a switch in the DK, when I switch off the board and switch on again,it goes wrong.&lt;/p&gt;
&lt;p&gt;int main(void)&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;uint8_t num = 0;&lt;/p&gt;
&lt;p&gt;nrf_gpio_cfg_output(18);&lt;/p&gt;
&lt;p&gt;while ( num &amp;lt; 2 )&lt;/p&gt;
&lt;p&gt;{&lt;/p&gt;
&lt;p&gt;num++;&lt;/p&gt;
&lt;p&gt;nrf_gpio_pin_write(18,0);&lt;/p&gt;
&lt;p&gt;nrf_delay_ms(500);&lt;/p&gt;
&lt;p&gt;nrf_gpio_pin_write(18,1);&lt;/p&gt;
&lt;p&gt;nrf_delay_ms(500); 		                		&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;// while(1);&lt;/p&gt;
&lt;p&gt;/***************************&lt;br /&gt;
... //other code, first comment then to test other code.&lt;/p&gt;
&lt;p&gt;***************************/&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;what&amp;#39;s the difference if there is a &amp;quot;while (1);&amp;quot; or not ? what I see is that led1 will blinks two times or blinks all the time? Why?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52832 does not work well at power on</title><link>https://devzone.nordicsemi.com/thread/84822?ContentTypeID=1</link><pubDate>Wed, 26 Apr 2017 07:34:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:67fde17d-b8b9-4ada-8847-99d4a5a278cb</guid><dc:creator>Petter Myhre</dc:creator><description>&lt;p&gt;Could you edit your question and include the actual code you are referencing? What do you mean by when the board power off and then power on again?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>