<?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>Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/117256/current-consumption-of-grtc-pwm-out</link><description>Hi Support Team 
 How is the current consumption for GRTC PWM OUT of nRF54L15? Thanks.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 19 Nov 2025 11:17:12 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/117256/current-consumption-of-grtc-pwm-out" /><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/554771?ContentTypeID=1</link><pubDate>Wed, 19 Nov 2025 11:17:12 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1512cc77-8f91-4686-8291-668760158e64</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;not with the GRTC and PWM combination. Should be&amp;nbsp;able to test it yourself with simple test like with below&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;zephyr/kernel.h&amp;gt;
#include &amp;lt;hal/nrf_grtc.h&amp;gt;
#include &amp;lt;hal/nrf_pwm.h&amp;gt;

static void grtc_on(void)
{
	/* Make sure LF source is ready before starting. */
	nrf_grtc_task_trigger(NRF_GRTC, NRF_GRTC_TASK_LFCLKSTART);
	while (!nrf_grtc_event_check(NRF_GRTC, NRF_GRTC_EVENT_LFCLKSTARTED)) {
	}

	nrf_grtc_task_trigger(NRF_GRTC, NRF_GRTC_TASK_START);
}

static void grtc_off(void)
{
	nrf_grtc_task_trigger(NRF_GRTC, NRF_GRTC_TASK_STOP);
	nrf_grtc_task_trigger(NRF_GRTC, NRF_GRTC_TASK_LFCLKSTOP);
}

static void pwm_on(void)
{
	NRF_PWM_Type *pwm = NRF_PWM120; /* pick the instance you want to measure */

	nrf_pwm_disable(pwm);
	pwm-&amp;gt;PRESCALER = PWM_PRESCALER_PRESCALER_DIV_8; /* any value is fine */
	pwm-&amp;gt;COUNTERTOP = 16000;
	pwm-&amp;gt;MODE = PWM_MODE_UPDOWN_Up;

	pwm-&amp;gt;PSEL.OUT[0] = PWM_PSEL_OUT_CONNECT_Disconnected;

	pwm-&amp;gt;SEQ[0].CNT = 1;
	pwm-&amp;gt;SEQ[0].REFRESH = 0;
	pwm-&amp;gt;SEQ[0].ENDDELAY = 0;
	pwm-&amp;gt;SEQ[0].PTR = (uint32_t)&amp;amp;pwm-&amp;gt;COUNTERTOP; /* dummy constant */
	pwm-&amp;gt;SEQ[0].MAXCNT = 1;

	nrf_pwm_enable(pwm);
	nrf_pwm_task_trigger(pwm, NRF_PWM_TASK_SEQSTART0);
}

static void pwm_off(void)
{
	NRF_PWM_Type *pwm = NRF_PWM120;

	nrf_pwm_task_trigger(pwm, NRF_PWM_TASK_STOP);
	while (!nrf_pwm_event_check(pwm, NRF_PWM_EVENT_STOPPED)) {
	}

	nrf_pwm_disable(pwm);
}

void main(void)
{
	k_sleep(K_SECONDS(5));

	grtc_on();
	k_sleep(K_SECONDS(5));
	grtc_off();

	pwm_on();
	k_sleep(K_SECONDS(5));
	pwm_off();

	/* stay idle so you can measure post-test baseline if needed */
	while (true) {
		k_sleep(K_SECONDS(1));
	}
}
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/554697?ContentTypeID=1</link><pubDate>Tue, 18 Nov 2025 16:52:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e47dff9-f3d3-4737-adda-c883b8e3c914</guid><dc:creator>bdub94</dc:creator><description>&lt;p&gt;Sorry to revive an old thread. I&amp;#39;m replying here as I&amp;#39;m interested in the answer to OP&amp;#39;s question (Current consumption of GRTC PWM Out) and it didn&amp;#39;t seem like it was definitively answered. Any updates here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/515027?ContentTypeID=1</link><pubDate>Mon, 16 Dec 2024 08:14:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ed7b0ff8-0f70-4b18-aed5-17c4d4777212</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;I see that I missed to see the system on idle current with GRTC is mentioned in the &lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/keyfeatures_html5.html"&gt;front page of the datasheet&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1734336661111v3.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;For the PWM details I need to enquire this internally with the team that might have access to the info. But I need to create an internal ticket. I will be back to you when I have some more info from them.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/515026?ContentTypeID=1</link><pubDate>Mon, 16 Dec 2024 07:45:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e688194c-30e2-4b2a-a444-5960b073e987</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;We have not measured this ourselves, yet and it seems like these numbers for peripherals are not available in datasheet also to be able to calculate ourselves.&lt;/p&gt;
&lt;p&gt;I will try to ask my colleague who had worked on some power consumption stuff on this chip to know if he knows more. I will come back to you mostly tomorrow with more info if possible.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/514848?ContentTypeID=1</link><pubDate>Fri, 13 Dec 2024 08:36:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0219415f-7b4f-4911-b0cb-9f3e012518b1</guid><dc:creator>Tom.Fu</dc:creator><description>&lt;p&gt;Hi Susheel&lt;/p&gt;
&lt;p&gt;Sorry for the unclear description. We want to know the current consumption for enabling GRTC with PWM output. Many thanks.&lt;/p&gt;
&lt;p&gt;&lt;img style="max-height:240px;max-width:320px;" src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1734078881744v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Current consumption of GRTC PWM Out</title><link>https://devzone.nordicsemi.com/thread/514845?ContentTypeID=1</link><pubDate>Fri, 13 Dec 2024 08:01:13 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b880b939-f96c-48bd-86ad-ccd0171bd205</guid><dc:creator>Susheel Nuguru</dc:creator><description>&lt;p&gt;I am not sure what you mean by GRTC PWM OUT, but you can achieve 0.8uA in &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/116811/how-to-reach-system-off-current-of-0-8ua-with-nrf54l15?utm_source=chatgpt.com"&gt;SystemOff mode with GRTC enabled&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>