<?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>Thingy:91X - quiescent current</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/117352/thingy-91x---quiescent-current</link><description>Thingy:91X rev 1.0.0 
 NCS 2.6.2 own custom application 
 Quiescent current measured with PPK II and extension board: 
 nRF53x 2&amp;#181;A, OK 
 nRF70x 0&amp;#181;A, OK 
 nRF91x 17&amp;#181;A, OK 
 Quiescent current measured with PPK II and power plug/battery: 
 310&amp;#181;A, that&amp;#39;s</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 18 Dec 2024 16:20:38 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/117352/thingy-91x---quiescent-current" /><item><title>RE: Thingy:91X - quiescent current</title><link>https://devzone.nordicsemi.com/thread/515560?ContentTypeID=1</link><pubDate>Wed, 18 Dec 2024 16:20:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:53556420-a424-41ab-84d1-66916c93db54</guid><dc:creator>Achim Kraus</dc:creator><description>&lt;p&gt;Thanks a lot! That&amp;#39;s the solution. My app is now at 23&amp;micro;A.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91X - quiescent current</title><link>https://devzone.nordicsemi.com/thread/515533?ContentTypeID=1</link><pubDate>Wed, 18 Dec 2024 14:51:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f735494c-4c03-4cf3-9b66-2a9bdf1d7df4</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;The problem of driving around 300&lt;span&gt;µA from VBAT&amp;nbsp;&lt;/span&gt;might be due to improper initialization of BMM350. The fix was introduced&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/pull/17011/commits/caed45048de94a6a2d15b60cbf96f7ad4819edba"&gt;here&lt;/a&gt;, but it is not part of NCS v2.6.2. You could either turn off ldsw_sensors or add the code shown below and testing if this fixes the issue.&lt;br /&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;zephyr/device.h&amp;gt;
#include &amp;lt;zephyr/drivers/i2c.h&amp;gt;

#define BMM350_I2C_DEVICE  DEVICE_DT_GET(DT_NODELABEL(i2c2))
#define BMM350_REG_OTP_CMD_REG                      UINT8_C(0x50)
#define BMM350_OTP_CMD_PWR_OFF_OTP                  UINT8_C(0x80)
#define BMM350_START_UP_TIME_FROM_POR 3000

int bmm350_init_minimal(){
  k_sleep(K_USEC(BMM350_START_UP_TIME_FROM_POR));
  uint8_t otp_cmd = BMM350_OTP_CMD_PWR_OFF_OTP;
  i2c_burst_write(BMM350_I2C_DEVICE, 0x14, BMM350_REG_OTP_CMD_REG, &amp;amp;otp_cmd, 1);
  return 0;
}

SYS_INIT(bmm350_init_minimal, POST_KERNEL, CONFIG_SENSOR_INIT_PRIORITY);&lt;/pre&gt;&lt;br /&gt;As for the total current on the board, it depends on the configuration of the various regulators and peripherals as well as on the firmware running on controllers. Based on our internal testing, estimated current consumption should be around 13&lt;span&gt;µA at 3.7V from VBAT in addition to what is used by MCUs.&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91X - quiescent current</title><link>https://devzone.nordicsemi.com/thread/515297?ContentTypeID=1</link><pubDate>Tue, 17 Dec 2024 14:34:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:337d5a1f-1be9-44c1-aa4a-aa9572def56d</guid><dc:creator>Achim Kraus</dc:creator><description>&lt;p&gt;&amp;gt; Can you show your measurement setup&lt;/p&gt;
&lt;p&gt;There is nothing special, just use the new daughter board for current measurement of the Thingy:91X. Though those values are in the range expected by me, that should fit.&lt;/p&gt;
&lt;p&gt;Then I replaced the battery by a JST 1mm 3pin and powered the complete device with that. My assumption would be slightly more than the sum of the 3 other values, but it&amp;#39;s 20x more.&lt;/p&gt;
&lt;p&gt;&amp;gt; Can you provide more information about your application?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Sure, it&amp;#39;s my &lt;a href="https://github.com/boaks/zephyr-coaps-client"&gt;zephyr-coaps-client&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Anyway, my feeling is, we may exchange a lot of infos, but the real question is:&lt;/p&gt;
&lt;p&gt;- what is the quiescent current of the Thingy:91X overall&lt;/p&gt;
&lt;p&gt;- what must be disabled/enabled to get that&lt;/p&gt;
&lt;p&gt;From a couple of other tickets around the quiescent current of several nRF91 based device, I would welcome an example, which demonstrates that and documents the numbers to be expected. Please, not the links to the other tickets. I know them. In a couple of cases I even answered them.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Here it&amp;#39;s about the new Thingy:91X and what to do and expect for that.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Thingy:91X - quiescent current</title><link>https://devzone.nordicsemi.com/thread/515284?ContentTypeID=1</link><pubDate>Tue, 17 Dec 2024 14:20:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:523f2b66-5433-468f-9ab4-183e7c985960</guid><dc:creator>dejans</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
[quote user=""]&lt;p&gt;Quiescent current measured with PPK II and extension board:&lt;/p&gt;
&lt;p&gt;nRF53x&amp;nbsp;&amp;nbsp; 2µA, OK&lt;/p&gt;
&lt;p&gt;nRF70x&amp;nbsp;&amp;nbsp; 0µA, OK&lt;/p&gt;
&lt;p&gt;nRF91x &amp;nbsp; 17µA, OK&lt;/p&gt;[/quote][quote user=""]&lt;p&gt;Quiescent current measured with PPK II and power plug/battery:&lt;/p&gt;
&lt;p&gt;310µA, that&amp;#39;s pretty high.&lt;/p&gt;[/quote]
&lt;p&gt;Can you show your measurement setup in each of 2 cases, similar to how it is shown in this &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/87553/thingy-91-and-power-profiler-kit-ii"&gt;ticket&lt;/a&gt;?&lt;br /&gt;Which extension board did you use?&lt;/p&gt;
[quote user=""]NCS 2.6.2 own custom application[/quote]
&lt;p&gt;Can you provide more information about your application? Is it based on any of our sample applications?&lt;br /&gt;&lt;br /&gt;Best regards,&lt;br /&gt;Dejan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>