<?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>nrf52833 not waking up on custom board</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/66493/nrf52833-not-waking-up-on-custom-board</link><description>Hi every body, 
 
 My system was able to wake up on gpio on dev kit but after adjusting pin , my custom board is not able to wake up. 
 I&amp;#39;m in debug mode, it was also working fine. 
 My second question is that i don&amp;#39;t know why i have to call two times</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 29 Sep 2020 20:41:28 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/66493/nrf52833-not-waking-up-on-custom-board" /><item><title>RE: nrf52833 not waking up on custom board</title><link>https://devzone.nordicsemi.com/thread/272147?ContentTypeID=1</link><pubDate>Tue, 29 Sep 2020 20:41:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3f034ee2-e181-440a-835c-09edd7046ac5</guid><dc:creator>Olfox</dc:creator><description>&lt;p&gt;And concerning uart,&amp;nbsp;I have this settings, because i only log with nrf_log_info when i&amp;#39;m connected with Jlink.&lt;/p&gt;
&lt;p&gt;// &amp;lt;i&amp;gt; Log data is buffered and can be processed in idle.&lt;/p&gt;
&lt;p&gt;#ifndef NRF_LOG_DEFERRED&lt;br /&gt;#define NRF_LOG_DEFERRED 0 // change from 1 to 0 to have message printing in real time&lt;/p&gt;
&lt;p&gt;#ifndef NRF_FPRINTF_ENABLED&lt;br /&gt;#define NRF_FPRINTF_ENABLED 1&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;#ifndef NRF_LOG_BACKEND_UART_ENABLED&lt;br /&gt;#define NRF_LOG_BACKEND_UART_ENABLED 0&lt;br /&gt;#endif&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52833 not waking up on custom board</title><link>https://devzone.nordicsemi.com/thread/272146?ContentTypeID=1</link><pubDate>Tue, 29 Sep 2020 20:37:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7174ce83-f4ad-447b-ac76-932a2b1f6989</guid><dc:creator>Olfox</dc:creator><description>&lt;p&gt;Thanks Jorgen, i found the issue, as dev kit had button management that i removed cause no button on my board, ome gpiote init function was removed, with interrupt management too.&amp;nbsp; i just had thisto solve the issue:&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;                err_code = nrf_drv_gpiote_init();
                APP_ERROR_CHECK(err_code);

                nrf_drv_gpiote_in_config_t in_config = GPIOTE_CONFIG_IN_SENSE_TOGGLE(true);
                in_config.pull = NRF_GPIO_PIN_NOPULL;

                err_code = nrf_drv_gpiote_in_init(30, &amp;amp;in_config, in_pin_handler);
                APP_ERROR_CHECK(err_code);

                nrf_drv_gpiote_in_event_enable(30, true);&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52833 not waking up on custom board</title><link>https://devzone.nordicsemi.com/thread/272125?ContentTypeID=1</link><pubDate>Tue, 29 Sep 2020 16:11:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5a3b69fa-decb-402d-9683-974a23e6b9f8</guid><dc:creator>J&amp;#248;rgen Holmefjord</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Do you have an external pull resistor on the wakeup pin, or is it connected to something else that is driving it?&lt;/p&gt;
&lt;p&gt;Not sure why you have to trigger&amp;nbsp;idle_state_handle twice, could be that there is some unhandled event/interrupt preventing the device from sleeping (possibly from the UART when the log message is finished transferring, if you are using the UART backend and not using deferred mode?).&lt;/p&gt;
&lt;p&gt;If you can share the full project, it would be easier to help you look for causes of the issues you are seeing.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;br /&gt;Jørgen&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf52833 not waking up on custom board</title><link>https://devzone.nordicsemi.com/thread/272077?ContentTypeID=1</link><pubDate>Tue, 29 Sep 2020 13:07:56 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44153812-e235-4c22-b273-98b01fcbcb0a</guid><dc:creator>Olfox</dc:creator><description>&lt;p&gt;Is there a link with an interrupt vector to enable somewhere may be ?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>