<?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>How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/73521/how-to-configure-new-hardware-in-a-nrf5340-sample-project</link><description>I have an nRF5340 DK board. I have followed the online installation instructions and *believe* I have successfully installed (win 10) nRF Connect and Segger Embedded Studio (not to mention chocolatey, ninja, python, west, and all the rest). I can build</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 16 Apr 2021 11:27:09 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/73521/how-to-configure-new-hardware-in-a-nrf5340-sample-project" /><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/305267?ContentTypeID=1</link><pubDate>Fri, 16 Apr 2021 11:27:09 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:78299e31-0167-4959-89da-1055516fa0cb</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;The sample is optimized for low power and not debugging. You need to uncomment the configs, as specified in &lt;a href="https://github.com/nrfconnect/sdk-nrf/blob/v1.5.1/samples/peripheral/lpuart/prj.conf#L8-L11"&gt;nrf\samples\peripheral\lpuart\prj.conf&lt;/a&gt;. I think ucomment CONFIG_NO_OPTIZATION=y is the most crucial for debugging.&lt;/p&gt;
&lt;p&gt;Try to apply this patch to an umodified NCS v1.5.0:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/1004.lpuart_5F00_debug.patch"&gt;devzone.nordicsemi.com/.../1004.lpuart_5F00_debug.patch&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/304158?ContentTypeID=1</link><pubDate>Mon, 12 Apr 2021 01:30:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a94b4757-91c1-4d7a-b239-4c2c51ad9392</guid><dc:creator>Mike527</dc:creator><description>&lt;p&gt;Hey Simon,&lt;/p&gt;
&lt;p&gt;OK...the above helped me better understand the overlay file.&amp;nbsp; I now understand that the default overlay is the&amp;nbsp;&lt;span&gt;nrf5340dk_nrf5340_cpuapp.overlay and have made some successful modification of sample programs.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Back to the subject of this thread:&amp;nbsp; I still need to configure 2 uarts (in addition to the console) on my dev kit.&amp;nbsp; I&amp;#39;m searching the sample code for examples and decided to build the&amp;nbsp;ncs\v1.5.0\nrf\samples\peripheral\lpuart example.&amp;nbsp; I can successfully build this example and can see the uart pins toggle correctly when executing it. I then attempted to build this example to be interrupt driven. I thought I could do this by editing the file below and set the CONFIG_NRF_SM_LPUART_INT_DRIVEN value to yes (per the comment):&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/960x720/__key/communityserver-discussions-components-files/4/pastedimage1618189464004v1.png" alt=" " /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m building in SES (mainly because I&amp;#39;m using the debugger to set breakpoints) and reloaded the project and cleaned/rebuilt the solution.&amp;nbsp; I changed the above file and also the boards\nrf5340dk_nrf5340_cpuapp.conf file in the sample project.&amp;nbsp; &amp;nbsp;I couldn&amp;#39;t hit the ISR breakpoints...or the init driven initialization path.&amp;nbsp; (i.e. it doesn&amp;#39;t look like the&amp;nbsp;&lt;span&gt;CONFIG_NRF_SM_LPUART_INT_DRIVEN symbol is being processed as enabled).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;How do I configure this example to be interrupt driven?&amp;nbsp; Do I need to go into the Kconfig and change something?&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/303879?ContentTypeID=1</link><pubDate>Thu, 08 Apr 2021 22:55:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:31728443-d6fb-4bac-8279-ef1136a305bd</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;The code&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;set(&amp;lt;image_name&amp;gt;_DTC_OVERLAY_FILE
    ${CMAKE_CURRENT_SOURCE_DIR}/&amp;lt;name_overlay&amp;gt;.overlay
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;is used if you want to set an overlay file of a child image from the application. A child image can be mcuboot, or spm. E.g. if you build using&amp;nbsp;&lt;span&gt;nrf5340dk_nrf5340_cpuapp&lt;strong&gt;ns&lt;/strong&gt;, the child image &lt;a href="https://github.com/nrfconnect/sdk-nrf/tree/3414d37f00c5ae56782bbe25c39439f79eed3824/samples/spm"&gt;SPM&lt;/a&gt;&amp;nbsp;will get included (zephyr/samples/threads/build/zephyr/merged.hex will contain both the application and SPM image).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;If you then do&amp;nbsp;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;set(spm_DTC_OVERLAY_FILE
    ${CMAKE_CURRENT_SOURCE_DIR}/whatever_name.overlay
)&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;This will be the same as adding it here:&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/tree/3414d37f00c5ae56782bbe25c39439f79eed3824/samples/spm"&gt;sdk-nrf/samples/spm at master · nrfconnect/sdk-nrf · GitHub&lt;/a&gt;. The stuff in the overlay file will then be applied to the SPM image.&lt;/p&gt;
&lt;p&gt;If you just want to add an overlay file to your applicatiion, you can just add it like this:&amp;nbsp;&lt;span&gt;zephyr/samples/threads/nrf5340dk_nrf5340_cpuapp.overlay (no need to add anything to the CMakeLists.txt file). If you then build using the same name (nrf5340dk_nrf5340_cpuapp), the stuff in that overlay file will get applied to the application image. It is important to build with the same name as the name of the overlay file.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;(I have not tested it, but I think it should work using the name &lt;em&gt;whatever_name&lt;/em&gt;, for the SPM, since you explcitly set it).&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Hope this clarifies stuff.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Best regards,&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span&gt;Simon&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/303874?ContentTypeID=1</link><pubDate>Thu, 08 Apr 2021 21:57:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:9b519f36-a843-40e2-acce-505d2e46c38e</guid><dc:creator>Mike527</dc:creator><description>&lt;p&gt;Hello Simon,&lt;/p&gt;
&lt;p&gt;I can successfully build my project from west and process the overlay file.&lt;/p&gt;
&lt;p&gt;Evidently the command:&amp;nbsp; &amp;nbsp;&amp;nbsp;west build -b nrf5340dk_nrf5340_cpuapp -d build_53&lt;/p&gt;
&lt;p&gt;uses a default&amp;nbsp; &amp;quot;nrf5340dk_nrf5340_cpuapp.overlay&amp;quot; file.&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;When building from my SES project, I was specifying the overlay file via the CMakeList.txt file:&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;# SPDX-License-Identifier: Apache-2.0&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;cmake_minimum_required(VERSION 3.13.1)&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;set(ThreadsEx_DTC_OVERLAY_FILE&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt; ${CMAKE_CURRENT_SOURCE_DIR}/ThreadsEx.overlay&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;find_package(Zephyr REQUIRED HINTS $ENV{ZEPHYR_BASE})&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;project(threads)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;target_sources(app PRIVATE src/main.c)&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;The problem I was having was that 2.2.2 of the Part 2 Tutorial indicates to modify the CMakeList.txt&lt;/p&gt;
&lt;p&gt;&lt;img height="78" src="https://devzone.nordicsemi.com/resized-image/__size/960x720/__key/communityserver-discussions-components-files/4/pastedimage1617918755332v1.png" width="624" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;I substituted my project name for the &amp;lt;image_name&amp;gt;...but this wrong.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;How do I know what the &amp;lt;image_name&amp;gt; is?&amp;nbsp; (I&amp;#39;m sure this is a stupic question).&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/303611?ContentTypeID=1</link><pubDate>Wed, 07 Apr 2021 22:08:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b0f9a608-de40-4195-8a29-7e22f7d985ce</guid><dc:creator>Mike527</dc:creator><description>&lt;p&gt;Hello Simon,&lt;/p&gt;
&lt;p&gt;Thanks for your response.&lt;/p&gt;
&lt;p&gt;I tried your example and build instructions and the binding does indeed succeed.&lt;/p&gt;
&lt;p&gt;I then tried to compare my example project with yours.&amp;nbsp; I was build my project is in SES instead of the command line (which probably doesn&amp;#39;t make much difference).&amp;nbsp; I noticed that my project is built as non-secure.&lt;/p&gt;
&lt;p&gt;I tried building your project as non-secure using:&lt;/p&gt;
&lt;p&gt;west build -b nrf5340dk_nrf5340_cpuappns -d build_54&lt;/p&gt;
&lt;p&gt;When I flash this it also failed to bind to the UART and generated:&lt;/p&gt;
&lt;p&gt;*** Booting Zephyr OS build v2.4.99-ncs1 ***&lt;br /&gt;Hello World! nrf5340dk_nrf5340_cpuapp&lt;br /&gt;&lt;span style="background-color:#ffff99;"&gt;&lt;strong&gt;UART binding failed&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;For sanity I went back to and tried this all again.&amp;nbsp; I get this when build with &amp;quot;ns&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;*** Booting Zephyr OS build v2.4.99-ncs1 ***&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;Flash regions Domain Permissions&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;00 01 0x00000 0x08000 Secure rwxl&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;02 63 0x08000 0x100000 Non-Secure rwxl&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;Non-secure callable region 0 placed in flash region 1 with size 32.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;SRAM region Domain Permissions&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;00 03 0x00000 0x08000 Secure rwxl&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;04 63 0x08000 0x80000 Non-Secure rwxl&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;Peripheral Domain Status&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;00 NRF_P0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;01 NRF_CLOCK Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;02 NRF_RTC0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;03 NRF_RTC1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;04 NRF_NFCT Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;05 NRF_NVMC Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;06 NRF_UARTE1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;07 NRF_UARTE2 Secure SKIP&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;08 NRF_TWIM2 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;09 NRF_SPIM3 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;10 NRF_TIMER0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;11 NRF_TIMER1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;12 NRF_TIMER2 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;13 NRF_SAADC Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;14 NRF_PWM0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;15 NRF_PWM1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;16 NRF_PWM2 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;17 NRF_PWM3 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;18 NRF_IPC Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;19 NRF_VMC Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;20 NRF_FPU Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;21 NRF_EGU1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;22 NRF_EGU2 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;23 NRF_DPPIC Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;24 NRF_REGULATORS Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;25 NRF_DCNF Secure SKIP&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;26 NRF_CTRLAP Secure SKIP&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;27 NRF_SPIM4 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;28 NRF_WDT0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;29 NRF_WDT1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;30 NRF_COMP Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;31 NRF_LPCOMP Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;32 NRF_PDM0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;33 NRF_I2S0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;34 NRF_QSPI Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;35 NRF_NFCT Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;36 NRF_MUTEX Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;37 NRF_QDEC0 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;38 NRF_QDEC1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;39 NRF_USBD Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;40 NRF_USBREGULATOR Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;41 NRF_P1 Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;42 NRF_OSCILLATORS Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;43 NRF_RESET Non-Secure OK&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;44 NRF_GPIOTE1 Non-Secure OK&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="color:#0000ff;"&gt;SPM: NS image at 0x8000&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;SPM: NS MSP at 0x20008758&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;SPM: NS reset vector at 0x96d1&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;&amp;Ecirc;*** Booting Zephyr OS build v2.4.99-ncs1 ***&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;Hello World! nrf5340dk_nrf5340_cpuapp&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;UART binding failed*** Booting Zephyr OS build v2.4.99-ncs1 ***&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;I get this when built without &amp;quot;ns&amp;quot;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;Hello World! nrf5340dk_nrf5340_cpuapp&lt;/span&gt;&lt;br /&gt;&lt;span style="color:#0000ff;"&gt;Was able to get binding UART_1&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;I&amp;#39;ve been building my project as &amp;quot;ns&amp;quot;...I suppose I was thinking that I would ignore security and build as non-secure. Is this an incorrect assumption.&amp;nbsp; I would think this should work with or without the &amp;quot;ns&amp;quot; What&amp;#39;s happening here?&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I&amp;#39;m not sure this is my original problem....but will pass on what I&amp;#39;m seeing so far.&lt;/p&gt;
&lt;p&gt;Mike&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: How to configure new hardware in a nRF5340 sample project</title><link>https://devzone.nordicsemi.com/thread/303089?ContentTypeID=1</link><pubDate>Tue, 06 Apr 2021 10:19:14 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:771f24c4-4dcf-426c-8acb-8f972889c169</guid><dc:creator>Simon</dc:creator><description>&lt;p&gt;I&amp;#39;m not sure why it didn&amp;#39;t work for you. Could you try the following sample:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/communityserver-discussions-components-files/4/6862.hello_5F00_world.zip"&gt;devzone.nordicsemi.com/.../6862.hello_5F00_world.zip&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Build and flash using the following commands:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;west build -b nrf5340dk_nrf5340_cpuapp -d build_53
cd build_53 
west flash&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Make sure the stuff you put in the overlay file is present in build_53/zephyr/zephyr.dts and that CONFIG_SERIAL=y in build_53/zephyr/.config&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>