<?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 set up NRF52810 constant carrier</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/65175/how-to-set-up-nrf52810-constant-carrier</link><description>I have tried a lot of different settings but the NRF52810 still does not output carrier.. 
 How do I configure the radio to only send carrier for NRF52810?</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Sat, 29 Aug 2020 02:56:27 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/65175/how-to-set-up-nrf52810-constant-carrier" /><item><title>RE: how to set up NRF52810 constant carrier</title><link>https://devzone.nordicsemi.com/thread/267056?ContentTypeID=1</link><pubDate>Sat, 29 Aug 2020 02:56:27 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:41fd2076-1fb2-417a-a4bf-2eaad655fa07</guid><dc:creator>antony.sun</dc:creator><description>&lt;p&gt;thank you very much!&lt;/p&gt;
&lt;p&gt;now it works well.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to set up NRF52810 constant carrier</title><link>https://devzone.nordicsemi.com/thread/267005?ContentTypeID=1</link><pubDate>Fri, 28 Aug 2020 12:30:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:a81aa97e-41ab-4bce-b33b-9474e2bf4041</guid><dc:creator>Andreas</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Try this hex:&amp;nbsp;&lt;a href="https://devzone.nordicsemi.com/cfs-file/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-739dd5aac8bd461ba189bc64dfee0f7e/unmod_5F00_2402.hex"&gt;devzone.nordicsemi.com/.../unmod_5F00_2402.hex&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;It runs&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;int main(void)
{
    NRF_CLOCK-&amp;gt;TASKS_HFCLKSTART=1;

    while (NRF_CLOCK-&amp;gt;EVENTS_HFCLKSTARTED == 0)
    {
        // Do nothing.
    }

    NRF_RADIO-&amp;gt;TASKS_TXEN=1;

    while (true)
    {
        __WFE();
    }
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I just verified it on a nRF52810 on my side, check 2402 MHz.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;There is not any differences in configuration between nRF52810 compared to other nRF52 devices, but you need to build a compatible project (e.g. PCA10040e projects in nRF5 SDK).&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to set up NRF52810 constant carrier</title><link>https://devzone.nordicsemi.com/thread/266888?ContentTypeID=1</link><pubDate>Fri, 28 Aug 2020 07:55:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:430e30ba-dcc3-4a2e-a333-6766f5731fb6</guid><dc:creator>antony.sun</dc:creator><description>&lt;p&gt;thanks a lot.&lt;/p&gt;
&lt;p&gt;I use the same code to try.&lt;/p&gt;
&lt;p&gt;but the device still do not send the carrier.&lt;/p&gt;
&lt;p&gt;is the 52810 different from others config?&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: how to set up NRF52810 constant carrier</title><link>https://devzone.nordicsemi.com/thread/266117?ContentTypeID=1</link><pubDate>Tue, 25 Aug 2020 07:52:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:02860134-f985-4409-8bb1-89875a3a645a</guid><dc:creator>Andreas</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;Start HFXO:&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_CLOCK-&amp;gt;TASKS_HFCLKSTART = 1;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;Wait for HFXO to start:&amp;nbsp;&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;// Wait for the external oscillator to start up.
while (NRF_CLOCK-&amp;gt;EVENTS_HFCLKSTARTED == 0)
{
    // Do nothing.
}&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;(Optional) Set frequency:&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_RADIO-&amp;gt;FREQUENCY = x;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;(Optional) Set &lt;a href="https://infocenter.nordicsemi.com/topic/ps_nrf52810/radio.html?cp=4_5_0_5_13_13_29#register.TXPOWER"&gt;output power&lt;/a&gt;:&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_RADIO-&amp;gt;TXPOWER = y;&lt;/pre&gt;&lt;/li&gt;
&lt;li&gt;Start the radio:&amp;nbsp;&lt;pre class="ui-code" data-mode="c_cpp"&gt;NRF_RADIO-&amp;gt;TASKS_TXEN = 1;&lt;/pre&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;You can also use the radio test example in our nRF5 SDK.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Andreas&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>