circuitpython/ports/esp32s2/common-hal/alarm/__init__.c

57 lines
2.3 KiB
C
Raw Normal View History

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.
*/
#include "shared-bindings/alarm/__init__.h"
2020-09-24 05:31:36 -04:00
#include "shared-bindings/alarm_io/__init__.h"
#include "shared-bindings/alarm_time/__init__.h"
2020-09-24 01:29:04 -04:00
#include "esp_sleep.h"
mp_obj_t common_hal_alarm_get_wake_alarm(void) {
switch (esp_sleep_get_wakeup_cause()) {
case ESP_SLEEP_WAKEUP_TIMER: ;
//Wake up from timer.
alarm_time_obj_t *timer = m_new_obj(alarm_time_obj_t);
2020-09-24 14:58:50 -04:00
timer->base.type = &alarm_time_type;
2020-09-24 01:29:04 -04:00
return timer;
case ESP_SLEEP_WAKEUP_EXT0: ;
//Wake up from GPIO
2020-09-24 05:31:36 -04:00
alarm_io_obj_t *ext0 = m_new_obj(alarm_io_obj_t);
2020-09-24 14:58:50 -04:00
ext0->base.type = &alarm_io_type;
return ext0;
case ESP_SLEEP_WAKEUP_TOUCHPAD:
2020-09-24 01:29:04 -04:00
//TODO: implement TouchIO
2020-09-24 05:31:36 -04:00
//Wake up from touch on pad, esp_sleep_get_touchpad_wakeup_status()
2020-09-24 14:58:50 -04:00
break;
2020-09-24 01:29:04 -04:00
case ESP_SLEEP_WAKEUP_UNDEFINED:
default:
//Not a deep sleep reset
break;
}
return mp_const_none;
}