esp_deep_sleep_try() function
Enter deep-sleep mode The device will automatically wake up after the deep-sleep time Upon waking up, the device calls deep sleep wake stub, and then proceeds to load application. Call to this function is equivalent to a call to esp_deep_sleep_enable_timer_wakeup followed by a call to esp_deep_sleep_start. The reason for the rejection can be such as a short sleep time.
Arguments
time_in_us
deep-sleep time, unit: microsecond
Return value
- No return - If the sleep is not rejected. - ESP_ERR_SLEEP_REJECT sleep request is rejected(wakeup source set before the sleep request)
Notes
In general, the function does not return, but if the sleep is rejected, then it returns from it.