<?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>nPM1300 max battery discharge current (Vsys).</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/113557/npm1300-max-battery-discharge-current-vsys</link><description>Hi, 
 We have 2 projects where we are using the nPM1300. 
 In both cases we have peak currents. 
 In de documentations I thought I read some where that the current limit was 1A-2A. 
 Default 1.0A at reset but discharge current can be set to 1.34A. 
 The</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 01 Aug 2024 07:29:07 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/113557/npm1300-max-battery-discharge-current-vsys" /><item><title>RE: nPM1300 max battery discharge current (Vsys).</title><link>https://devzone.nordicsemi.com/thread/496535?ContentTypeID=1</link><pubDate>Thu, 01 Aug 2024 07:29:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:dd3d05a9-975a-4ffd-8bd5-8689cc60a78f</guid><dc:creator>rob</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;we are using only using BUCK2 because it can be set to 3V3 and provides with the external resistor, current is max 30mA (AVG )&lt;/p&gt;
&lt;p&gt;and no load switches are used.&lt;/p&gt;
&lt;p&gt;Vsys also powers a TI buck/boost converter. after investigation we found out that, that is where the problems seems to be.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;it has no soft start and has a very high start-up current that is higher than the highest possible setting of the nPM1300.&lt;/p&gt;
&lt;p&gt;With the information provided by this post we are going to focus on reducing the start-up current to below the current limit set by the nP1300.&lt;/p&gt;
&lt;p&gt;thank you for you support and quick responses.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I would like to make a make Nordic aware that the max current limit in the documentation is not the same in the provided driver source code.&lt;/p&gt;
&lt;p&gt;&lt;a id="" href="https://github.com/NordicSemiconductor/npmx"&gt;https://github.com/NordicSemiconductor/npmx&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;npmx_error_t npmx_charger_discharging_current_set(npmx_charger_t * p_instance, uint16_t current)
{
    NPMX_ASSERT(p_instance);

    if ((current &amp;lt; NPM_BCHARGER_DISCHARGING_CURRENT_MIN_MA) ||
        (current &amp;gt; NPM_BCHARGER_DISCHARGING_CURRENT_MAX_MA))
    {
        return NPMX_ERROR_INVALID_PARAM;
    }

    uint32_t code = (uint32_t)current * NPM_BCHARGER_DISCHARGING_MULTIPLIER;
    uint32_t mod  = code % NPM_BCHARGER_DISCHARGING_CONST;

    code /= NPM_BCHARGER_DISCHARGING_CONST;

    if (mod &amp;gt; (NPM_BCHARGER_DISCHARGING_CONST / 2UL))
    {
        code++;
    }

    uint8_t data[2] =
    {
        [0] = (uint8_t)(code &amp;gt;&amp;gt; NPM_BCHARGER_DISCHARGING_CODE_MSB_SHIFT),
        [1] = (uint8_t)(code &amp;amp; 1UL)
    };

    return npmx_backend_register_write(p_instance-&amp;gt;p_pmic-&amp;gt;p_backend,
                                       NPMX_REG_TO_ADDR(NPM_BCHARGER-&amp;gt;BCHGISETDISCHARGEMSB),
                                       data,
                                       2);
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&amp;quot;adk/npm1300_peripherals.h&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#define NPM_BCHARGER_DISCHARGING_CURRENT_MIN_MA  270UL   ///&amp;lt; Minimum possible discharging current in milliamperes, from the product specification.
#define NPM_BCHARGER_DISCHARGING_CURRENT_MAX_MA  1340UL  ///&amp;lt; Maximum possible discharging current in milliamperes, from the product specification.&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nPM1300 max battery discharge current (Vsys).</title><link>https://devzone.nordicsemi.com/thread/496410?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 12:17:17 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fff61fb7-94c6-45d4-8c3d-d9c0a4048011</guid><dc:creator>dacr</dc:creator><description>&lt;p&gt;Hi Rob,&lt;/p&gt;
&lt;p&gt;The default setting for the battery discharge current limit is High as per table below from Product Specification v1.1:&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" alt=" " src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1722425662340v1.png" /&gt;&lt;/p&gt;
&lt;p&gt;This is to say that it&amp;#39;s recommended for applications&amp;nbsp;with max current under 1A.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;To try and answer your second question, can you detail a bit more how would you configure the nPM1300, more specifically what BUCKs output voltage you plan to set. There is no setting you can use to alter the time before the discharge current feature intervenes, but you may be able to get away with short pulses of inrush current, if they can be supplied by the VSYS capacitor.&lt;/p&gt;
&lt;p&gt;All the best,&lt;/p&gt;
&lt;p&gt;Dan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nPM1300 max battery discharge current (Vsys).</title><link>https://devzone.nordicsemi.com/thread/496407?ContentTypeID=1</link><pubDate>Wed, 31 Jul 2024 12:03:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2b1b22f2-b118-4806-9e7e-c63d259f97c1</guid><dc:creator>ketiljo</dc:creator><description>&lt;p&gt;Hi Rob&lt;/p&gt;
&lt;p&gt;Max discharge current from the battery is 1460 mA, see&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ps_npm1300/page/chapters/charger.html#ariaid-title12"&gt;https://docs.nordicsemi.com/bundle/ps_npm1300/page/chapters/charger.html#ariaid-title12&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Note &amp;quot;&lt;span&gt;If the system load exceeds the discharge current limit,&amp;nbsp;&lt;/span&gt;&lt;span&gt;VSYS&lt;/span&gt;&lt;span&gt;&amp;nbsp;voltage drops below&amp;nbsp;&lt;/span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/ps_npm1300/page/chapters/core_components/plw/doc/frontpage.html#pof_el_spec"&gt;VSYS&lt;sub&gt;POF&lt;/sub&gt;&lt;/a&gt;&lt;span&gt;&amp;nbsp;causing the device to reset&amp;quot;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Large capacitors should prevent the most of the inrush current, but it depends a bit how much current you need to draw.&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;Ketil Aas-Johansen&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>