Hi!
I tried to run pmu_wakeup_demo from github.com/.../BLE_SDK10_DA1470x_examples on DA14706 DevKit.
When I enable hibernation mode, power consumption decreases to 200 - 300 nA, and seems it is really hibernation. (It can't wake up by reset or power switching, only by connecting Vbus).
Vbat voltage is 3.3 V.
The main problem is Vsys voltage in hibernation is about 2.9 Volts and I still can power external devices from it (after connection external device to Vsys, consumption increases to 10 mA).
As I understand based on documentation, device should open sysbat switch and as a result power off all peripheral, connected to Vsys.
I tried to set FORCE_VBAT_VSYS_SW register manually for open switch this switch, but it had no result.
My device in “Shipping mode” should disable all external peripheral, I hope I do something wrong.
What can be problem?
Do I need to prepare DA14706 to hibernation mode? May be you have some guidelines for it?
Does it really possible to disable Vsys at all, or I need to use external power control scheme?
Hi Kars,
About the hibernation mode please refer to this tutorial: 3. BSP — DA1470x Software Platform Reference (renesas.com)
The VSYS will close when entering the hibernation mode.
In this header file you can get the APIs:
BR,
Jason
Thank you for your reply!
I want to notice what i use almost pure pmu_wakeup_demo example, (I disabled wakeup by pin and redefined button pins) with SDK-10.2.6.49
1. I used pm_sleep_mode_set(pm_mode_hibernation) function to set hibernation mode, it is not enough, right?
2. I checked hw_wkup_set_hibernation_mode(true), but Vsys rail still have 2.8 - 2.9 V and I can power external peripheral from it. (I saw no changes compared to pm_mode_hibernation)
I already found, what hw_wkup_set_hibernation_mode(true) is similar to hw_sys_enable_hibernation_mode() function, which calls in pm_prepare_sleep(). This is result of pm_sleep_mode_set(pm_mode_hibernation).
so it is not surprise, what hw_wkup_set_hibernation_mode(true) has the same result.