<?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>nrf54L15 RF match</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/127674/nrf54l15-rf-match</link><description>I measured the impedance using a VNA on the J1 socket of the nRF54L15-DK RF: With the RF configured for receive at 78.6 + J7.8, RF transmit continuous carrier at -40dBm: 23.45 + J23, -8dBm continuous carrier: 26 + J22, a deviation of 50 ohms. I&amp;#39;ve already</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 07 Apr 2026 13:06:52 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/127674/nrf54l15-rf-match" /><item><title>RE: nrf54L15 RF match</title><link>https://devzone.nordicsemi.com/thread/564529?ContentTypeID=1</link><pubDate>Tue, 07 Apr 2026 13:06:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:1af47e28-72c5-470e-88d9-3a66a2986141</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;The nRF54L15 lets you output the LFXO&amp;nbsp;directly on P0.04, and this method is suited for measuring the LFXO accuracy. You can do that using this short application:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;#include &amp;lt;hal/nrf_gpio.h&amp;gt;
#include &amp;lt;hal/nrf_grtc.h&amp;gt;
#include &amp;lt;haly/nrfy_grtc.h&amp;gt;
#include &amp;lt;nrfx_grtc.h&amp;gt;

#include &amp;lt;zephyr/drivers/gpio.h&amp;gt;
#include &amp;lt;zephyr/kernel.h&amp;gt;

#define PIN_NUM NRF_DT_GPIOS_TO_PSEL(DT_ALIAS(toggler), gpios)

int main(void)
{
	/* Output 32.768 kHz clock on pin P0.04 */
	nrfy_grtc_clkout_set(NRF_GRTC, NRF_GRTC_CLKOUT_32K, true);
	k_sleep(K_FOREVER);

	return 0;
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Note that if the board use P0.04 for other things you need to modify the board file. If building for the DK which use P0.04 for button 3, add this in an overlay file:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;/ {
	aliases {
		/delete-property/ sw3;
	};
};

/delete-node/ &amp;amp;button3;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Attached full project for reference: &lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/grtc_5F00_32768hz_5F00_out_5F00_nrf54l15.zip"&gt;devzone.nordicsemi.com/.../grtc_5F00_32768hz_5F00_out_5F00_nrf54l15.zip&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Regarding matching, measuring other than 50 ohm at J1 is not unexpected and not indicative of a problem. See &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/124522/rf-circuit-of-the-54l-reference-design/549498"&gt;this post&lt;/a&gt;. Tuning of the match&amp;nbsp;should be done by measuring output power and harmonics.&lt;/p&gt;
&lt;p&gt;Note that if you want assistance on this you can make a private case where you upload your schematics and layout for a HW review, and once that looks good, we may also assist in tuning the HW.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>