<?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>SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/125995/saadc-scan-mode-with-internal-timer-on-nrf54l15</link><description>Hi, 
 I am attempting to sample multiple channels using the nrfx drivers. Using external timer with PPI over internal timer seemed to provide no benefit so I went for internal timer since the configuration was simpler and more straightforward. Works well</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 09 Dec 2025 08:50:18 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/125995/saadc-scan-mode-with-internal-timer-on-nrf54l15" /><item><title>RE: SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/thread/556527?ContentTypeID=1</link><pubDate>Tue, 09 Dec 2025 08:50:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6202950d-7b36-4062-9bd4-7f5960364d93</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I am glad to hear that. The ticket is internal, so there is unfortunately nothing you can refer to (other than perhaps this thread).&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/thread/556498?ContentTypeID=1</link><pubDate>Mon, 08 Dec 2025 16:48:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:49b9a078-d366-459e-9bd5-9430005132d4</guid><dc:creator>erwallc</dc:creator><description>&lt;p&gt;Thank you Einar,&lt;/p&gt;
&lt;p&gt;That answers my current questions. I&amp;#39;ve marked the first reply as Verified Answer, since that answered my original question.&lt;/p&gt;
&lt;p&gt;If there is a public issue tracker for the driver update that I can refer to in my commits, it would be nice if you can provide a link to that.&lt;/p&gt;
&lt;p&gt;Thanks again for timely and useful replies!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/thread/556489?ContentTypeID=1</link><pubDate>Mon, 08 Dec 2025 15:27:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:169d1675-aff3-409b-a520-dd4e7329b51b</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;Charlie,&lt;/p&gt;
&lt;p&gt;For the first part of the question it is up to you and what fits your need how you want to organize the code and various repositories. A &lt;a href="https://docs.nordicsemi.com/bundle/ncs-3.1.1/page/nrf/app_dev/create_application.html#workspace_application"&gt;workspace application&lt;/a&gt; often makes sense as you are free to point to your own fork of repositories if you have to make changes in some (as an alternative to patching).&lt;/p&gt;
&lt;p&gt;For the other question, you can only provide one result buffer for the SAADC at a time. And if using two channels in scan mode, you every second sample will be for one or the other channel. So in this case you will end up with a single buffer holding data for both channels. I do not have a particularly efficient way of handling this. It would be OK to have separate threads that only read from the same buffer and skips every second sample, as long as you ensure that both are done with the data before the buffer is re-used. But if you need the data consecutive for some reason, it has to be copied out and re-assembled in two separate buffers.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/thread/556362?ContentTypeID=1</link><pubDate>Fri, 05 Dec 2025 15:33:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef7a7489-a821-4d7a-b6db-4fd37cbfa9cc</guid><dc:creator>erwallc</dc:creator><description>[quote userid="7377" url="~/f/nordic-q-a/125995/saadc-scan-mode-with-internal-timer-on-nrf54l15/556346"]&lt;p&gt;timer with multiple enabled channels on nRF54 series.&lt;/p&gt;
&lt;p&gt;The check that prevents it is old and has not been updated lately when adding support for the nRF54 series, which it looks like it should have been. I have created an internal ticket to have the driver updated, but it will for sure not happen for the v3.2 release of the SDK.&lt;/p&gt;[/quote]
&lt;p&gt;Einar,&lt;/p&gt;
&lt;p&gt;Thank you for the reply. How would you recommend I work around it until a fix is available in an SDK release? Our project is currently set up as a freestanding repo, but I&amp;#39;m guessing a workspace repo and using west patch would be the most straightforward?&lt;/p&gt;
&lt;p&gt;I&amp;#39;m also wondering if you have any advice on handling the data. Our setup consists of two differential microphones and I wish to separate the processing of the data (sampled using a double buffer setup) but the data is interleaved in memory. To keep processing time down the initial approach is to pass the full buffer with an offset of 0 and 1 to processing threads. Are there any options in DMA or some efficient way to separate the data or supply separate buffers for each channel?&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Charlie&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: SAADC scan mode with internal timer on nRF54L15</title><link>https://devzone.nordicsemi.com/thread/556346?ContentTypeID=1</link><pubDate>Fri, 05 Dec 2025 14:11:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c0c14093-e7f3-4e56-b4fc-68b009aba5cd</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi&amp;nbsp;Charlie,&lt;/p&gt;
&lt;p&gt;This was a limitation in the nRF52 and nRF53 series devices, but I do not see a problem using the internal SAMPLERATE timer with multiple enabled channels on nRF54 series.&lt;/p&gt;
&lt;p&gt;The check that prevents it is old and has not been updated lately when adding support for the nRF54 series, which it looks like it should have been. I have created an internal ticket to have the driver updated, but it will for sure not happen for the v3.2 release of the SDK.&lt;/p&gt;
&lt;p&gt;For a simple use case with a one to one mapping from a timer to the SAADC I do not see a clear advantage using that instead of the internal samplerate timer. DPPI is quite flexible though, so it is probably possible to think of use cases where that would be a better fit.&lt;/p&gt;
&lt;p&gt;Br,&lt;/p&gt;
&lt;p&gt;Einar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>