<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://test-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 example - UART pins</title><link>https://test-devzone.nordicsemi.com/f/nordic-q-a/86798/radio-test-example---uart-pins</link><description>Hey there, 
 
 We are working with NRF52832 WLSCP package, 
 
 We had stated certification process , for BQB testing need to use the Radio test example with UART between EUT to the PC ( using a dongle or SDK) 
 As my new design does not use all required</description><dc:language>en-US</dc:language><generator>Telligent Community 13 Non-Production</generator><lastBuildDate>Tue, 10 May 2022 10:40:40 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://test-devzone.nordicsemi.com/f/nordic-q-a/86798/radio-test-example---uart-pins" /><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/367141?ContentTypeID=1</link><pubDate>Tue, 10 May 2022 10:40:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:425625a4-d009-4cc9-89a7-7537ac954512</guid><dc:creator>user75734</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;What &amp;quot;should be DK&amp;quot; exactly? When making a project for a custom board, it&amp;#39;s recommended to create a board .h file of your own called whatever you&amp;#39;d like it to. You can use the pca10040.h as a reference, but you should edit all pin configs/defines that doesn&amp;#39;t do the same thing as the DK to do what your board does.&lt;/p&gt;
&lt;p&gt;If the only change you require is to change the pins that the UART uses you can switch out RX_PIN_NUMBER, TX_PIN_NUMBER, RTS_PIN_NUMBER and CTS_PIN_NUMBER to the pin numbers you&amp;#39;d like them to be, and that should be sufficient to let your custom board communicate over UART with your desired GPIOs.&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 example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/366970?ContentTypeID=1</link><pubDate>Mon, 09 May 2022 13:38:38 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:52007677-2da7-404c-99be-06065a574149</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;I simply need the code which will allow the EUTto communicate via different GPIO&amp;quot;S&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/366969?ContentTypeID=1</link><pubDate>Mon, 09 May 2022 13:37:58 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f8029b7-900e-4dcd-bce9-62458d73595a</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;Not sure what do you mean by that i am using PCA10040&lt;/p&gt;
&lt;p&gt;it shuold be DK&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/366961?ContentTypeID=1</link><pubDate>Mon, 09 May 2022 13:21:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:68a03cea-1503-4f04-9b89-9f3b088f8703</guid><dc:creator>user75734</dc:creator><description>&lt;p&gt;Hi&lt;/p&gt;
&lt;p&gt;Have you checked out the ble_app_uart example project where the uart_init() function initializes all four UART pins. Then you can set these to what ever pin numbers you&amp;#39;d like.&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;static void uart_init(void)

{

    uint32_t                     err_code;

    app_uart_comm_params_t const comm_params =

    {

        .rx_pin_no    = RX_PIN_NUMBER,

        .tx_pin_no    = TX_PIN_NUMBER,

        .rts_pin_no   = RTS_PIN_NUMBER,

        .cts_pin_no   = CTS_PIN_NUMBER,

        .flow_control = APP_UART_FLOW_CONTROL_DISABLED,

        .use_parity   = false,

#if defined (UART_PRESENT)

        .baud_rate    = NRF_UART_BAUDRATE_115200

#else

        .baud_rate    = NRF_UARTE_BAUDRATE_115200

#endif

    };



    APP_UART_FIFO_INIT(&amp;amp;comm_params,

                       UART_RX_BUF_SIZE,

                       UART_TX_BUF_SIZE,

                       uart_event_handle,

                       APP_IRQ_PRIORITY_LOWEST,

                       err_code);

    APP_ERROR_CHECK(err_code);

}

