<?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 SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/88550/nrf-connect-sdk-v1-9-1-board-configuration-doesnt-yield-results</link><description>Hi there, 
 I am trying out the nRF Connect SDK v1.9.1 with a custom board (with an nRF52833) that we have produced. I have set up the necessary plugins in VSCode (v1.67.2) through the Connect toolchain manager (v0.10.3) and I am able to flash the zephyr</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 12 Jul 2022 12:02:57 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/88550/nrf-connect-sdk-v1-9-1-board-configuration-doesnt-yield-results" /><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/376593?ContentTypeID=1</link><pubDate>Tue, 12 Jul 2022 12:02:57 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:3b4032dc-974e-413a-938f-9134262d4784</guid><dc:creator>Frans Lutz </dc:creator><description>&lt;p&gt;Hi Tal,&lt;/p&gt;
&lt;p&gt;After looking into the board definitiion files it looks like the DCDC mode isn&amp;#39;t enabled. You can enable this by adding a the file &amp;quot;Kconfig&amp;quot; into the board definition directory with the bellow content:&lt;/p&gt;
&lt;p&gt;#&lt;br /&gt;# Copyright (c) 2019 Nordic Semiconductor&lt;br /&gt;#&lt;br /&gt;# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause&lt;br /&gt;#&lt;/p&gt;
&lt;p&gt;if BOARD_NRF52KBD_NRF52832&lt;/p&gt;
&lt;p&gt;config BOARD_ENABLE_DCDC&lt;br /&gt; bool &amp;quot;Enable DCDC mode&amp;quot;&lt;br /&gt; select SOC_DCDC_NRF52X&lt;br /&gt; default y&lt;/p&gt;
&lt;p&gt;endif # BOARD_NRF52KBD_NRF52832&lt;/p&gt;
&lt;p&gt;You should change the above board names to your board name &amp;quot;BOARD_CANVAS_V1&amp;quot;&lt;/p&gt;
&lt;p&gt;I would also recommend to copy the blinky example to a different project directory instead of the NCS Code base directory.&lt;br /&gt;Within this project directory you can place the custom board definition in &amp;lt;PROJECTS&amp;gt;/Blinky/boards/arm/&amp;lt;yourboardname&amp;gt;/&lt;/p&gt;
&lt;p&gt;Now this board will be vissible in as a custom board in the build configuration menu.&lt;/p&gt;
&lt;p&gt;Regards, Frans&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/375033?ContentTypeID=1</link><pubDate>Fri, 01 Jul 2022 09:14:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6ecba4df-6d69-4bae-b309-80391d8d5802</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;Great! On our side, we keep butting into this issue. In short, the standard examples work on a nrf52-DK; but as soon as we move to a custom board (created per the steps you provided - please see attachment &amp;quot;canvas_v1.zip&amp;quot;) the code does compile and flash, but nothing noticable happens.&lt;/p&gt;
&lt;p&gt;Looking forward to any insights in this. If it would be easier or quicker to arrange a videocall I can also screen share to walk through the steps I take.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/375020?ContentTypeID=1</link><pubDate>Fri, 01 Jul 2022 08:12:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0063fc32-1043-4c1a-a0b9-af4792311dc0</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Sorry for the delay. I have contacted internally and will get back to you as soon as I get a response.&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/373172?ContentTypeID=1</link><pubDate>Mon, 20 Jun 2022 08:42:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0fabbc11-7a7e-4ee9-85ec-566a0025bb7f</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;Yes, I did. And then I modified the defconfig file to enable RTT and GPIO (among some other interfaces). I also modified the .dts file to specify the LED pins (trying to work towards a blinky example). The resulting board is located in my arm boards directory in the SDK (../v1.9.1/boards/arm); which I created a zip of - attached to this thread.&lt;/p&gt;
&lt;p&gt;I also then created a build configuration for that board according to the following settings (which I do not see any violations with in comparison to &lt;a href="https://nrfconnect.github.io/vscode-nrf-connect/connect/build_app.html#setting-up-a-build-configuration"&gt;https://nrfconnect.github.io/vscode-nrf-connect/connect/build_app.html#setting-up-a-build-configuration&lt;/a&gt;):&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/pastedimage1655713346381v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/372940?ContentTypeID=1</link><pubDate>Fri, 17 Jun 2022 07:53:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:64f58c18-aa45-431e-ab0f-fd04db27bb10</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi ,&lt;/p&gt;
&lt;p&gt;Did you add a custom board using &lt;a href="https://nrfconnect.github.io/vscode-nrf-connect/connect/build_app.html#adding-a-custom-board"&gt;these steps&lt;/a&gt;?&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/372297?ContentTypeID=1</link><pubDate>Tue, 14 Jun 2022 07:53:23 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:37c7fcab-61e5-4e2f-8158-863a2006a19b</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;As an update: We tried programming the very same board with Segger Studio and that worked normally, so this is also not a HW fault in any way. We are really keen to get started with Zephyr + Nordic hardware so we would really appreciate any insights on where to look for solutions. Thanks!&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371873?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 11:55:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9751df38-caca-40e8-81ce-914a6c5be4ae</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;However, despite CONFIG_BOARD being undefined, this still yields a working build for the nrf52-DK&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1654862149327v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371872?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 11:54:36 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bc38d832-fb40-4706-b082-41876cedc421</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;Then I get the following;&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/640x480/__key/communityserver-discussions-components-files/4/pastedimage1654862018812v1.png" alt=" " /&gt;&lt;br /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371869?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 11:49:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e51e4593-f330-4e31-bd4e-3a951473cb9d</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi Tal,&lt;/p&gt;
&lt;p&gt;Could you try to right-click on the first error (squiggles) and enable them?&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371865?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 11:45:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a4199cb2-90a0-44c7-b299-5c13e7d26c81</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;Hi Priyanka,&lt;/p&gt;
&lt;p&gt;Those are errors thrown by the linter, not the compiler; there seems to be some trouble finding the proper libraries.&lt;/p&gt;
&lt;p&gt;However, these errors are also thrown before building for the nrf52-DK, which clearly works.&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1654861451235v2.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371846?ContentTypeID=1</link><pubDate>Fri, 10 Jun 2022 11:13:30 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e099b30f-9c6f-4ed4-aedf-35758d8d3b37</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;In your screenshot, there seems to be 3 problems shown. Is it possible to show those?&lt;/p&gt;
&lt;p&gt;-Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371189?ContentTypeID=1</link><pubDate>Tue, 07 Jun 2022 13:49:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9261c6c5-3f50-417b-99f4-eed4e5005131</guid><dc:creator>Sophisti</dc:creator><description>&lt;p&gt;Hi Priyanka,&lt;/p&gt;
&lt;p&gt;I do not get any warnings or problems while building.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF Connect SDK v1.9.1 board configuration doesnt yield results.</title><link>https://devzone.nordicsemi.com/thread/371185?ContentTypeID=1</link><pubDate>Tue, 07 Jun 2022 13:46:44 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:e6f18bf2-9f17-4643-8638-25e9ad7dce2e</guid><dc:creator>Priyanka</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Do you get any warnings or problems while building?&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Priyanka&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>