<?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>Radio Test nRF52833</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/121054/radio-test-nrf52833</link><description>We&amp;#39;re building a prototype board which uses the nRF52833 and want to tune the RF components. The radio_test sample in SDK 3.0.0 doesn&amp;#39;t seem to support the nRF52833 SoC. Is there an alternative way to generate a test signal without reverting to the DTM</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 01 May 2025 09:19:51 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/121054/radio-test-nrf52833" /><item><title>RE: Radio Test nRF52833</title><link>https://devzone.nordicsemi.com/thread/533658?ContentTypeID=1</link><pubDate>Thu, 01 May 2025 09:19:51 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:7e099bee-abe5-4acb-adb8-404c92535592</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;In the meantime, I have resolved the problem and am now able to build the radio test on the nrf52833dk.&lt;/p&gt;
&lt;p&gt;I&amp;#39;ll explain the&amp;nbsp;difficulties that I had for the benefit of any mac users with similar problems.&lt;/p&gt;
&lt;p&gt;I started using the nrf sdk at version 2.8.0. in late 2024.&amp;nbsp; At that time there was a guide to setting up a West workspace on the command line which somehow resulted in me installing the zephyr-sdk-0.17.0 in my home directory.&amp;nbsp; This was working, apparently, without problems until I recently received compilation errors when trying to use the nrf sample radio_test.&lt;/p&gt;
&lt;p&gt;As Simon correctly pointed out, the problem was due to using the Zephyr sdk rather than the Nordic toolchain.&amp;nbsp; The only hint to this is in the build log where the path to the toolchain is shown.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Knowing this, it still took me four hours and several attempts to get a properly working environment set up.&amp;nbsp; The problem is that the required information is spread over several documents and some of the information is contradictory and occasionally incorrect.&amp;nbsp; For instance, the description of nrfutil states that the installation directory for the sdk (and by inference) the toolchain can be freely chosen.&amp;nbsp; Elsewhere, under the toolchain manager, it is correctly stated that the use of /opt/nordic/ncs is mandatory for the toolchain (although not for the sdk itself).&amp;nbsp;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Eventually, I found the instructions to show the environment variables from the toolchain and exporting these proved the key to getting West to use the Nordic toolchain.&lt;/p&gt;
&lt;p&gt;So here is my working setup with the key points.&lt;/p&gt;
&lt;p&gt;a.&amp;nbsp; Toolchain installed to /opt/nordic/ncs with the command: nrfutil toolchain-manager install --ncs-version v3.0.1&lt;/p&gt;
&lt;p&gt;b.&amp;nbsp; A python venv created and West installed with pip.&lt;/p&gt;
&lt;p&gt;c.&amp;nbsp; Sdk 3.0.0 installed to ~/nordic/ncs/v3.0.0 using: west init -m &lt;a href="https://github.com/nrfconnect/sdk-nrf"&gt;github.com/.../sdk-nrf&lt;/a&gt; --mr v3.0.0 v3.0.0&lt;/p&gt;
&lt;p&gt;d. West updated from within v3.0.0 directory using: west update.&lt;/p&gt;
&lt;p&gt;e. Also from within v3.0.0 directory: source zephyr/zephyr-env.sh&lt;/p&gt;
&lt;p&gt;f. View or export environment settings from toolchain with: nrfutil toolchain-manager env --as-script&lt;/p&gt;
&lt;p&gt;g. Export these lines:&lt;/p&gt;
&lt;p&gt;export ZEPHYR_TOOLCHAIN_VARIANT=zephyr&lt;/p&gt;
&lt;p&gt;export ZEPHYR_SDK_INSTALL_DIR=/opt/nordic/ncs/toolchains/ef4fc6722e/opt/zephyr-sdk&lt;/p&gt;
&lt;p&gt;h.&amp;nbsp; I have all of my projects within the ~/nordic/ncs directory and can now successfully build my own work and the samples, which had previously not been working.&lt;/p&gt;
&lt;p&gt;If you are working with the sdk installation guide, be sure to read the nrfutil documentation in full, as well as the toolchain manager guide in order to get the&amp;nbsp;whole picture.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, note that you do not need to use the toolchain python environment if you already have a python environment which meets the requirements for the Nordic sdk, which can be found in another document on the site, together with links to the requirements.txt files.&lt;/p&gt;
&lt;p&gt;I hope this is helpful to someone.&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Test nRF52833</title><link>https://devzone.nordicsemi.com/thread/533641?ContentTypeID=1</link><pubDate>Wed, 30 Apr 2025 20:29:33 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:eef0947a-3184-481f-8628-537208686dc7</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Hi Simon,&lt;/p&gt;
&lt;p&gt;Thanks for the quick response.&amp;nbsp; I realised that there is a mismatch between the toolchain and nrf version in my west workspace.&lt;/p&gt;
&lt;p&gt;I updated the nrf folder to SDK 3.0.0. but still get the error.&amp;nbsp; I&amp;#39;ve been working with a west workspace (~/nordic/ncs) under macos.&amp;nbsp; The v3.0.0 toolchain is installed in /opt/nordic/ncs/toolchains and the sdk itself under /opt/nordic/ncs/v3.0.0.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have several projects in the workspace and they generally build without problems, although I have noticed today that they are using the zephyr-sdk-0.17.0 toolchain in ~.&lt;/p&gt;
&lt;p&gt;There was a guide to setting up a west workspace for non-vscode users like myself, but I couldn&amp;#39;t find it today.&amp;nbsp; Could you let me have a link please, assuming the document still exists?&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Also, what is the&amp;nbsp;recommended&amp;nbsp;directory structure for the macos with a third party IDE?&amp;nbsp; Do I need to use a workspace at all?&lt;/p&gt;
&lt;p&gt;Many thanks in advance.&lt;/p&gt;
&lt;p&gt;Andy&amp;nbsp;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio Test nRF52833</title><link>https://devzone.nordicsemi.com/thread/533372?ContentTypeID=1</link><pubDate>Tue, 29 Apr 2025 11:08:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:70822b93-4255-4389-aec8-6b704bb94bee</guid><dc:creator>Simonr</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;I just did a quick test on my end and did not have trouble with building either for nRF52833 nor for the nRF54L15DK. The nRF52833 isn&amp;#39;t specifically tested with the radio_test sample, but it should work just fine as it is very similar to the nRF52840 for almost all intents and purposes.&lt;/p&gt;
&lt;p&gt;Regarding the build error you&amp;#39;re seeing for the nRF54L15 DK, please make sure the Toolchain also matches the nRF Connect SDK version, and that you choose the correct board target &lt;strong&gt;(nRF54L15dk/nrf54l15/cpuapp&lt;/strong&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: Radio Test nRF52833</title><link>https://devzone.nordicsemi.com/thread/533304?ContentTypeID=1</link><pubDate>Tue, 29 Apr 2025 07:01:24 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d01d36e3-f5e1-4259-b747-03c716f07e75</guid><dc:creator>andychess</dc:creator><description>&lt;p&gt;Just a quick update:&amp;nbsp; I also tried to compile the radio test for the nrf54l15dk but get an error:&lt;/p&gt;
&lt;p&gt;/Users/xxx/nordic/ncs/nrf/samples/peripheral/radio_test/src/radio_test.h:12:10: fatal error: fem_al/fem_al.h: No such file or directory&lt;br /&gt; 12 | #include &amp;lt;fem_al/fem_al.h&amp;gt;&lt;/p&gt;
&lt;p&gt;Could someone please take a look at this?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>