&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;What SDK are you using for development, the nRF5 SDK or nRF Connect SDK? You need to create a custom board file for your project when creating an application for a custom board.&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 example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/366092?ContentTypeID=1</link><pubDate>Wed, 04 May 2022 04:36:25 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:6f587709-8945-410d-a3d0-d05746e82eff</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;Any update?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/365667?ContentTypeID=1</link><pubDate>Sun, 01 May 2022 17:57:03 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:2bc0dbf4-874e-4f2a-935e-5d856f346909</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;So is there something we are missing here?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/365486?ContentTypeID=1</link><pubDate>Thu, 28 Apr 2022 19:17:31 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b437877f-dcdb-4d59-aa79-6888f901da9b</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;PCA10040.h i changes as follows, currently still having issues ...&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/365485?ContentTypeID=1</link><pubDate>Thu, 28 Apr 2022 19:16:46 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b304abe1-505b-41e4-973a-feaa4fde7c5e</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;/**&lt;br /&gt; * Copyright (c) 2014 - 2021, Nordic Semiconductor ASA&lt;br /&gt; *&lt;br /&gt; * All rights reserved.&lt;br /&gt; *&lt;br /&gt; * Redistribution and use in source and binary forms, with or without modification,&lt;br /&gt; * are permitted provided that the following conditions are met:&lt;br /&gt; *&lt;br /&gt; * 1. Redistributions of source code must retain the above copyright notice, this&lt;br /&gt; * list of conditions and the following disclaimer.&lt;br /&gt; *&lt;br /&gt; * 2. Redistributions in binary form, except as embedded into a Nordic&lt;br /&gt; * Semiconductor ASA integrated circuit in a product or a software update for&lt;br /&gt; * such product, must reproduce the above copyright notice, this list of&lt;br /&gt; * conditions and the following disclaimer in the documentation and/or other&lt;br /&gt; * materials provided with the distribution.&lt;br /&gt; *&lt;br /&gt; * 3. Neither the name of Nordic Semiconductor ASA nor the names of its&lt;br /&gt; * contributors may be used to endorse or promote products derived from this&lt;br /&gt; * software without specific prior written permission.&lt;br /&gt; *&lt;br /&gt; * 4. This software, with or without modification, must only be used with a&lt;br /&gt; * Nordic Semiconductor ASA integrated circuit.&lt;br /&gt; *&lt;br /&gt; * 5. Any software provided in binary form under this license must not be reverse&lt;br /&gt; * engineered, decompiled, modified and/or disassembled.&lt;br /&gt; *&lt;br /&gt; * THIS SOFTWARE IS PROVIDED BY NORDIC SEMICONDUCTOR ASA &amp;quot;AS IS&amp;quot; AND ANY EXPRESS&lt;br /&gt; * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES&lt;br /&gt; * OF MERCHANTABILITY, NONINFRINGEMENT, AND FITNESS FOR A PARTICULAR PURPOSE ARE&lt;br /&gt; * DISCLAIMED. IN NO EVENT SHALL NORDIC SEMICONDUCTOR ASA OR CONTRIBUTORS BE&lt;br /&gt; * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR&lt;br /&gt; * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE&lt;br /&gt; * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)&lt;br /&gt; * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT&lt;br /&gt; * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT&lt;br /&gt; * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.&lt;br /&gt; *&lt;br /&gt; */&lt;br /&gt;#ifndef PCA10040_H&lt;br /&gt;#define PCA10040_H&lt;/p&gt;
&lt;p&gt;#ifdef __cplusplus&lt;br /&gt;extern &amp;quot;C&amp;quot; {&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;#include &amp;quot;nrf_gpio.h&amp;quot;&lt;/p&gt;
&lt;p&gt;// LEDs definitions for PCA10040&lt;br /&gt;#define LEDS_NUMBER 4&lt;/p&gt;
&lt;p&gt;#define LED_START 17&lt;br /&gt;#define LED_1 17&lt;br /&gt;#define LED_2 18&lt;br /&gt;#define LED_3 19&lt;br /&gt;#define LED_4 20&lt;br /&gt;#define LED_STOP 20&lt;/p&gt;
&lt;p&gt;#define LEDS_ACTIVE_STATE 0&lt;/p&gt;
&lt;p&gt;#define LEDS_INV_MASK LEDS_MASK&lt;/p&gt;
&lt;p&gt;#define LEDS_LIST { LED_1, LED_2, LED_3, LED_4 }&lt;/p&gt;
&lt;p&gt;#define BSP_LED_0 LED_1&lt;br /&gt;#define BSP_LED_1 LED_2&lt;br /&gt;#define BSP_LED_2 LED_3&lt;br /&gt;#define BSP_LED_3 LED_4&lt;/p&gt;
&lt;p&gt;#define BUTTONS_NUMBER 4&lt;/p&gt;
&lt;p&gt;#define BUTTON_START 13&lt;br /&gt;#define BUTTON_1 13&lt;br /&gt;#define BUTTON_2 14&lt;br /&gt;#define BUTTON_3 15&lt;br /&gt;#define BUTTON_4 16&lt;br /&gt;#define BUTTON_STOP 16&lt;br /&gt;#define BUTTON_PULL NRF_GPIO_PIN_PULLUP&lt;/p&gt;
&lt;p&gt;#define BUTTONS_ACTIVE_STATE 0&lt;/p&gt;
&lt;p&gt;#define BUTTONS_LIST { BUTTON_1, BUTTON_2, BUTTON_3, BUTTON_4 }&lt;/p&gt;
&lt;p&gt;#define BSP_BUTTON_0 BUTTON_1&lt;br /&gt;#define BSP_BUTTON_1 BUTTON_2&lt;br /&gt;#define BSP_BUTTON_2 BUTTON_3&lt;br /&gt;#define BSP_BUTTON_3 BUTTON_4&lt;/p&gt;
&lt;p&gt;#define RX_PIN_NUMBER 31 //8&lt;br /&gt;#define TX_PIN_NUMBER 2 //6&lt;br /&gt;#define CTS_PIN_NUMBER 3 //7&lt;br /&gt;#define RTS_PIN_NUMBER 5&lt;br /&gt;#define HWFC true&lt;/p&gt;
&lt;p&gt;#define SPIS_MISO_PIN 28 // SPI MISO signal.&lt;br /&gt;#define SPIS_CSN_PIN 12 // SPI CSN signal.&lt;br /&gt;#define SPIS_MOSI_PIN 25 // SPI MOSI signal.&lt;br /&gt;#define SPIS_SCK_PIN 29 // SPI SCK signal.&lt;/p&gt;
&lt;p&gt;#define SPIM0_SCK_PIN 29 // SPI clock GPIO pin number.&lt;br /&gt;#define SPIM0_MOSI_PIN 25 // SPI Master Out Slave In GPIO pin number.&lt;br /&gt;#define SPIM0_MISO_PIN 28 // SPI Master In Slave Out GPIO pin number.&lt;br /&gt;#define SPIM0_SS_PIN 12 // SPI Slave Select GPIO pin number.&lt;/p&gt;
&lt;p&gt;#define SPIM1_SCK_PIN 6 //2 // SPI clock GPIO pin number.&lt;br /&gt;#define SPIM1_MOSI_PIN 3 // SPI Master Out Slave In GPIO pin number.&lt;br /&gt;#define SPIM1_MISO_PIN 4 // SPI Master In Slave Out GPIO pin number.&lt;br /&gt;#define SPIM1_SS_PIN 5 // SPI Slave Select GPIO pin number.&lt;/p&gt;
&lt;p&gt;#define SPIM2_SCK_PIN 12 // SPI clock GPIO pin number.&lt;br /&gt;#define SPIM2_MOSI_PIN 13 // SPI Master Out Slave In GPIO pin number.&lt;br /&gt;#define SPIM2_MISO_PIN 14 // SPI Master In Slave Out GPIO pin number.&lt;br /&gt;#define SPIM2_SS_PIN 15 // SPI Slave Select GPIO pin number.&lt;/p&gt;
&lt;p&gt;// serialization APPLICATION board - temp. setup for running serialized MEMU tests&lt;br /&gt;#define SER_APP_RX_PIN 23 // UART RX pin number.&lt;br /&gt;#define SER_APP_TX_PIN 24 // UART TX pin number.&lt;br /&gt;#define SER_APP_CTS_PIN 2 // UART Clear To Send pin number.&lt;br /&gt;#define SER_APP_RTS_PIN 25 // UART Request To Send pin number.&lt;/p&gt;
&lt;p&gt;#define SER_APP_SPIM0_SCK_PIN 27 // SPI clock GPIO pin number.&lt;br /&gt;#define SER_APP_SPIM0_MOSI_PIN 2 // SPI Master Out Slave In GPIO pin number&lt;br /&gt;#define SER_APP_SPIM0_MISO_PIN 26 // SPI Master In Slave Out GPIO pin number&lt;br /&gt;#define SER_APP_SPIM0_SS_PIN 23 // SPI Slave Select GPIO pin number&lt;br /&gt;#define SER_APP_SPIM0_RDY_PIN 25 // SPI READY GPIO pin number&lt;br /&gt;#define SER_APP_SPIM0_REQ_PIN 24 // SPI REQUEST GPIO pin number&lt;/p&gt;
&lt;p&gt;// serialization CONNECTIVITY board&lt;br /&gt;#define SER_CON_RX_PIN 24 // UART RX pin number.&lt;br /&gt;#define SER_CON_TX_PIN 23 // UART TX pin number.&lt;br /&gt;#define SER_CON_CTS_PIN 25 // UART Clear To Send pin number. Not used if HWFC is set to false.&lt;br /&gt;#define SER_CON_RTS_PIN 2 // UART Request To Send pin number. Not used if HWFC is set to false.&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;#define SER_CON_SPIS_SCK_PIN 27 // SPI SCK signal.&lt;br /&gt;#define SER_CON_SPIS_MOSI_PIN 2 // SPI MOSI signal.&lt;br /&gt;#define SER_CON_SPIS_MISO_PIN 26 // SPI MISO signal.&lt;br /&gt;#define SER_CON_SPIS_CSN_PIN 23 // SPI CSN signal.&lt;br /&gt;#define SER_CON_SPIS_RDY_PIN 25 // SPI READY GPIO pin number.&lt;br /&gt;#define SER_CON_SPIS_REQ_PIN 24 // SPI REQUEST GPIO pin number.&lt;/p&gt;
&lt;p&gt;#define SER_CONN_CHIP_RESET_PIN 11 // Pin used to reset connectivity chip&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;// Arduino board mappings&lt;br /&gt;#define ARDUINO_SCL_PIN 27 // SCL signal pin&lt;br /&gt;#define ARDUINO_SDA_PIN 26 // SDA signal pin&lt;br /&gt;#define ARDUINO_AREF_PIN 2 // Aref pin&lt;br /&gt;#define ARDUINO_13_PIN 25 // Digital pin 13&lt;br /&gt;#define ARDUINO_12_PIN 24 // Digital pin 12&lt;br /&gt;#define ARDUINO_11_PIN 23 // Digital pin 11&lt;br /&gt;#define ARDUINO_10_PIN 22 // Digital pin 10&lt;br /&gt;#define ARDUINO_9_PIN 20 // Digital pin 9&lt;br /&gt;#define ARDUINO_8_PIN 19 // Digital pin 8&lt;/p&gt;
&lt;p&gt;#define ARDUINO_7_PIN 18 // Digital pin 7&lt;br /&gt;#define ARDUINO_6_PIN 17 // Digital pin 6&lt;br /&gt;#define ARDUINO_5_PIN 16 // Digital pin 5&lt;br /&gt;#define ARDUINO_4_PIN 15 // Digital pin 4&lt;br /&gt;#define ARDUINO_3_PIN 14 // Digital pin 3&lt;br /&gt;#define ARDUINO_2_PIN 13 // Digital pin 2&lt;br /&gt;#define ARDUINO_1_PIN 12 // Digital pin 1&lt;br /&gt;#define ARDUINO_0_PIN 11 // Digital pin 0&lt;/p&gt;
&lt;p&gt;#define ARDUINO_A0_PIN 7 //3 // Analog channel 0&lt;br /&gt;#define ARDUINO_A1_PIN 4 // Analog channel 1&lt;br /&gt;#define ARDUINO_A2_PIN 28 // Analog channel 2&lt;br /&gt;#define ARDUINO_A3_PIN 29 // Analog channel 3&lt;br /&gt;#define ARDUINO_A4_PIN 30 // Analog channel 4&lt;br /&gt;#define ARDUINO_A5_PIN 8 //31 // Analog channel 5&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;#ifdef __cplusplus&lt;br /&gt;}&lt;br /&gt;#endif&lt;/p&gt;
&lt;p&gt;#endif // PCA10040_H&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/365484?ContentTypeID=1</link><pubDate>Thu, 28 Apr 2022 19:15:41 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:63bbe26c-132a-4d87-9c80-9adfa7052579</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;Well this is not good enough as this is Only UART pins,I got inputs that pins are defined in h file&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;and also need to define ALL the 4 pins required not only rx tx&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/365422?ContentTypeID=1</link><pubDate>Thu, 28 Apr 2022 12:24:06 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d861d64c-c891-454d-a7f1-ed90932674dc</guid><dc:creator>user91187</dc:creator><description>&lt;p&gt;&lt;img src="https://test-devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/8424.pastedimage1651148432448v1.png" alt=" " /&gt;&lt;br /&gt;In the nRF5 SDK v17.1.0 that you presume you have downloaded, you will find the pin number as defined like the picture above.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;You can change the &amp;quot;TX_PIN_NUMBER&amp;quot; and &amp;quot;RX_PIN_NUMBER&amp;quot; to the pins you need to use in your layout. You only need to edit the two instances to P0.06 and P0.08&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/364348?ContentTypeID=1</link><pubDate>Fri, 22 Apr 2022 04:26:52 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:bf10fbd8-8a8f-4416-802a-3066b8f2d390</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;on top of this regard doing it using segger is there a clear application note , as the ticket is not clear...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;RX TX testing is mandatory for regulation purposes... and guidance is required to be provided to the lab.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;Simply need clear and simple instructions ....which are working...&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: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/364347?ContentTypeID=1</link><pubDate>Fri, 22 Apr 2022 04:16:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:40d80449-ea7b-4518-964a-4511ee64e97b</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;the issue is not on SDK side but on the eut side...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;as they need to be connected SDK is host and eut is client..&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;i don&amp;#39;t have all the pins available in my device&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I have opened radio test example but i couldn&amp;#39;t find pin numbers in the code...&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;i simply need the location of the pins definition and the relevant code version&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/364299?ContentTypeID=1</link><pubDate>Thu, 21 Apr 2022 15:00:39 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:0d2c0610-0df0-4e83-980e-4b1756ede216</guid><dc:creator>user91187</dc:creator><description>&lt;p&gt;You are using the &lt;a href="https://infocenter.nordicsemi.com/topic/com.nordic.infocenter.nrf52832.ps.v1.1/pin.html?cp=4_2_0_3_1#concept_r4r_4lr_2q"&gt;nrf52832 WLCSP&lt;/a&gt;, and you want to use P0.07, P0.08, P0.05 and P0.06 as the UART pins ?&lt;br /&gt;&lt;br /&gt;Are you more familiar with the &lt;a href="https://infocenter.nordicsemi.com/topic/sdk_nrf5_v17.1.0/nrf_radio_test_example.html?cp=8_1_4_6_31"&gt;nRF5 SDK&lt;/a&gt; or the nRF Connect SDK ?&lt;br /&gt;&lt;br /&gt;In the nRF5SDK you can do it in the main file, if you build for the PCA10040 it will be for the 52832.&lt;br /&gt;&amp;nbsp;&lt;img src="https://test-devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1650552539272v1.png" alt=" " /&gt;&lt;br /&gt;&lt;br /&gt;In nRF Connect SDK you have to create a overlay file for the new pins you want to use.&lt;br /&gt;&lt;br /&gt;See example in this &lt;a href="https://test-devzone.nordicsemi.com/f/nordic-q-a/72626/config_assert-makes-the-uart-driver-assert-when-using-no-flow-control-i-e-using-0xffffffff-for-rts-cts/299117#299117"&gt;devzone ticket&lt;/a&gt;,&amp;nbsp;&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;&amp;amp;uart0 {
compatible = &amp;quot;nordic,nrf-uart&amp;quot;;
status = &amp;quot;okay&amp;quot;;
current-speed = &amp;lt;115200&amp;gt;;
tx-pin = &amp;lt;6&amp;gt;;
rx-pin = &amp;lt;8&amp;gt;;
/delete-property/ rts-pin;
/delete-property/ cts-pin;
};&lt;/pre&gt;&lt;br /&gt;Here is a link to zephyr overlay,&amp;nbsp;&lt;a href="https://docs.zephyrproject.org/latest/build/dts/howtos.html"&gt;Devicetree HOWTOs — Zephyr Project Documentation&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/364105?ContentTypeID=1</link><pubDate>Thu, 21 Apr 2022 07:41:08 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f21a6aaa-d3ee-43f6-a9e1-b41613e02f9d</guid><dc:creator>user64407</dc:creator><description>&lt;p&gt;actually, the difficulty is how to redefine the pins..... as it is not clear from the example..&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;regard sdk in the website only version 17 is available for&amp;nbsp;download&lt;br /&gt;&lt;img src="https://test-devzone.nordicsemi.com/resized-image/__size/320x240/__key/communityserver-discussions-components-files/4/pastedimage1650601316924v1.png" alt=" " /&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Radio test example - UART pins</title><link>https://test-devzone.nordicsemi.com/thread/362804?ContentTypeID=1</link><pubDate>Mon, 11 Apr 2022 10:13:53 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:486409b6-e8b9-4426-b0e5-be0e789a4c04</guid><dc:creator>user91187</dc:creator><description>&lt;p&gt;Hi,&lt;br /&gt;&lt;br /&gt;You can use the radio test example with other GPIO&amp;#39;s, so if you are using other pins that is OK.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;RTT/SWD interface can also be used.&amp;nbsp;&lt;br /&gt;&lt;br /&gt;It should be possible to do it &amp;quot;over the air&amp;quot; but we dont have an example on that. Her is an older case disusing it:&amp;nbsp;&lt;a href="https://test-devzone.nordicsemi.com/f/nordic-q-a/43560/radio-test-example-using-seggerrtt/170394#170394"&gt;(+) Radio Test Example using SeggerRTT? - Nordic Q&amp;amp;A - Nordic DevZone - Nordic DevZone (nordicsemi.com)&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Radio test NCS documentation:&amp;nbsp;&lt;a href="https://developer.nordicsemi.com/nRF_Connect_SDK/doc/latest/nrf/samples/peripheral/radio_test/README.html"&gt;Radio test — nRF Connect SDK 1.9.99 documentation (nordicsemi.com)&lt;/a&gt;&lt;br /&gt;GitHub repo:&amp;nbsp;&lt;a href="https://github.com/nrfconnect/sdk-nrf/tree/v1.9.1/samples/peripheral/radio_test"&gt;sdk-nrf/samples/peripheral/radio_test at v1.9.1 · nrfconnect/sdk-nrf · GitHub&lt;/a&gt;&amp;nbsp;&lt;br /&gt;&lt;br /&gt;Regards,&lt;br /&gt;Jonathan&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>