2020-11-26 22:06:37 -05:00
|
|
|
/*
|
2020-09-24 01:29:04 -04:00
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2016 Scott Shawcroft for Adafruit Industries
|
|
|
|
* Copyright (c) 2019 Lucian Copeland for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2020-11-25 15:07:57 -05:00
|
|
|
#include "py/obj.h"
|
2020-11-22 19:10:09 -05:00
|
|
|
#include "py/objtuple.h"
|
2020-11-22 21:52:37 -05:00
|
|
|
#include "py/runtime.h"
|
2020-11-22 19:10:09 -05:00
|
|
|
|
2020-09-24 01:29:04 -04:00
|
|
|
#include "shared-bindings/alarm/__init__.h"
|
2020-11-20 23:33:39 -05:00
|
|
|
#include "shared-bindings/alarm/pin/PinAlarm.h"
|
2020-11-25 17:52:06 -05:00
|
|
|
#include "shared-bindings/alarm/time/TimeAlarm.h"
|
2020-11-22 21:52:37 -05:00
|
|
|
#include "shared-bindings/microcontroller/__init__.h"
|
2020-11-25 15:07:57 -05:00
|
|
|
#include "shared-bindings/time/__init__.h"
|
2020-09-24 01:29:04 -04:00
|
|
|
|
2020-11-25 17:52:06 -05:00
|
|
|
#include "esp_log.h"
|
2020-09-24 01:29:04 -04:00
|
|
|
#include "esp_sleep.h"
|
2020-11-27 16:02:17 -05:00
|
|
|
#include "esp_wifi.h"
|
2020-09-24 01:29:04 -04:00
|
|
|
|
2020-11-22 19:10:09 -05:00
|
|
|
STATIC mp_obj_tuple_t *_deep_sleep_alarms;
|
|
|
|
|
|
|
|
void alarm_reset(void) {
|
2020-11-22 21:52:37 -05:00
|
|
|
_deep_sleep_alarms = mp_const_empty_tuple;
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
|
|
|
|
2020-09-26 01:45:50 -04:00
|
|
|
void common_hal_alarm_disable_all(void) {
|
|
|
|
esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_ALL);
|
|
|
|
}
|
|
|
|
|
2020-09-24 01:29:04 -04:00
|
|
|
mp_obj_t common_hal_alarm_get_wake_alarm(void) {
|
|
|
|
switch (esp_sleep_get_wakeup_cause()) {
|
2020-11-20 23:33:39 -05:00
|
|
|
case ESP_SLEEP_WAKEUP_TIMER: {
|
|
|
|
// Wake up from timer.
|
2020-11-25 17:52:06 -05:00
|
|
|
alarm_time_time_alarm_obj_t *timer = m_new_obj(alarm_time_time_alarm_obj_t);
|
|
|
|
timer->base.type = &alarm_time_time_alarm_type;
|
2020-09-24 01:29:04 -04:00
|
|
|
return timer;
|
2020-11-20 23:33:39 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
case ESP_SLEEP_WAKEUP_EXT0: {
|
|
|
|
// Wake up from GPIO
|
|
|
|
alarm_pin_pin_alarm_obj_t *ext0 = m_new_obj(alarm_pin_pin_alarm_obj_t);
|
|
|
|
ext0->base.type = &alarm_pin_pin_alarm_type;
|
2020-09-24 14:58:50 -04:00
|
|
|
return ext0;
|
2020-11-20 23:33:39 -05:00
|
|
|
}
|
|
|
|
|
2020-09-24 14:58:50 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_TOUCHPAD:
|
2020-11-20 23:33:39 -05:00
|
|
|
// TODO: implement TouchIO
|
|
|
|
// Wake up from touch on pad, esp_sleep_get_touchpad_wakeup_status()
|
2020-09-24 14:58:50 -04:00
|
|
|
break;
|
2020-11-20 23:33:39 -05:00
|
|
|
|
2020-09-24 01:29:04 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_UNDEFINED:
|
|
|
|
default:
|
2020-11-20 23:33:39 -05:00
|
|
|
// Not a deep sleep reset.
|
2020-09-24 01:29:04 -04:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
2020-11-22 19:10:09 -05:00
|
|
|
|
2020-11-27 16:02:17 -05:00
|
|
|
// Set up light sleep or deep sleep alarms.
|
|
|
|
STATIC void setup_sleep_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
2020-11-22 19:10:09 -05:00
|
|
|
bool time_alarm_set = false;
|
2020-11-26 22:06:37 -05:00
|
|
|
alarm_time_time_alarm_obj_t *time_alarm = MP_OBJ_NULL;
|
|
|
|
|
2020-11-22 19:10:09 -05:00
|
|
|
for (size_t i = 0; i < n_alarms; i++) {
|
|
|
|
if (MP_OBJ_IS_TYPE(alarms[i], &alarm_pin_pin_alarm_type)) {
|
2020-11-27 16:02:17 -05:00
|
|
|
mp_raise_NotImplementedError(translate("PinAlarm not yet implemented"));
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
2020-11-25 17:52:06 -05:00
|
|
|
else if (MP_OBJ_IS_TYPE(alarms[i], &alarm_time_time_alarm_type)) {
|
2020-11-22 19:10:09 -05:00
|
|
|
if (time_alarm_set) {
|
|
|
|
mp_raise_ValueError(translate("Only one alarm.time alarm can be set."));
|
|
|
|
}
|
2020-11-26 22:06:37 -05:00
|
|
|
time_alarm = MP_OBJ_TO_PTR(alarms[i]);
|
2020-11-22 19:10:09 -05:00
|
|
|
time_alarm_set = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-26 22:06:37 -05:00
|
|
|
if (time_alarm != MP_OBJ_NULL) {
|
|
|
|
// Compute how long to actually sleep, considering the time now.
|
|
|
|
mp_float_t now_secs = uint64_to_float(common_hal_time_monotonic_ms()) / 1000.0f;
|
|
|
|
mp_float_t wakeup_in_secs = MAX(0.0f, time_alarm->monotonic_time - now_secs);
|
2020-11-27 16:02:17 -05:00
|
|
|
const uint64_t sleep_for_us = (uint64_t) (wakeup_in_secs * 1000000);
|
|
|
|
ESP_LOGI("ALARM", "Sleep for us: %lld", sleep_for_us);
|
|
|
|
esp_sleep_enable_timer_wakeup(sleep_for_us);
|
2020-11-26 22:06:37 -05:00
|
|
|
}
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|
|
|
|
|
2020-11-27 16:02:17 -05:00
|
|
|
mp_obj_t common_hal_alarm_wait_until_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
|
|
|
if (n_alarms == 0) {
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool time_alarm_set = false;
|
|
|
|
alarm_time_time_alarm_obj_t *time_alarm = MP_OBJ_NULL;
|
|
|
|
|
|
|
|
for (size_t i = 0; i < n_alarms; i++) {
|
|
|
|
if (MP_OBJ_IS_TYPE(alarms[i], &alarm_pin_pin_alarm_type)) {
|
|
|
|
mp_raise_NotImplementedError(translate("PinAlarm not yet implemented"));
|
|
|
|
}
|
|
|
|
else if (MP_OBJ_IS_TYPE(alarms[i], &alarm_time_time_alarm_type)) {
|
|
|
|
if (time_alarm_set) {
|
|
|
|
mp_raise_ValueError(translate("Only one alarm.time alarm can be set."));
|
|
|
|
}
|
|
|
|
time_alarm = MP_OBJ_TO_PTR(alarms[i]);
|
|
|
|
time_alarm_set = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ESP_LOGI("ALARM", "waiting for alarms");
|
|
|
|
|
|
|
|
if (time_alarm_set && n_alarms == 1) {
|
|
|
|
// If we're only checking time, avoid a polling loop, so maybe we can save some power.
|
|
|
|
const mp_float_t now_secs = uint64_to_float(common_hal_time_monotonic_ms()) / 1000.0f;
|
|
|
|
const mp_float_t wakeup_in_secs = MAX(0.0f, time_alarm->monotonic_time - now_secs);
|
|
|
|
const uint32_t delay_ms = (uint32_t) (wakeup_in_secs * 1000.0f);
|
|
|
|
ESP_LOGI("ALARM", "Delay for ms: %d", delay_ms);
|
|
|
|
common_hal_time_delay_ms((uint32_t) delay_ms);
|
|
|
|
} else {
|
|
|
|
// Poll for alarms.
|
|
|
|
while (true) {
|
|
|
|
RUN_BACKGROUND_TASKS;
|
|
|
|
// Allow ctrl-C interrupt.
|
|
|
|
if (mp_hal_is_interrupted()) {
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Check PinAlarms.
|
|
|
|
|
|
|
|
if (time_alarm != MP_OBJ_NULL &&
|
|
|
|
common_hal_time_monotonic_ms() * 1000.f >= time_alarm->monotonic_time) {
|
|
|
|
return time_alarm;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
2020-11-26 22:06:37 -05:00
|
|
|
mp_obj_t common_hal_alarm_sleep_until_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
2020-11-27 16:02:17 -05:00
|
|
|
if (n_alarms == 0) {
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
setup_sleep_alarms(n_alarms, alarms);
|
2020-11-26 22:06:37 -05:00
|
|
|
|
|
|
|
// Shut down wifi cleanly.
|
|
|
|
esp_wifi_stop();
|
2020-11-27 16:02:17 -05:00
|
|
|
ESP_LOGI("ALARM", "start light sleep");
|
2020-11-26 22:06:37 -05:00
|
|
|
esp_light_sleep_start();
|
|
|
|
return common_hal_alarm_get_wake_alarm();
|
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_alarm_exit_and_deep_sleep_until_alarms(size_t n_alarms, const mp_obj_t *alarms) {
|
2020-11-27 16:02:17 -05:00
|
|
|
setup_sleep_alarms(n_alarms, alarms);
|
2020-11-26 22:06:37 -05:00
|
|
|
|
|
|
|
// Shut down wifi cleanly.
|
|
|
|
esp_wifi_stop();
|
2020-11-27 16:02:17 -05:00
|
|
|
ESP_LOGI("ALARM", "start deep sleep");
|
2020-11-26 22:06:37 -05:00
|
|
|
esp_deep_sleep_start();
|
2020-11-22 19:10:09 -05:00
|
|
|
}
|