DA1469x裸金属代码with sleep mode

Learn MoreFAQsTutorials

3 posts / 0 new
Last post
Manishkumar Bante
Offline
Last seen:2 months 2 weeks ago
加入:2020-05-14 12:36
DA1469x裸金属代码with sleep mode

Hello DA ,

How do I put my DA14695 device into deep sleep / Hibenration without use of freeRTOS ( i.e. Without using task scheduler ).

Device:
PM_Dialog
Offline
Last seen:3 hours 19 min ago
Staff
加入:2018-02-08 11:03
Hi Manishkumar Bante,

Hi Manishkumar Bante,

Why you need to do that? This is not possible. Please see Figure 5 Going to sleep and waking up steps from theUM-B-092: DA1469x Software Platform Reference Manualuser manual.

However, if you want to create a bare-metal project, please check theDA1469x Bare Metal Blinky.

Thanks, PM_Dialog

Manishkumar Bante
Offline
Last seen:2 months 2 weeks ago
加入:2020-05-14 12:36
I have configured one GPIO

I have configured one GPIO for Sleep mode and wakeup operation .

So whenever the GPIO is pressed( rising edge ) , immediately It has to go to deep sleep mode , But for now when I call below APIs in System Init task , It takes 8-9 seconds to go to sleep mode .

pm_set_wakeup_mode(true);
pm_sleep_mode_set(pm_mode_hibernation);
pm_set_sys_wakeup_mode(pm_sys_wakeup_mode_slow);

I