This post is older than 2 years and might not be relevant anymore
More Info: Consider searching for newer posts

how to set up NRF52810 constant carrier

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? 

Parents
  • Hi,

     

    1. Start HFXO: 
      NRF_CLOCK->TASKS_HFCLKSTART = 1;
    2. Wait for HFXO to start:  
      // Wait for the external oscillator to start up.
      while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0)
      {
          // Do nothing.
      }
    3. (Optional) Set frequency: 
      NRF_RADIO->FREQUENCY = x;
    4. (Optional) Set output power
      NRF_RADIO->TXPOWER = y;
    5. Start the radio: 
      NRF_RADIO->TASKS_TXEN = 1;

     

    You can also use the radio test example in our nRF5 SDK.

     

    Best regards,

    Andreas

Reply
  • Hi,

     

    1. Start HFXO: 
      NRF_CLOCK->TASKS_HFCLKSTART = 1;
    2. Wait for HFXO to start:  
      // Wait for the external oscillator to start up.
      while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0)
      {
          // Do nothing.
      }
    3. (Optional) Set frequency: 
      NRF_RADIO->FREQUENCY = x;
    4. (Optional) Set output power
      NRF_RADIO->TXPOWER = y;
    5. Start the radio: 
      NRF_RADIO->TASKS_TXEN = 1;

     

    You can also use the radio test example in our nRF5 SDK.

     

    Best regards,

    Andreas

Children
Related