fix: Solve the lightsleep crash problem via disable lightsleep for indicator. (#5470)

This commit is contained in:
virgil
2024-11-28 06:19:18 -06:00
committed by GitHub
co-authored by GitHub
parent 8df7a035e2
commit 060a3bde4d
2 changed files with 6 additions and 1 deletions
+5
View File
@@ -336,6 +336,11 @@ esp_sleep_wakeup_cause_t doLightSleep(uint64_t sleepMsec) // FIXME, use a more r
{
// LOG_DEBUG("Enter light sleep");
//LORA_DIO1 is an extended IO pin. Setting it as a wake-up pin will cause problems, such as the indicator device not entering LightSleep.
#if defined(SENSECAP_INDICATOR)
return ESP_SLEEP_WAKEUP_TIMER;
#endif
waitEnterSleep(false);
uint64_t sleepUsec = sleepMsec * 1000LL;