请教SYD8811 睡眠模式下用GPIO唤醒如何配置?
这是我的的配置 ,现在问题是睡眠过后马上就唤醒了!
```c
p_cfg.wakeup_type=POWERDOWN_WAKEUP;//唤醒源类型 SLEEP_WAKEUP MCU sleep唤醒 POWERDOWN_WAKEUP 系统下电 RTC有电
p_cfg.gpi_wakeup_cfg=BIT24;//配置GPIO唤醒引脚 bit0:gpio0 ......
p_cfg.gpi_wakeup_en=true;//使能GPIO中断唤醒
p_cfg.timer_wakeup_en=false;//使能timer中断唤醒
p_cfg.wdt_wakeup_en=false;//使能watchdog中断唤醒
p_cfg.rtc_wakeup_en=true;//使能RTC中断唤醒
p_cfg.capdet_wakeup_en=false;//使能capdet唤醒
p_cfg.ana_wakeup_en=false;//使能analog唤醒
WakeupConfig (&p_cfg);
```