<?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>Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/102723/warning-about-dm-timer-not-set-in-sdk-2-4-1</link><description>Hello There is a warning when building with distance measurement library enabled 
 &amp;quot;The ncs,dm-timer chosen node is not set; defaulting to TIMER2&amp;quot; 
 I don&amp;#39;t remember seeing it in 2.3.0 version of the SDK 
 Why is it generated? How do I make it go away</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Wed, 16 Aug 2023 10:35:32 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/102723/warning-about-dm-timer-not-set-in-sdk-2-4-1" /><item><title>RE: Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/thread/441563?ContentTypeID=1</link><pubDate>Wed, 16 Aug 2023 10:35:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:638f223e-9b63-4167-bffa-723bba07d94b</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;I guess the fix was only added in main.&lt;/p&gt;
&lt;p&gt;Could you try &lt;a href="https://devzone.nordicsemi.com/support-private/support/309403#permalink=867118"&gt;cherry picking the fix commit&lt;/a&gt; like another customer has done here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/thread/441444?ContentTypeID=1</link><pubDate>Tue, 15 Aug 2023 17:14:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4875a53c-bf23-47bd-85ec-d20ea8d9e948</guid><dc:creator>AndyM</dc:creator><description>&lt;p&gt;I&amp;#39;m using 2.4.1&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/thread/441323?ContentTypeID=1</link><pubDate>Tue, 15 Aug 2023 09:17:10 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e7b477d1-0c4c-4ead-a5dd-2304472a4193</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;I am seeing this on my side as well.&lt;/p&gt;
&lt;p&gt;It&amp;nbsp;doesn&amp;#39;t seem to be &lt;a href="https://devzone.nordicsemi.com/f/nordic-q-a/100426/peripheral-lbs-example-policy-cmp0010-is-not-set-and-no-sources-given-to-zephyr-library-lib__libc__common/429417"&gt;anything to be concerned about&lt;/a&gt;, but unfortunately wasn&amp;#39;t fixed in time for this release. It should be fixed in NCS 2.4.1.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/thread/441208?ContentTypeID=1</link><pubDate>Mon, 14 Aug 2023 14:52:32 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9fd812cf-09e6-4cce-a009-3c3183936146</guid><dc:creator>AndyM</dc:creator><description>&lt;p&gt;Thank you&amp;nbsp;&lt;/p&gt;
&lt;p&gt;That fixed it&lt;/p&gt;
&lt;p&gt;Another question&lt;/p&gt;
&lt;p&gt;There is a warning&lt;/p&gt;
&lt;p&gt;No SOURCES given to Zephyr library: lib__libc__common&lt;/p&gt;
&lt;p&gt;Excluding target from build.&lt;/p&gt;
&lt;p&gt;How do I get rid of this one?&lt;/p&gt;
&lt;p&gt;Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Warning about DM timer not set in SDK 2.4.1</title><link>https://devzone.nordicsemi.com/thread/440878?ContentTypeID=1</link><pubDate>Fri, 11 Aug 2023 07:20:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:005db60c-f4b3-4331-8f49-4c31bd2b2194</guid><dc:creator>Elfving</dc:creator><description>&lt;p&gt;Hello Andy,&lt;/p&gt;
&lt;p&gt;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/2.4.0/nrf/libraries/others/dm.html#configuration"&gt;As you can see&lt;/a&gt;, the configuration steps to use the library has changed a bit in the newest NCS version. There is now an additional step:&lt;/p&gt;
&lt;p&gt;&amp;quot;Set the ncs,dm-timer chosen node to the TIMER peripheral you wish this module to use.&amp;quot; You can also see there, as well as in the newer version of the NCS sample that it can be handled by adding this to an overlay file:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;	/* The timer instance to use. */
	chosen {
		ncs,dm-timer = &amp;amp;timer2;
	};&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Elfving&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>