<?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>Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/48821/unmodulated-tx-carrier-and-softdevice</link><description>Hi! 
 Is it technically possible to implement performing of unmodulated TX carrier transmission by a write to some BLE characteristic? If yes, then from what to start? 
 Thank you!</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Thu, 20 Jun 2019 14:29:05 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/48821/unmodulated-tx-carrier-and-softdevice" /><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193922?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 14:29:05 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:b06ef93c-0e65-4bfd-90e7-f7f925984263</guid><dc:creator>cbd</dc:creator><description>&lt;p&gt;Yes.&lt;/p&gt;
&lt;p&gt;I don&amp;#39;t think that you can do what you wish with the SoftDevice enabled.&lt;/p&gt;
&lt;p&gt;You&amp;#39;ll need to react to data received either through a custom characteristic or over the Nordic BLE UART code, then disable the softdevice to run the radio test code.&lt;/p&gt;
&lt;p&gt;I tend to check a gpio line on power-up and switch to my DTM code before SoftDevice start-up. You could check an NVM location to do the same and then after a period erase that NVM location and trigger a reset.&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193918?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 14:19:18 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:ef160076-5fca-4c83-a472-9f150577b50d</guid><dc:creator>Elias L&amp;#246;we</dc:creator><description>&lt;p&gt;Thank you! Good to know.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193917?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 14:18:26 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:38445370-1dc3-468d-8297-74414bfe72b6</guid><dc:creator>Einar Thorsrud</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;There is no way to output an unmodulated carrier while the SoftDevice is enabled.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193907?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 14:04:00 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:44913fe2-9c15-49dc-a99e-44a0aaa33842</guid><dc:creator>Elias L&amp;#246;we</dc:creator><description>&lt;p&gt;Yes, I went through this example but it has softdevice disabled.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193906?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 14:01:55 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:4f280006-4b52-4e60-8af3-5b173539f5ce</guid><dc:creator>cbd</dc:creator><description>&lt;p&gt;Have a look at the nRF SDK Radio Test Example.&lt;/p&gt;
&lt;p&gt;It may be that you can configure a DevKit to detect the unmodulated carrier, although I&amp;#39;ve not tried it myself.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193902?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 13:50:28 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:cdaf1f0c-f780-4368-a0ae-6f42c72f6f5b</guid><dc:creator>Elias L&amp;#246;we</dc:creator><description>&lt;p&gt;I&amp;#39;ve tried this procedure in my project&lt;br /&gt;&lt;pre class="ui-code" data-mode="text"&gt;    NRF_RADIO-&amp;gt;SHORTS          = 0;
    NRF_RADIO-&amp;gt;EVENTS_DISABLED = 0;
    NRF_RADIO-&amp;gt;TASKS_DISABLE = 1;

    while (NRF_RADIO-&amp;gt;EVENTS_DISABLED == 0)
    {
        // Do nothing.
    }
    NRF_RADIO-&amp;gt;EVENTS_DISABLED = 0;

    // prepare radio
    NRF_RADIO-&amp;gt;SHORTS  = RADIO_SHORTS_READY_START_Msk;
    NRF_RADIO-&amp;gt;TXPOWER = (tx_power &amp;lt;&amp;lt; RADIO_TXPOWER_TXPOWER_Pos);
    NRF_RADIO-&amp;gt;MODE    = (mode &amp;lt;&amp;lt; RADIO_MODE_MODE_Pos);

    // set channel
    NRF_RADIO-&amp;gt;FREQUENCY = channel;

    // begin
    NRF_RADIO-&amp;gt;TASKS_TXEN = 1;&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;But getting to a breakpoint with empty call stack in ozone.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;If I execute only this in a main function, then it somehow works, though currently I don&amp;#39;t have anything to analyze if it was transmitted or not.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item><item><title>RE: Unmodulated TX Carrier and softdevice</title><link>https://devzone.nordicsemi.com/thread/193901?ContentTypeID=1</link><pubDate>Thu, 20 Jun 2019 13:36:37 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:f6308b8f-ee82-4bb3-bf35-8182543c4f8f</guid><dc:creator>cbd</dc:creator><description>&lt;p&gt;I guess that you could, as all DTM, radio test functions are available from with the SDK, but you wouldn&amp;#39;t be able to receive any BLE communications after doing so.&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>