<?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>nRF52 ANT+ CW test with SD212 0.9.1</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/14807/nrf52-ant-cw-test-with-sd212-0-9-1</link><description>I alway used direct UART command with nRF24AP2 and CW test was not a problem. 
 Now with nRF52xxx and S212 softdevice I try this ... but nothing works . 
 sd_ant_stack_reset();nrf_delay_ms(3000);
sd_ant_cw_test_mode_init();nrf_delay_ms(3000);
sd_ant_cw_test_mode</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 30 May 2019 11:57:54 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/14807/nrf52-ant-cw-test-with-sd212-0-9-1" /><item><title>RE: nRF52 ANT+ CW test with SD212 0.9.1</title><link>https://devzone.nordicsemi.com/thread/190053?ContentTypeID=1</link><pubDate>Thu, 30 May 2019 11:57:54 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ba6dab72-20d0-4531-9d65-75290b24e2ad</guid><dc:creator>calonysoro</dc:creator><description>&lt;p&gt;I got the all details from this article that was useful among the all aspect having federation on this that was useful. You can get the all assignment from &lt;span style="color:#1155cc;font-family:Calibri,Arial;font-size:11pt;font-style:normal;font-weight:normal;text-decoration:underline;"&gt;&lt;a class="in-cell-link" href="https://edubirdie.org/edubirdie-review-the-most-honest-and-reliable/" rel="noopener noreferrer" target="_blank"&gt;https://edubirdie.org/edubirdie-review-the-most-honest-and-reliable/&lt;/a&gt;&lt;/span&gt; this has the all famous writers on this that was good. I also got the CW test details from this that was good to have the all frictions on this.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52 ANT+ CW test with SD212 0.9.1</title><link>https://devzone.nordicsemi.com/thread/56535?ContentTypeID=1</link><pubDate>Thu, 30 Jun 2016 06:55:45 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4c70bbe6-604a-46b0-9e66-a87302b56c47</guid><dc:creator>&amp;#216;yvind Karlsen</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Please see the updated code above, turns out that the test mode init was missing.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Øyvind&lt;/li&gt;
&lt;/ul&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52 ANT+ CW test with SD212 0.9.1</title><link>https://devzone.nordicsemi.com/thread/56534?ContentTypeID=1</link><pubDate>Wed, 29 Jun 2016 13:06:59 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a5faee82-4ed4-4689-a52c-01ccea177140</guid><dc:creator>labaip</dc:creator><description>&lt;p&gt;Thanks ,
the sd_ant_cw_test_mode() code works for me (In modulated mode only ).
I will stay tuned for new S212 releases fixing the &amp;#39;unmodulated mode&amp;#39; issue .&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: nRF52 ANT+ CW test with SD212 0.9.1</title><link>https://devzone.nordicsemi.com/thread/56533?ContentTypeID=1</link><pubDate>Wed, 29 Jun 2016 10:50:19 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:fed99d78-ea8e-4a22-9518-f834089c1503</guid><dc:creator>&amp;#216;yvind Karlsen</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Try the following code:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;/**@brief Function for application main entry. Does not return.
 */ 
int main(void)
{
    uint32_t err_code;    
    
    // Setup SoftDevice and events handler
    err_code = softdevice_ant_evt_handler_set(ant_evt_dispatch);
    APP_ERROR_CHECK(err_code);

    err_code = softdevice_handler_init(NRF_CLOCK_LFCLKSRC, NULL, 0, NULL);
    APP_ERROR_CHECK(err_code);
    
    err_code = ant_stack_static_config();
    APP_ERROR_CHECK(err_code);

    sd_ant_cw_test_mode_init();
    // sd_ant_cw_test_mode assumes that the hfclck is enabled.
    // request and allow 2 ms to stabilize
    sd_clock_hfclk_request();
    nrf_delay_ms(2);

    APP_ERROR_CHECK(sd_ant_cw_test_mode(33,RADIO_TX_POWER_LVL_CUSTOM,RADIO_TXPOWER_TXPOWER_0dBm,1));
    for (;;)
    {
        uint32_t err_code = sd_app_evt_wait();
        APP_ERROR_CHECK(err_code);
    }

}
&lt;/code&gt;&lt;/pre&gt;
&lt;p&gt;The code gives a 0dBm output on channel 33. This code works fine for both modulated and CW for s210 and s212.&lt;/p&gt;
&lt;p&gt;If this doesn&amp;#39;t work for you, leave a comment below. As a workaround you can use the &lt;a href="http://infocenter.nordicsemi.com/topic/com.nordic.infocenter.sdk5.v11.0.0/nrf_radio_test_example.html?resultof=%22%72%61%64%69%6f%22%20%22%74%65%73%74%22%20"&gt;radio test example&lt;/a&gt;. This example can be found in &lt;code&gt;[YOUR_SDK_LOCATION]\nRF5_SDK_11.0.0_89a8197\examples\peripheral\radio_test\pca10028\arm5_no_packs&lt;/code&gt; in our most recent &lt;a href="https://developer.nordicsemi.com/nRF5_SDK/nRF5_SDK_v11.x.x/nRF5_SDK_11.0.0_89a8197.zip"&gt;SDK 11&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Øyvind&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>