<?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>RTC+DPPI+SPIM+DMA</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/123972/rtc-dppi-spim-dma</link><description>HI 
 I am using the nrf54l15 SDK version ncs3.0.0 and the Zephyr example. Currently, I am connecting a sensor via SPIM30 and need to read the sensor&amp;#39;s data every second, which amounts to 200 bytes. To achieve low power consumption, I aim to minimize CPU</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 17 Sep 2025 00:49:55 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/123972/rtc-dppi-spim-dma" /><item><title>RE: RTC+DPPI+SPIM+DMA</title><link>https://devzone.nordicsemi.com/thread/548949?ContentTypeID=1</link><pubDate>Wed, 17 Sep 2025 00:49:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7bd0087f-9890-48a2-a1d1-dbc493da06c4</guid><dc:creator>joey</dc:creator><description>&lt;p&gt;&lt;span&gt;I didn&amp;#39;t use channel 0 and assigned other channels instead, as I saw that channel 0 was occupied in my Zephyr-based code.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RTC+DPPI+SPIM+DMA</title><link>https://devzone.nordicsemi.com/thread/548715?ContentTypeID=1</link><pubDate>Mon, 15 Sep 2025 10:08:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fff66664-1f67-4a86-bee0-bca938a26f45</guid><dc:creator>tim-remoticom</dc:creator><description>&lt;p&gt;Hi there, we are trying the same thing with the GRTC channel 0.&lt;br /&gt;&lt;br /&gt;Channel 0 is hard-coded as the main channel in `nrf_grtc.h`.&lt;br /&gt;Is it safe to change this value? Or is channel 0 hardcoded in other places as well?&lt;br /&gt;&lt;br /&gt;Zephyr doesn&amp;#39;t seem to be using the Interval feature.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RTC+DPPI+SPIM+DMA</title><link>https://devzone.nordicsemi.com/thread/547307?ContentTypeID=1</link><pubDate>Mon, 01 Sep 2025 10:31:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d37061d3-c554-4ced-abd4-80669de30970</guid><dc:creator>joey</dc:creator><description>&lt;p&gt;&lt;span&gt;Thank you for your reply.&lt;/span&gt;&lt;br /&gt;&lt;span&gt;I am currently using the GRTC for timing, but I am encountering some issues.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I am currently using NRF54L15 with SDK version 3.0.0, and I want to implement GRTC auto-reload without using interrupts. My main goal is to reduce CPU usage and utilize the peripheral DPPI for operations as much as possible.&lt;/p&gt;
&lt;ol start="1"&gt;
&lt;li&gt;
&lt;p&gt;The manual states that only Channel 0 supports hardware auto-reload, while other channels can be configured via the CC_ADD register. However, in Zephyr, Channel 0 is already used for RTOS timing, so I am applying for other channels for comparison.&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;For other channels, I am trying to implement GRTC auto-reload using DPPI, but there seems to be no CC_ADD operation among the tasks.&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;Does this mean I cannot avoid interrupts to achieve GRTC compare reloading?&lt;/p&gt;
&lt;p&gt;Thanks&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: RTC+DPPI+SPIM+DMA</title><link>https://devzone.nordicsemi.com/thread/547288?ContentTypeID=1</link><pubDate>Mon, 01 Sep 2025 09:31:29 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:efeb9b0d-1e7f-41bc-ab03-744dd8c4f285</guid><dc:creator>Sigurd</dc:creator><description>&lt;p&gt;Hi!&lt;/p&gt;
&lt;p&gt;There is no RTC on nRF54L15, but you can use the GRTC&amp;#39;s&amp;nbsp;Periodic Interval functionality to generate a event at a fixed interval:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/grtc.html#d762e391"&gt;https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/grtc.html#d762e391&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;You would need to use the Array List functionality for this use-case. See&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/easydma.html#ariaid-title4"&gt;https://docs.nordicsemi.com/bundle/ps_nrf54L15/page/easydma.html#ariaid-title4&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;We don&amp;#39;t have any official examples for this, but maybe this example could be of help:&amp;nbsp;&lt;a href="https://github.com/too1/ncs-spi-arraylist-example/tree/master"&gt;https://github.com/too1/ncs-spi-arraylist-example/tree/master&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>