<?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 example (hex files)</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/72622/radio_test-example-hex-files</link><description>Hi, 
 We are working on a new product with &amp;quot; nRF52832 &amp;quot; IC. We want to test our design RF antenna (PCB trace Antenna) performance. For RF test we found an example code and .hex files in the SDK-examples folder. 
 
 We used these hex files to test the</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Tue, 16 Mar 2021 06:11:01 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/72622/radio_test-example-hex-files" /><item><title>RE: radio_test example (hex files)</title><link>https://devzone.nordicsemi.com/thread/299990?ContentTypeID=1</link><pubDate>Tue, 16 Mar 2021 06:11:01 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:edf5d3bc-46a3-4f5a-bd0e-13b32b9a042a</guid><dc:creator>Prash</dc:creator><description>&lt;p&gt;&lt;span&gt;Thanks for your help.&lt;/span&gt;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: radio_test example (hex files)</title><link>https://devzone.nordicsemi.com/thread/299277?ContentTypeID=1</link><pubDate>Thu, 11 Mar 2021 13:17:40 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:d3acc7d2-8059-47d3-a538-b4f7bf36a895</guid><dc:creator>Kenneth</dc:creator><description>&lt;p&gt;Hello,&lt;/p&gt;
&lt;p&gt;I presume you have made your own hardware here, in that case you should check that the default pins are the ones you are using also, if not you may need to re-compile the project with your specific settings:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="text"&gt;static void cli_init(void)
{
    ret_code_t ret;

    nrf_drv_uart_config_t uart_config = NRF_DRV_UART_DEFAULT_CONFIG;

    uart_config.pseltxd = TX_PIN_NUMBER;
    uart_config.pselrxd = RX_PIN_NUMBER;
    uart_config.hwfc    = NRF_UART_HWFC_DISABLED;
    ret                 = nrf_cli_init(&amp;amp;m_cli_uart, &amp;amp;uart_config, true, true, NRF_LOG_SEVERITY_INFO);
    APP_ERROR_CHECK(ret);
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;For the nRF52832 I suspect you are by default using the pca10040 project (nRF52-DK), in which case these are the pins that by default are used:&lt;/p&gt;
&lt;p&gt;#define RX_PIN_NUMBER 8&lt;br /&gt;#define TX_PIN_NUMBER 6&lt;/p&gt;
&lt;p&gt;Also, by default you can see there is no HWFC (in other words there is no RTS and CTS pins).&lt;/p&gt;
&lt;p&gt;The default baudrate is 115200, this can also be changed in UART_DEFAULT_CONFIG_BAUDRATE in sdk_config.h&lt;/p&gt;
&lt;p&gt;Each time you reset or power on the module you should see a &amp;quot;Radio test example started.&amp;quot; in the terminal window, you can connect a logic analyzer to double check you have not mixed RX and TX pins, and that the voltage is correct.&lt;/p&gt;
&lt;p&gt;Hope that helps,&lt;br /&gt;Kenneth&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>