<?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>Problem to generate modulated countiuous signal</title><link>https://devzone.nordicsemi.com/f/nordic-q-a/32657/problem-to-generate-modulated-countiuous-signal</link><description>Hi everyone! I&amp;#39;m trying to generate a modulated continuous signal in a specific channel using nrf52832. I used a code made from radio_test example that follows. The problem is that at the laboratory I&amp;#39;m contact with they couldn&amp;#39;t find any signal, I don</description><dc:language>en-US</dc:language><generator>Telligent Community 13</generator><lastBuildDate>Fri, 23 Mar 2018 14:16:43 GMT</lastBuildDate><atom:link rel="self" type="application/rss+xml" href="https://devzone.nordicsemi.com/f/nordic-q-a/32657/problem-to-generate-modulated-countiuous-signal" /><item><title>RE: Problem to generate modulated countiuous signal</title><link>https://devzone.nordicsemi.com/thread/125753?ContentTypeID=1</link><pubDate>Fri, 23 Mar 2018 14:16:43 GMT</pubDate><guid isPermaLink="false">137ad170-7792-4731-bb38-c0d22fbe4515:be5f3d17-c647-441b-b31e-b4b8b00c03da</guid><dc:creator>MartinBL</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;You have forgotten to actually start the radio. Try changing your code to something like this:&lt;/p&gt;
&lt;p&gt;&lt;pre class="ui-code" data-mode="c_cpp"&gt;int main(void)
{ 
    uint8_t txpower = RADIO_TXPOWER_TXPOWER_0dBm; // 0 dBm
    uint8_t mode = RADIO_MODE_MODE_Nrf_2Mbit; // 2 MBit mode
    uint8_t channel = 40; // Transmit at channel 40
    int delayms = 10;
    init();
    radio_modulated_tx_carrier(txpower, mode, channel);
    
    NRF_RADIO-&amp;gt;TASKS_START = 1;

    while(true) 
    { 
        ;
    }
    
}&lt;/pre&gt;&lt;/p&gt;
&lt;p&gt;Note that you shouldn&amp;#39;t place all your code inside your while(true) loop. That will just restart your radio over and over again, and not transmit any measurable signals.&lt;/p&gt;
&lt;p&gt;If you have an extra nRF52 DK kit you can use &lt;a href="https://www.nordicsemi.com/eng/Products/Bluetooth-low-energy/nRF-Connect-for-desktop/(language)/eng-GB"&gt;nRF Connect for desktop&lt;/a&gt; and the RSSI Viewer plugin to visualize the spectrum. After modifying your code my RSSI Viewer showed me this:&lt;/p&gt;
&lt;p&gt;&lt;img src="https://devzone.nordicsemi.com/resized-image/__size/320x240/__key/support-attachments/beef5d1b77644c448dabff31668f3a47-cff7867688994764816827679cbf7de1/RSSI-Viewer.png" alt=" " /&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;div style="clear:both;"&gt;&lt;/div&gt;</description></item></channel></rss>