<?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 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/117679/nrf54l15-32khz-xo-verify</link><description>Hi nRF experts. 
 Is there any way to output 32khz to gpio? We need to verify the frequency offset of 32khz. 
 I saw that there is a ppi_trace sample code that seems to solve my problem, but this ppi_trace cannot be compiled on the nRF54L15 platform.</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Mon, 06 Jan 2025 03:27:03 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/117679/nrf54l15-32khz-xo-verify" /><item><title>RE: nRF54L15 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/thread/516889?ContentTypeID=1</link><pubDate>Mon, 06 Jan 2025 03:27:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9818e80d-5d4b-436e-874f-eddef5af8b7c</guid><dc:creator>weiliwang</dc:creator><description>&lt;p&gt;Hi Emil.&lt;/p&gt;
&lt;p&gt;Thanks for your suggestion, I have solved this problem.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/thread/516841?ContentTypeID=1</link><pubDate>Fri, 03 Jan 2025 16:49:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:942f1c9c-bf73-45be-b688-657d80173e2e</guid><dc:creator>Emil Lenngren</dc:creator><description>&lt;p&gt;You can&amp;#39;t define your own NRF_GRTC_Type variable. You must use the one that is memory mapped to the actual hardware peripheral: NRF_GRTC.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/thread/516813?ContentTypeID=1</link><pubDate>Fri, 03 Jan 2025 13:25:22 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7b493ec8-aa65-4111-a718-0354713d7dbf</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Weili,&lt;/p&gt;
&lt;p&gt;I will be able to test with the nRF54L board on Monday when I&amp;#39;m back to the office.&amp;nbsp;&lt;br /&gt;But could you try to configure the pin as output pin in the device tree ?&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/thread/516724?ContentTypeID=1</link><pubDate>Fri, 03 Jan 2025 03:13:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d50ed28b-bed1-4466-975c-e28696fd3de6</guid><dc:creator>weiliwang</dc:creator><description>&lt;p&gt;Hi Hung.&lt;/p&gt;
&lt;p&gt;Sorry, this is our first time contacting the nRF platform.&lt;br /&gt;I used the radio_test sample and added the following declaration after clock_init() of the main function. Is this correct?&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;#include &amp;lt;hal/nrf_grtc.h&amp;gt;
NRF_GRTC_Type NRF_GRTC_regs;
int main(void)
{
	int blink_status = 0;
	int err = 0;

	configure_gpio();

	memset(&amp;amp;NRF_GRTC_regs, 0, sizeof(NRF_GRTC_Type));
	NRF_GRTC_regs.CLKCFG = (0x00000000UL);
	NRF_GRTC_regs.CLKOUT = (0x00000001UL);

	nrf_grtc_clkout_set(&amp;amp;NRF_GRTC_regs,NRF_GRTC_CLKOUT_32K,true);

	err = uart_init();
	if (err) {
		error();
	}

	if (IS_ENABLED(CONFIG_BT_NUS_SECURITY_ENABLED)) {
		err = bt_conn_auth_cb_register(&amp;amp;conn_auth_callbacks);
		if (err) {
			printk(&amp;quot;Failed to register authorization callbacks.\n&amp;quot;);
			return 0;
		}
	....
	....
	....
	...
}
&lt;/pre&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/pastedimage1735873276509v1.png" /&gt;&lt;/p&gt;
&lt;p&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/pastedimage1735873319435v2.png" /&gt;&lt;/p&gt;
&lt;p&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/pastedimage1735873457179v3.png" /&gt;&lt;/p&gt;
&lt;p&gt;I didn&amp;#39;t see any waveform in P004, only a high level.&lt;br /&gt;Please tell me if I missed any details.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;SDK V2.8&lt;/p&gt;
&lt;p&gt;nRF54L15 DK board .v0.8.1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF54L15 32Khz XO verify.</title><link>https://devzone.nordicsemi.com/thread/516628?ContentTypeID=1</link><pubDate>Thu, 02 Jan 2025 11:27:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6ce8e26b-9f4e-474b-ab8d-3db940ee8c07</guid><dc:creator>Hung Bui</dc:creator><description>&lt;p&gt;Hi Weili,&lt;br /&gt;There is a new feature on the nRF54L that you can output the LKCLK and HFCLK to one of the GPIO pins.&amp;nbsp;&lt;br /&gt;Please take a look at the GRTC peripheral here:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/grtc.html#ariaid-title5"&gt;https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/grtc.html#ariaid-title5&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;The pin for LFCLK (32kHz) is P0.04.&lt;/p&gt;
&lt;p&gt;We don&amp;#39;t have an example to show this but you can just set the register directly or use the&amp;nbsp;nrf_grtc_clkout_set() function in the nrfx_grtc driver.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>