<?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>nrf connect sd</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/117035/nrf-connect-sd</link><description>Hello there, 
 
 I am using nrf connect sdk using vs code. 
 Toolchain: v2.7.0 SDK: v2.7.0 
 I have custom hardware board based on nrf52811 SoC. 
 I have completed a firmware based project for this board but used nrf5-sdk v17.1.0. 
 Now i want to port</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 10 Dec 2024 15:25:48 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/117035/nrf-connect-sd" /><item><title>RE: nrf connect sd</title><link>https://devzone.nordicsemi.com/thread/514322?ContentTypeID=1</link><pubDate>Tue, 10 Dec 2024 15:25:48 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b2876651-837e-4bba-87a5-f18cd02b8da1</guid><dc:creator>sumit-adep</dc:creator><description>&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/members/vibe"&gt;Vidar Berg&lt;/a&gt;&amp;nbsp;&lt;br /&gt;Thank you it worked.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf connect sd</title><link>https://devzone.nordicsemi.com/thread/513962?ContentTypeID=1</link><pubDate>Mon, 09 Dec 2024 08:28:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:5e4c1c2e-50e6-47e5-80a0-5e2d8513a200</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;This is made to emulate the nRF52811 on the nRF52840 DK:&lt;/p&gt;
&lt;p&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/pastedimage1733731140307v1.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;This means you will actually be building for the nRF52840 SoC, which can lead to some unexpected behavior if you load the FW to a native nRF52811 target. That said,&amp;nbsp;I would still expect basic examples such as blinky and hello world to work just fine. Does your board include the optional 32 KHz crystal like the DK does? If not, you need to select the internal RC oscillator as the LF clock source through Kconfig. You can do this by adding the following line to your project configuration file (prj.conf):&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;CONFIG_CLOCK_CONTROL_NRF_K32SRC_RC=y&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Also, to disable the reset pin, you can include the following in your devictree overlay:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uicr {
    // Disable pinreset
    /delete-property/ gpio-as-nreset;
};
&lt;/pre&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf connect sd</title><link>https://devzone.nordicsemi.com/thread/513927?ContentTypeID=1</link><pubDate>Sun, 08 Dec 2024 08:48:35 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:402e0150-9cae-48f4-aff9-3174462f1b77</guid><dc:creator>sumit-adep</dc:creator><description>&lt;p&gt;&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/members/vibe"&gt;Vidar Berg&lt;/a&gt;&amp;nbsp;&lt;br /&gt;Can i use this board:&lt;br /&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/pastedimage1733647654662v1.png" /&gt;&lt;br /&gt;And then by creating an overlay file i can make my project compatible to nrf52811.&lt;br /&gt;Isn&amp;#39;t it possible?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nrf connect sd</title><link>https://devzone.nordicsemi.com/thread/513836?ContentTypeID=1</link><pubDate>Fri, 06 Dec 2024 13:49:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9a83c92e-17cb-4419-ada6-3e4a72597ea8</guid><dc:creator>Vidar Berg</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;Since we do not have a development kit for the nRF52811 SoC, we&amp;nbsp;have not created a SDK board for it either. I recommend you start by creating a new board that matches your HW. You can do this from vs code:&amp;nbsp;&lt;a href="https://docs.nordicsemi.com/bundle/nrf-connect-vscode/page/guides/bd_work_with_boards.html#how-to-add-a-new-board"&gt;https://docs.nordicsemi.com/bundle/nrf-connect-vscode/page/guides/bd_work_with_boards.html#how-to-add-a-new-board&lt;/a&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also recommend having a look at the devacademy course at&amp;nbsp;&lt;a href="https://academy.nordicsemi.com/courses/nrf-connect-sdk-fundamentals/lessons/lesson-3-elements-of-an-nrf-connect-sdk-application/"&gt;https://academy.nordicsemi.com/courses/nrf-connect-sdk-fundamentals/lessons/lesson-3-elements-of-an-nrf-connect-sdk-application/&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Vdar&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>