<?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>TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/126764/tampc-on-the-nrf54l15-dk</link><description>Is it possible to use at least one channel of the TAMPC in a Zephyr application on the nRF54L15-DK? It appears that the channel 0 pins (p1.4 and p1.5) are used by the UART on the DK. According to the tables on the back of the DK board, p1.11 and p1.12</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 13 Feb 2026 20:50:16 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/126764/tampc-on-the-nrf54l15-dk" /><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/561156?ContentTypeID=1</link><pubDate>Fri, 13 Feb 2026 20:50:16 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:97f14486-ca50-4806-887d-f678212502ae</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Sorry for the late reply.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Currently, using DTS or Kconfig in this way is not supported for &lt;span&gt;TAMPC&lt;/span&gt;, so it must be done through direct register writes and by working with the MDK.&lt;/p&gt;
&lt;p&gt;We found an issue where Channel 3 is not resolved correctly in &lt;code&gt;nrf_tampc.h&lt;/code&gt;. Specifically, &lt;code&gt;NRF_TAMPC_ACTIVESHIELD_CHANNEL_COUNT&lt;/code&gt; is not being resolved as expected.&amp;nbsp;This is caused by incorrect symbols being used in the following conditional statements:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;a href="https://github.com/NordicSemiconductor/nrfx/blob/e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5/hal/nrf_tampc.h#L151"&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;nrfx/hal/nrf_tampc.h at e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5 · NordicSemiconductor/nrfx&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;a href="https://github.com/NordicSemiconductor/nrfx/blob/e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5/hal/nrf_tampc.h#L154"&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;nrfx/hal/nrf_tampc.h at e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5 · NordicSemiconductor/nrfx&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;a href="https://github.com/NordicSemiconductor/nrfx/blob/e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5/hal/nrf_tampc.h#L156"&gt;&lt;span&gt;&lt;span&gt;&lt;span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span&gt;nrfx/hal/nrf_tampc.h at e20b8bcf1bc6701dbfaa33c8e71649ef13af80c5 · NordicSemiconductor/nrfx&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Following symbols defined by &lt;span&gt;MDK&lt;/span&gt; in nrf54l15_types.h should be used instead:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;
&lt;p&gt;TAMPC_ACTIVESHIELD_CHEN_CH3_Msk&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TAMPC_ACTIVESHIELD_CHEN_CH2_Msk&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;TAMPC_ACTIVESHIELD_CHEN_CH1_Msk&lt;/p&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;As a temporary software workaround, you can either:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;Manually correct the definition in &lt;code&gt;nrf_tampc.h&lt;/code&gt;, or&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Avoid using the &lt;code&gt;nrf_tampc_activeshield_mask_t&lt;/code&gt; enumerators and instead use the MDK symbols directly (e.g., &lt;code&gt;TAMPC_ACTIVESHIELD_CHEN_CHxxx_Msk&lt;/code&gt;).&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560559?ContentTypeID=1</link><pubDate>Fri, 06 Feb 2026 14:59:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:74d7a0d1-6af2-4876-85cd-c877005ff3be</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/2451.buildError.txt"&gt;devzone.nordicsemi.com/.../2451.buildError.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560557?ContentTypeID=1</link><pubDate>Fri, 06 Feb 2026 14:44:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6250e116-5091-464c-a34c-e19257e32b32</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;What is the error log? Could you provide it?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560486?ContentTypeID=1</link><pubDate>Thu, 05 Feb 2026 20:55:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b6c0ef7b-875c-48c4-ada8-ea3648797601</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;After that update completed, I get build errors if either one of these symbols are in the prj.conf file:&lt;br /&gt;&lt;br /&gt;&lt;/p&gt;
&lt;div style="background-color:#1f1f1f;color:#cccccc;font-family:Consolas, &amp;#39;Courier New&amp;#39;, monospace;font-size:14px;font-weight:normal;line-height:19px;white-space:pre;"&gt;
&lt;div&gt;&lt;span style="color:#6a9955;"&gt;CONFIG_TAMPC=y&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;&lt;span style="color:#569cd6;"&gt;CONFIG_NRFX_TAMPC&lt;/span&gt;&lt;span style="color:#cccccc;"&gt;=y&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560265?ContentTypeID=1</link><pubDate>Tue, 03 Feb 2026 18:46:07 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d175ac25-4090-4567-ac74-20b2425f78f7</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Try this way:&amp;nbsp;&lt;br /&gt;In the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Welcome View&lt;/strong&gt;: the&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;strong&gt;Run west update&lt;/strong&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;action under&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;span&gt;&lt;/span&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/nrf-connect-vscode/page/reference/ui_sidebar_welcome.html#manage-sdks"&gt;&lt;strong&gt;Manage SDKs&lt;/strong&gt;&lt;/a&gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&amp;gt;&lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="https://docs.nordicsemi.com/bundle/nrf-connect-vscode/page/reference/ui_sidebar_welcome.html#manage-west-workspace"&gt;&lt;strong&gt;Manage West Workspace&lt;/strong&gt;&lt;/a&gt;.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560166?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 21:16:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a3f96092-6f6e-4a3f-b41c-b91d6d22b0f3</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;PS C:\ncs\v3.2.1&amp;gt; python -m west update&lt;br /&gt;C:\Program Files (x86)\Microsoft Visual Studio\Shared\Python37_64\python.exe: No module named west&lt;br /&gt;PS C:\ncs\v3.2.1&amp;gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/560164?ContentTypeID=1</link><pubDate>Mon, 02 Feb 2026 20:09:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6c345776-4371-468b-9f49-f0efcc0662eb</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Please ensure to use the&amp;nbsp;&lt;strong&gt;nRF Connect SDK Command Prompt &lt;/strong&gt;and run &amp;quot;python -m west update&amp;quot;.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559953?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 21:30:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6e908cf4-4adc-4fca-a5f5-7d9b4746054c</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/nrf_2D00_connect_2D00_support_2D00_20260129212115.jsonc.txt"&gt;devzone.nordicsemi.com/.../nrf_2D00_connect_2D00_support_2D00_20260129212115.jsonc.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559949?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 20:32:47 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:c2b2572a-04f8-4d89-887c-8afe1cfe3098</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Please provide the support information from the Welcome View.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1768942812164v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559948?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 19:01:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:76de82f1-1ef0-4cbb-9662-7a7b432cc3fc</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;PS C:\ncs\v3.2.1&amp;gt; west update&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;br /&gt;&amp;nbsp; File &amp;quot;C:\ncs\toolchains\66cdf9b75e\opt\bin\Scripts\west.exe&amp;quot;, line 1&lt;br /&gt;SyntaxError: Non-UTF-8 code starting with &amp;#39;\x90&amp;#39; in file C:\ncs\toolchains\66cdf9b75e\opt\bin\Scripts\west.exe on line 1, but no encoding declared; see &lt;a href="http://python.org/dev/peps/pep-0263/"&gt;python.org/.../&lt;/a&gt; for details&lt;br /&gt;PS C:\ncs\v3.2.1&amp;gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559941?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 16:31:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5fa47a42-c0c8-4d53-a27f-66021000a749</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Could you run &amp;quot;west update&amp;quot; under&amp;nbsp;C:\NCS\v3.2.1? Let me know wether it can help or not.&amp;nbsp;&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/pastedimage1769704247241v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559932?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 14:38:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a50dea12-0f08-439d-8ce7-ff2ed744d710</guid><dc:creator>CarbonJoe</dc:creator><description>&lt;p&gt;Hi Amanda. I&amp;#39;m building using the nRF extensions in VS Code. NCS version 3.2.1.&lt;br /&gt;Build log attached.&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/0601.buildLog.txt"&gt;devzone.nordicsemi.com/.../0601.buildLog.txt&lt;/a&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: TAMPC on the nRF54L15-DK</title><link>https://devzone.nordicsemi.com/thread/559926?ContentTypeID=1</link><pubDate>Thu, 29 Jan 2026 14:24:34 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e8259241-0c91-4b58-b38c-b75a36847fad</guid><dc:creator>Amanda Hsieh</dc:creator><description>&lt;p&gt;Hi,&amp;nbsp;&lt;/p&gt;
&lt;p&gt;What NCS version are you using?&lt;/p&gt;
[quote user=""] I can compile this code for channel 0, but if I change the reference to channel 3 it doesn&amp;#39;t compile.[/quote]
&lt;p&gt;How does it not compile? Could you elaborate further or provide the log?&lt;/p&gt;
&lt;p&gt;Regards,&lt;br /&gt;Amanda H.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>