<?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>High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/56676/high-power-consumption-in-shutdown</link><description>The device has high power consumption when in shutdown, around 0,5mA. It uses SPI and TWI in normal operation but I have implemented the work around according the errata but still the problem persist. Am I missing something here?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 25 Oct 2021 05:48:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/56676/high-power-consumption-in-shutdown" /><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/335618?ContentTypeID=1</link><pubDate>Mon, 25 Oct 2021 05:48:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:79941728-b0a4-46c0-b86b-701d4844c837</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;&lt;span&gt;This case is&amp;nbsp;nearly 2 years old. Could you please create a case of your own where you describe this issue in detail, and a support engineer will be assigned to it. Feel free to link to this case if you find it relevant. What you&amp;#39;re describing seems very strange indeed.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/335451?ContentTypeID=1</link><pubDate>Fri, 22 Oct 2021 10:39:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:330ad040-3066-4e2b-b486-c8dc1f20641c</guid><dc:creator>OPQ</dc:creator><description>&lt;p&gt;Sorry for my bad&amp;nbsp;&lt;span&gt;describe.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;pre class="ui-code" data-mode="text"&gt;Does the workaround only work if you do not disable the TWI first? &lt;/pre&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;No, I mean if I did not disable and uninit the TWI ,the&amp;nbsp;power consumption will not be abnormal.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/335448?ContentTypeID=1</link><pubDate>Fri, 22 Oct 2021 10:32:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6c510ca9-594d-4438-bb77-81df1b5cb301</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Does the workaround only work if you do&amp;nbsp;&lt;strong&gt;not&amp;nbsp;&lt;/strong&gt;disable the TWI first? That seems very strange. This case is&amp;nbsp;nearly 2 years old. Could you please create a case of your own where you describe this issue in detail, and a support engineer will be assigned to it.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/335440?ContentTypeID=1</link><pubDate>Fri, 22 Oct 2021 09:45:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3915f258-52f4-4e79-9170-deafef9b6ea6</guid><dc:creator>OPQ</dc:creator><description>&lt;p&gt;Test in SDK 14.2.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/335437?ContentTypeID=1</link><pubDate>Fri, 22 Oct 2021 09:37:50 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b369eb05-2c70-47c1-bd30-6a842c4c4aa4</guid><dc:creator>OPQ</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I use TWI0，and also use this workaround but&amp;nbsp;&lt;span&gt;power consumption still about 400uA,it&amp;#39;s only 5uA if did not disable twi.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void i2c_diable_uninit(void)
{
    nrf_drv_twi_disable(&amp;amp;m_twi);

    nrf_drv_twi_uninit(&amp;amp;m_twi);

    nrf_gpio_cfg_default(APS_SCL_PIN);
    nrf_gpio_cfg_default(APS_SDA_PIN);
    nrf_gpio_cfg_default(APS_CS_PIN);
    nrf_gpio_cfg_default(APS_SA0_PIN);


    *(volatile uint32_t *)0x40003FFC = 0;
    *(volatile uint32_t *)0x40003FFC;
    *(volatile uint32_t *)0x40003FFC = 1;
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: High power consumption in shutdown</title><link>https://devzone.nordicsemi.com/thread/229639?ContentTypeID=1</link><pubDate>Fri, 17 Jan 2020 13:57:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2c5c69cb-7645-478c-bfc1-98b8d48c5c89</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Which of the SPI/TWI are you using in your project? Have you turned the TWI/SPI off and back on using the power registers after it has been disabled, as &lt;a href="https://infocenter.nordicsemi.com/index.jsp?topic=%2Ferrata_nRF52832_Rev2%2FERR%2FnRF52832%2FRev2%2Flatest%2Fanomaly_832_89.html&amp;amp;"&gt;the workaround&lt;/a&gt; suggests? For example uninitializing it like this should suffice:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;nrf_drv_twi_uninit(&amp;amp;m_twi);
*(volatile uint32_t *)0x40003FFC = 0;
*(volatile uint32_t *)0x40003FFC;
*(volatile uint32_t *)0x40003FFC = 1; &lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>