Is it possible to make the nRF52832 IC transmit a CW ?

Is it possible to make the nRF52832 IC transmit a CW ?

And if yes, how do we make it doing so ?

Parents Reply
  • Hi Per,

     

    Yes, that is possible, but you will have to modify the example to do so.

    If you look into radio_cmd.c::cmd_tx_carrier_start(), you can see an example on how to initialize the radio_test module directly:

    m_test_config.type                          = UNMODULATED_TX;
    m_test_config.mode                          = m_config.mode;
    m_test_config.params.unmodulated_tx.txpower = m_config.txpower;
    m_test_config.params.unmodulated_tx.channel = m_config.channel_start;
    
    radio_test_start(&m_test_config);

     

    Kind regards,

    Håkon

Children
Related