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 Reply
  • Hi,

     

    Try this hex: unmod_2402.hex

    It runs

    int main(void)
    {
        NRF_CLOCK->TASKS_HFCLKSTART=1;
    
        while (NRF_CLOCK->EVENTS_HFCLKSTARTED == 0)
        {
            // Do nothing.
        }
    
        NRF_RADIO->TASKS_TXEN=1;
    
        while (true)
        {
            __WFE();
        }
    }

     

    I just verified it on a nRF52810 on my side, check 2402 MHz.

     

    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).

     

    Best regards,

    Andreas

Children
No Data
Related