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

Verify working of DCDC converter on PCA10056

Hi,

I'm using the PCA10056 dev kit to verify the workings of the DCDC converter. I added the following code after nrf_sdh_enable_request():

e = sd_power_dcdc_mode_set(NRF_POWER_DCDC_ENABLE);

When I now use an oscilloscope to check the DCC pin, I never see it switch. I tried connecting to the board using nRF Connect to have the Bluetooth radio active.

How can I verify that the DCDC converter is enabled?

Thanks in advance.

Kind regards,

Remco Poelstra

Parents
  • When you enable the DCDC, it is is automatically controlled, always choosing the regulator that will consume the least current. When the chip is in IDLE the ultra low power regulator is used, and the DCDC is switched off.

    Try to enable the DCDC and enable something that consumes current (Like the HF clock). Or prevent the CPU from sleeping in the main loop (removing any WFE/WFI calls), and you will see the switching on the DCC pin

    An other way to see if the DCDC is enabled is to check the current consumption. Especially the radio TX/RX peaks will be different with DCDC enabled or not. Have a look at the online power profiler to see what's expected: https://devzone.nordicsemi.com/nordic/power

Reply
  • When you enable the DCDC, it is is automatically controlled, always choosing the regulator that will consume the least current. When the chip is in IDLE the ultra low power regulator is used, and the DCDC is switched off.

    Try to enable the DCDC and enable something that consumes current (Like the HF clock). Or prevent the CPU from sleeping in the main loop (removing any WFE/WFI calls), and you will see the switching on the DCC pin

    An other way to see if the DCDC is enabled is to check the current consumption. Especially the radio TX/RX peaks will be different with DCDC enabled or not. Have a look at the online power profiler to see what's expected: https://devzone.nordicsemi.com/nordic/power

Children
Related