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

Spurious frequency 12.8 Mhz. DCDC Converter ?

Hello,

When I analyse the output of my radio, I see that I have a spurious frequency at 12,8 Mhz.

I supply my custom board with a fidelity power supply so no problem with that.

I think it could come from the internal DCDC, what's its frequency switch ?

How can I disable it in the SDK15 ?

Maybe it is something else but no other idea at the moment.

Thanks for the support,
Sylvain.

Parents
  • If you are using the SD then through the API it is:

            err_code = sd_power_dcdc_mode_set(NRF_POWER_DCDC_DISABLE);  //
            APP_ERROR_CHECK(err_code);

    If you are not running the SD then it is:

    NRF_POWER->DCDCEN = 0;

    Though the dcdc runs at 8MHz so I doubt it is directly caused by it.  Could be a mix of something.

    Do you have an external amp or anything on it?  Is this a custom board?

Reply
  • If you are using the SD then through the API it is:

            err_code = sd_power_dcdc_mode_set(NRF_POWER_DCDC_DISABLE);  //
            APP_ERROR_CHECK(err_code);

    If you are not running the SD then it is:

    NRF_POWER->DCDCEN = 0;

    Though the dcdc runs at 8MHz so I doubt it is directly caused by it.  Could be a mix of something.

    Do you have an external amp or anything on it?  Is this a custom board?

Children
Related