<?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 is not going to Deep Sleep Mode</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/113508/nrf52832-is-not-going-to-deep-sleep-mode</link><description>Hello, 
 I am working with nRF52832 and want to put it to sleep and wake it up with a interrupt from a GPIO. I am using a accelerometer LIS3DH to generate the interrupt. I am following the System OFF example from Zephyr Samples. I am using it without</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 12 Aug 2024 05:13:45 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/113508/nrf52832-is-not-going-to-deep-sleep-mode" /><item><title>RE: nRF52832 is not going to Deep Sleep Mode</title><link>https://devzone.nordicsemi.com/thread/497715?ContentTypeID=1</link><pubDate>Mon, 12 Aug 2024 05:13:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:8b96339d-dd04-42cf-8741-ba2ef3236eca</guid><dc:creator>Sri1998</dc:creator><description>&lt;p&gt;Thank you Susheel. I will make the appropriate changes.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 is not going to Deep Sleep Mode</title><link>https://devzone.nordicsemi.com/thread/497587?ContentTypeID=1</link><pubDate>Fri, 09 Aug 2024 09:02:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:89f4161d-5d1d-4a5c-91d2-83489697f7e0</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;undefined device tree nodes are simple to debug. You just follow the instructions mentioned &lt;a href="https://docs.zephyrproject.org/latest/build/dts/troubleshooting.html"&gt;here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Most of the time it is just a missing or misconfigured device node.&lt;/p&gt;
&lt;p&gt;In the&amp;nbsp;&lt;code&gt;&lt;span&gt;&amp;lt;build&amp;gt;/zephyr/include/generated/devicetree_generated.h&lt;/span&gt;&lt;/code&gt;&lt;span&gt;., node 70 is as below&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;#160;*&amp;#160; &amp;#160;70&amp;#160; /soc/uart@40002000&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;So uart does not seem to be enabled in the device tree in your board files. I added this in your custom board overlay filed&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uart0 {
	status = &amp;quot;okay&amp;quot;;
};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;and added these in the prj.conf file&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;# Enable the UART driver
CONFIG_UART_ASYNC_API=y
CONFIG_NRFX_UARTE0=y
CONFIG_SERIAL=y&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This fixes the device tree error.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 is not going to Deep Sleep Mode</title><link>https://devzone.nordicsemi.com/thread/497470?ContentTypeID=1</link><pubDate>Thu, 08 Aug 2024 10:55:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:015d6939-d898-47e4-880e-d3cff6d5b1bb</guid><dc:creator>Sri1998</dc:creator><description>&lt;p&gt;I am trying to compile the System Off example by creating a new application from sample. I have made a custom board for nRF52832 and created board files for the board following the Dev Academy Exercise. When compiling the example code getting below error:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;c:/ncs/toolchains/cf2149caf2/opt/zephyr-sdk/arm-zephyr-eabi/bin/../lib/gcc/arm-zephyr-eabi/12.2.0/../../../../arm-zephyr-eabi/bin/ld.bfd.exe: app/libapp.a(main.c.obj): in function `main&amp;#39;:
C:/Harsha/Echotag/Firmware/system_off/src/main.c:75: undefined reference to `__device_dts_ord_70&amp;#39;
collect2.exe: error: ld returned 1 exit status
ninja: build stopped: subcommand failed.&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Can you please verify the error and suggest me a way to overcome it.&lt;/p&gt;
&lt;p&gt;PFA the code and the custom board created&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Sri&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/Customboard.zip"&gt;devzone.nordicsemi.com/.../Customboard.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/4572.system_5F00_off.zip"&gt;devzone.nordicsemi.com/.../4572.system_5F00_off.zip&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52832 is not going to Deep Sleep Mode</title><link>https://devzone.nordicsemi.com/thread/496207?ContentTypeID=1</link><pubDate>Tue, 30 Jul 2024 12:25:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e78ad33f-32f2-46b7-aa11-02e34e892a54</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;Few things,&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Hundreds of users have used&amp;nbsp;&lt;span&gt;LIS3DH&amp;nbsp;sensor with nrf52832, and it works just fine. No issues with hardware or drivers.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;&lt;span&gt;30mA power consumption does not sound right, I do not think that our SoC can consume that much. Check if you are working on the custom board and if the board is designed right.&lt;/span&gt;&lt;/li&gt;
&lt;li&gt;Connect the pins of the&amp;nbsp;&lt;span&gt;LIS3DH&amp;nbsp;to the logic analyzer or similar and see if there is any data coming out of it or not. If there is no valid data from the sensor, then check if it is configured correctly.&lt;/span&gt;&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>