Sleep does not work with BLE advertise

Hi,

nRF52832, SDK 17.1.0 with Softdevice S132.

Softdevice sleep does not work when advertising. Application flow is to advertise one packet, then go to sleep for X seconds. Sleep part waits for a flag from "BLE_GAP_EVT_ADV_SET_TERMINATED" event.

If "sd_app_evt_wait" is replaced with "__WFI" when sleep works but BLE does not advertise anymore(even BLE_GAP_EVT_ADV_SET_TERMINATED is received).

Any idea how to put device to sleep?

This code works

This code does not work(consumption around ~3.5mA)

sleep function:


Only RTC2 IRQ is enabled. FPU is disabled(soft FPU is used).

System init

EDIT: BLE init functions

Parents
  • Hi,

    When using a SoftDevice you should wait by calling sd_app_evt_wait(), and not WFI (or WFE for that matter) directly. Advertising in itself should not cause any probem, should not contribute to current consumption in between advertising events. Can you show the implementation of your BLE::advertise(), as it is including that that increases the current consumption?

  • Hi,

    BLE functions are added to main post.

    Seems like device does not go to sleep since I can connect to it via SWD(J-Link). I guess some BLE event prevents sleep.
    I tried __WFI just for test otherwise SD sleep function is used.

  • I use RTT for logging. Only RTC2 is enabled during sleep. ADC is stopped and disabled on EVENTS_END.

    VDD is 3V from PPK2. Only PPK2 is connected, no J-Link.
    RTC2 wakeup period(and advertise period) is 5s.

    When you say BLE events - what do you mean by BLE events? I use only BLE for advertise. Scanner and connect stuff should be disabled, so no BLE events for that?

    I use custom board

    DCDC is disabled before sleep and enabled after wakeup(due to higher consumption with DCDC on during sleep).

    Code is: https://github.com/silvio3105/sTPMS_FW/tree/dev (dev branch, application and modules folder)

    ppk2-20250325T110356.ppk2

    This is done with DEBUG build(DEBUG flag is added during build, NRF_LOG is enabled over RTT)
    Most os these peaks are 2.5s apart. nRF connect app says period is 5 seconds.

  • I think is not HW problem.

    I did this

    main()
    {

    NRF_POWER->POFCON = 0;

    NRF_POWER->DCDCEN = 1;

    while ()

    {

    __WFI();

    }

    // OLD CODE

    }

    And consumption is ~7uA

  • So I reduced base power consumption when in sleep to ~5uA. Only problem is that I have peaks(BLE/SD?) every 2.5 seconds. Wakeup period is 5s.

    Closer look to 2.5s peaks

    EDIT:

    Seems like RTC2 is cause of wakeup. Not sure why since I don't see anything related to CC / 2 wakeup/interrupt/event.

    EDIT2: Errata for rev2 - section 3.47

  • Hi,

    I see, so you are triggering errata 179 from your use?

    The zoomed in is still a bit fare out, but it could look like the first is BLE advertising (though it is still ab it dificult to see clearly, so you could export and upload the .ppk2 file). But other than that, we would probably  need to look in your code to understand what any other wakups are, as the SoftDevice will not wake the device unless it has work to do (which it will not have outside of BLE events when you use a 32.768 kHz crytsal).

  • Code is at

    github.com/.../Main.cpp
    https://github.com/silvio3105/sTPMS_FW/tree/dev/Modules

    I did a test - did not used RTC2 and its wakeup(just commented RTC stuff) and let watchdog do the reset. It had peaks every 9 seconds(WDT period is measure period + 4 seconds). At that time, softdevice was enabled and BLE is used for advertise(1 adv event) right after startup and before sleep.

    Is there any way to use softdevice for wakeup with periods up to 60 seconds?

Reply Children
  • silvio3105 said:
    Is there any way to use softdevice for wakeup with periods up to 60 seconds?

    The SoftDevice it self will wake the CPU (based on RTC0) when needed, but it will put the CPU to sleep again without fordarding to the application unless there are events for the application. For the application to wake on a specific ime, you need to use your own RTC instances (either like you do with RTC2, or for instance using the app_timer library which is based on RTC1.

  • Did you find anything in the code? I use RTC2 and as we see, it causes some problems with peaks every cc/2.

  • No, I would like to get the .ppk2 files first to see if the pattern looks familliar

  • example.ppk2

    Here's code from example ppk2 file - github.com/.../nrf_sleep

    Advertise period is 5s, 1 advertise, wakeup with RTC2

    no rtc.ppk2

    This is example when RTC2 is not inited(in System::init) and body of System::startWakeupTimer is removed. WDT resets the MCU. It still advertises on startup(1 advertise).

    Even if I disable SD before sleep, and replace sleep with __WFI I still gets those peaks at 1/2 of measure period.

    Should I open new ticket?