2017-01-27 11:00:31 -05:00
|
|
|
/* Deep sleep wake up example
|
|
|
|
|
|
|
|
This example code is in the Public Domain (or CC0 licensed, at your option.)
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, this
|
|
|
|
software is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
|
|
|
|
CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <sys/time.h>
|
2022-12-09 02:04:55 -05:00
|
|
|
#include <inttypes.h>
|
2021-01-16 00:53:43 -05:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
#include "soc/soc_caps.h"
|
2017-01-27 11:00:31 -05:00
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
2017-04-21 00:32:50 -04:00
|
|
|
#include "esp_sleep.h"
|
2017-01-27 11:00:31 -05:00
|
|
|
#include "esp_log.h"
|
|
|
|
#include "driver/rtc_io.h"
|
2017-04-24 06:36:47 -04:00
|
|
|
#include "soc/rtc.h"
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2022-07-21 01:42:25 -04:00
|
|
|
#if SOC_TOUCH_SENSOR_SUPPORTED
|
2021-01-16 00:53:43 -05:00
|
|
|
#include "soc/sens_periph.h"
|
|
|
|
#include "driver/touch_pad.h"
|
|
|
|
#endif
|
|
|
|
|
2021-10-26 23:56:56 -04:00
|
|
|
#if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
2021-02-05 04:10:44 -05:00
|
|
|
#define DEFAULT_WAKEUP_PIN CONFIG_EXAMPLE_GPIO_WAKEUP_PIN
|
|
|
|
#ifdef CONFIG_EXAMPLE_GPIO_WAKEUP_HIGH_LEVEL
|
|
|
|
#define DEFAULT_WAKEUP_LEVEL ESP_GPIO_WAKEUP_GPIO_HIGH
|
|
|
|
#else
|
|
|
|
#define DEFAULT_WAKEUP_LEVEL ESP_GPIO_WAKEUP_GPIO_LOW
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-01-27 11:00:31 -05:00
|
|
|
static RTC_DATA_ATTR struct timeval sleep_enter_time;
|
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2019-10-23 23:18:44 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2018-06-14 04:33:46 -04:00
|
|
|
#define TOUCH_THRESH_NO_USE 0
|
2017-01-27 11:00:31 -05:00
|
|
|
static void calibrate_touch_pad(touch_pad_t pad);
|
|
|
|
#endif
|
2019-10-23 23:18:44 -04:00
|
|
|
#endif
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2019-07-16 05:33:30 -04:00
|
|
|
void app_main(void)
|
2017-01-27 11:00:31 -05:00
|
|
|
{
|
|
|
|
struct timeval now;
|
|
|
|
gettimeofday(&now, NULL);
|
|
|
|
int sleep_time_ms = (now.tv_sec - sleep_enter_time.tv_sec) * 1000 + (now.tv_usec - sleep_enter_time.tv_usec) / 1000;
|
|
|
|
|
2017-04-21 00:32:50 -04:00
|
|
|
switch (esp_sleep_get_wakeup_cause()) {
|
2022-02-14 13:09:47 -05:00
|
|
|
#if CONFIG_EXAMPLE_EXT0_WAKEUP
|
|
|
|
case ESP_SLEEP_WAKEUP_EXT0: {
|
|
|
|
printf("Wake up from ext0\n");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif // CONFIG_EXAMPLE_EXT0_WAKEUP
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_EXT1_WAKEUP
|
2017-04-21 00:32:50 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_EXT1: {
|
|
|
|
uint64_t wakeup_pin_mask = esp_sleep_get_ext1_wakeup_status();
|
2017-01-27 11:00:31 -05:00
|
|
|
if (wakeup_pin_mask != 0) {
|
|
|
|
int pin = __builtin_ffsll(wakeup_pin_mask) - 1;
|
|
|
|
printf("Wake up from GPIO %d\n", pin);
|
|
|
|
} else {
|
|
|
|
printf("Wake up from GPIO\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2020-04-22 10:46:23 -04:00
|
|
|
#endif // CONFIG_EXAMPLE_EXT1_WAKEUP
|
2021-02-05 04:10:44 -05:00
|
|
|
#if SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
|
|
|
case ESP_SLEEP_WAKEUP_GPIO: {
|
|
|
|
uint64_t wakeup_pin_mask = esp_sleep_get_gpio_wakeup_status();
|
|
|
|
if (wakeup_pin_mask != 0) {
|
|
|
|
int pin = __builtin_ffsll(wakeup_pin_mask) - 1;
|
|
|
|
printf("Wake up from GPIO %d\n", pin);
|
|
|
|
} else {
|
|
|
|
printf("Wake up from GPIO\n");
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif //SOC_GPIO_SUPPORT_DEEPSLEEP_WAKEUP
|
2017-04-21 00:32:50 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_TIMER: {
|
2017-01-27 11:00:31 -05:00
|
|
|
printf("Wake up from timer. Time spent in deep sleep: %dms\n", sleep_time_ms);
|
|
|
|
break;
|
|
|
|
}
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2017-04-21 00:32:50 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_TOUCHPAD: {
|
|
|
|
printf("Wake up from touch on pad %d\n", esp_sleep_get_touchpad_wakeup_status());
|
2017-01-27 11:00:31 -05:00
|
|
|
break;
|
|
|
|
}
|
2020-04-22 10:46:23 -04:00
|
|
|
#endif // CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2022-07-05 05:37:13 -04:00
|
|
|
|
2017-04-21 00:32:50 -04:00
|
|
|
case ESP_SLEEP_WAKEUP_UNDEFINED:
|
2017-01-27 11:00:31 -05:00
|
|
|
default:
|
|
|
|
printf("Not a deep sleep reset\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
vTaskDelay(1000 / portTICK_PERIOD_MS);
|
|
|
|
|
|
|
|
const int wakeup_time_sec = 20;
|
|
|
|
printf("Enabling timer wakeup, %ds\n", wakeup_time_sec);
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(esp_sleep_enable_timer_wakeup(wakeup_time_sec * 1000000));
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2022-02-14 13:09:47 -05:00
|
|
|
#if CONFIG_EXAMPLE_EXT0_WAKEUP
|
2022-10-27 03:00:02 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
|
|
const int ext_wakeup_pin_0 = 25;
|
|
|
|
#else
|
2022-02-14 13:09:47 -05:00
|
|
|
const int ext_wakeup_pin_0 = 3;
|
2022-10-27 03:00:02 -04:00
|
|
|
#endif
|
2022-02-14 13:09:47 -05:00
|
|
|
|
|
|
|
printf("Enabling EXT0 wakeup on pin GPIO%d\n", ext_wakeup_pin_0);
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(esp_sleep_enable_ext0_wakeup(ext_wakeup_pin_0, 1));
|
2022-02-14 13:09:47 -05:00
|
|
|
|
|
|
|
// Configure pullup/downs via RTCIO to tie wakeup pins to inactive level during deepsleep.
|
|
|
|
// EXT0 resides in the same power domain (RTC_PERIPH) as the RTC IO pullup/downs.
|
|
|
|
// No need to keep that power domain explicitly, unlike EXT1.
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pullup_dis(ext_wakeup_pin_0));
|
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pulldown_en(ext_wakeup_pin_0));
|
2022-02-14 13:09:47 -05:00
|
|
|
#endif // CONFIG_EXAMPLE_EXT0_WAKEUP
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_EXT1_WAKEUP
|
2019-10-23 23:18:44 -04:00
|
|
|
const int ext_wakeup_pin_1 = 2;
|
2017-01-27 11:00:31 -05:00
|
|
|
const uint64_t ext_wakeup_pin_1_mask = 1ULL << ext_wakeup_pin_1;
|
2019-10-23 23:18:44 -04:00
|
|
|
const int ext_wakeup_pin_2 = 4;
|
2017-01-27 11:00:31 -05:00
|
|
|
const uint64_t ext_wakeup_pin_2_mask = 1ULL << ext_wakeup_pin_2;
|
|
|
|
|
|
|
|
printf("Enabling EXT1 wakeup on pins GPIO%d, GPIO%d\n", ext_wakeup_pin_1, ext_wakeup_pin_2);
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(esp_sleep_enable_ext1_wakeup(ext_wakeup_pin_1_mask | ext_wakeup_pin_2_mask, ESP_EXT1_WAKEUP_ANY_HIGH));
|
2022-02-14 13:09:47 -05:00
|
|
|
|
|
|
|
/* If there are no external pull-up/downs, tie wakeup pins to inactive level with internal pull-up/downs via RTC IO
|
|
|
|
* during deepsleep. However, RTC IO relies on the RTC_PERIPH power domain. Keeping this power domain on will
|
|
|
|
* increase some power comsumption. */
|
|
|
|
# if CONFIG_EXAMPLE_EXT1_USE_INTERNAL_PULLUPS
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON));
|
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pullup_dis(ext_wakeup_pin_1));
|
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pulldown_en(ext_wakeup_pin_1));
|
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pullup_dis(ext_wakeup_pin_2));
|
|
|
|
ESP_ERROR_CHECK(rtc_gpio_pulldown_en(ext_wakeup_pin_2));
|
2022-02-14 13:09:47 -05:00
|
|
|
# endif //CONFIG_EXAMPLE_EXT1_USE_INTERNAL_PULLUPS
|
2020-04-22 10:46:23 -04:00
|
|
|
#endif // CONFIG_EXAMPLE_EXT1_WAKEUP
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2021-02-05 04:10:44 -05:00
|
|
|
#ifdef CONFIG_EXAMPLE_GPIO_WAKEUP
|
|
|
|
const gpio_config_t config = {
|
|
|
|
.pin_bit_mask = BIT(DEFAULT_WAKEUP_PIN),
|
|
|
|
.mode = GPIO_MODE_INPUT,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK(gpio_config(&config));
|
|
|
|
ESP_ERROR_CHECK(esp_deep_sleep_enable_gpio_wakeup(BIT(DEFAULT_WAKEUP_PIN), DEFAULT_WAKEUP_LEVEL));
|
|
|
|
printf("Enabling GPIO wakeup on pins GPIO%d\n", DEFAULT_WAKEUP_PIN);
|
|
|
|
#endif
|
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2019-06-20 04:13:47 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2018-06-14 04:33:46 -04:00
|
|
|
// Initialize touch pad peripheral.
|
|
|
|
// The default fsm mode is software trigger mode.
|
2020-09-18 05:23:28 -04:00
|
|
|
ESP_ERROR_CHECK(touch_pad_init());
|
2018-06-14 04:33:46 -04:00
|
|
|
// If use touch pad wake up, should set touch sensor FSM mode at 'TOUCH_FSM_MODE_TIMER'.
|
|
|
|
touch_pad_set_fsm_mode(TOUCH_FSM_MODE_TIMER);
|
|
|
|
// Set reference voltage for charging/discharging
|
|
|
|
// In this case, the high reference valtage will be 2.4V - 1V = 1.4V
|
|
|
|
// The low reference voltage will be 0.5
|
|
|
|
// The larger the range, the larger the pulse count value.
|
|
|
|
touch_pad_set_voltage(TOUCH_HVOLT_2V4, TOUCH_LVOLT_0V5, TOUCH_HVOLT_ATTEN_1V);
|
|
|
|
//init RTC IO and mode for touch pad.
|
|
|
|
touch_pad_config(TOUCH_PAD_NUM8, TOUCH_THRESH_NO_USE);
|
|
|
|
touch_pad_config(TOUCH_PAD_NUM9, TOUCH_THRESH_NO_USE);
|
2017-01-27 11:00:31 -05:00
|
|
|
calibrate_touch_pad(TOUCH_PAD_NUM8);
|
|
|
|
calibrate_touch_pad(TOUCH_PAD_NUM9);
|
2021-06-22 09:53:16 -04:00
|
|
|
#elif CONFIG_IDF_TARGET_ESP32S2 || CONFIG_IDF_TARGET_ESP32S3
|
2019-06-20 04:13:47 -04:00
|
|
|
/* Initialize touch pad peripheral. */
|
|
|
|
touch_pad_init();
|
|
|
|
/* Only support one touch channel in sleep mode. */
|
2019-10-23 23:18:44 -04:00
|
|
|
touch_pad_config(TOUCH_PAD_NUM9);
|
|
|
|
/* Denoise setting at TouchSensor 0. */
|
|
|
|
touch_pad_denoise_t denoise = {
|
|
|
|
/* The bits to be cancelled are determined according to the noise level. */
|
|
|
|
.grade = TOUCH_PAD_DENOISE_BIT4,
|
2020-02-18 07:29:20 -05:00
|
|
|
.cap_level = TOUCH_PAD_DENOISE_CAP_L4,
|
2019-06-20 04:13:47 -04:00
|
|
|
};
|
2019-11-27 07:08:44 -05:00
|
|
|
touch_pad_denoise_set_config(&denoise);
|
2019-10-23 23:18:44 -04:00
|
|
|
touch_pad_denoise_enable();
|
|
|
|
printf("Denoise function init\n");
|
2019-06-20 04:13:47 -04:00
|
|
|
/* Filter setting */
|
|
|
|
touch_filter_config_t filter_info = {
|
2020-02-18 07:29:20 -05:00
|
|
|
.mode = TOUCH_PAD_FILTER_IIR_16,
|
2019-11-27 07:08:44 -05:00
|
|
|
.debounce_cnt = 1, // 1 time count.
|
|
|
|
.noise_thr = 0, // 50%
|
|
|
|
.jitter_step = 4, // use for jitter mode.
|
2020-02-18 07:29:20 -05:00
|
|
|
.smh_lvl = TOUCH_PAD_SMOOTH_IIR_2,
|
2019-06-20 04:13:47 -04:00
|
|
|
};
|
|
|
|
touch_pad_filter_set_config(&filter_info);
|
|
|
|
touch_pad_filter_enable();
|
2019-10-23 23:18:44 -04:00
|
|
|
printf("touch pad filter init %d\n", TOUCH_PAD_FILTER_IIR_8);
|
|
|
|
/* Set sleep touch pad. */
|
2020-02-18 07:29:20 -05:00
|
|
|
touch_pad_sleep_channel_enable(TOUCH_PAD_NUM9, true);
|
|
|
|
touch_pad_sleep_channel_enable_proximity(TOUCH_PAD_NUM9, false);
|
2021-02-02 23:29:31 -05:00
|
|
|
/* Reducing the operating frequency can effectively reduce power consumption. */
|
|
|
|
touch_pad_sleep_channel_set_work_time(1000, TOUCH_PAD_MEASURE_CYCLE_DEFAULT);
|
2019-10-23 23:18:44 -04:00
|
|
|
/* Enable touch sensor clock. Work mode is "timer trigger". */
|
|
|
|
touch_pad_set_fsm_mode(TOUCH_FSM_MODE_TIMER);
|
|
|
|
touch_pad_fsm_start();
|
2022-02-08 04:39:38 -05:00
|
|
|
vTaskDelay(100 / portTICK_PERIOD_MS);
|
2021-02-05 17:04:06 -05:00
|
|
|
|
|
|
|
/* set touchpad wakeup threshold */
|
|
|
|
uint32_t touch_value, wake_threshold;
|
2020-02-18 07:29:20 -05:00
|
|
|
touch_pad_sleep_channel_read_smooth(TOUCH_PAD_NUM9, &touch_value);
|
2021-02-05 17:04:06 -05:00
|
|
|
wake_threshold = touch_value * 0.1; // wakeup when touch sensor crosses 10% of background level
|
|
|
|
touch_pad_sleep_set_threshold(TOUCH_PAD_NUM9, wake_threshold);
|
2022-12-09 02:04:55 -05:00
|
|
|
printf("Touch pad #%d average: %"PRIu32", wakeup threshold set to %"PRIu32"\n",
|
2019-10-23 23:18:44 -04:00
|
|
|
TOUCH_PAD_NUM9, touch_value, (uint32_t)(touch_value * 0.1));
|
2019-06-20 04:13:47 -04:00
|
|
|
#endif
|
2017-01-27 11:00:31 -05:00
|
|
|
printf("Enabling touch pad wakeup\n");
|
2022-10-27 03:00:02 -04:00
|
|
|
ESP_ERROR_CHECK(esp_sleep_enable_touchpad_wakeup());
|
|
|
|
ESP_ERROR_CHECK(esp_sleep_pd_config(ESP_PD_DOMAIN_RTC_PERIPH, ESP_PD_OPTION_ON));
|
2020-04-22 10:46:23 -04:00
|
|
|
#endif // CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2019-10-23 23:18:44 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2018-02-09 11:34:38 -05:00
|
|
|
// Isolate GPIO12 pin from external circuits. This is needed for modules
|
|
|
|
// which have an external pull-up resistor on GPIO12 (such as ESP32-WROVER)
|
|
|
|
// to minimize current consumption.
|
|
|
|
rtc_gpio_isolate(GPIO_NUM_12);
|
2019-10-23 23:18:44 -04:00
|
|
|
#endif
|
2018-02-09 11:34:38 -05:00
|
|
|
|
2017-01-27 11:00:31 -05:00
|
|
|
printf("Entering deep sleep\n");
|
|
|
|
gettimeofday(&sleep_enter_time, NULL);
|
|
|
|
|
|
|
|
esp_deep_sleep_start();
|
2020-01-16 22:47:08 -05:00
|
|
|
}
|
2017-01-27 11:00:31 -05:00
|
|
|
|
2020-04-22 10:46:23 -04:00
|
|
|
#ifdef CONFIG_EXAMPLE_TOUCH_WAKEUP
|
2019-06-20 04:13:47 -04:00
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
2017-01-27 11:00:31 -05:00
|
|
|
static void calibrate_touch_pad(touch_pad_t pad)
|
|
|
|
{
|
|
|
|
int avg = 0;
|
|
|
|
const size_t calibration_count = 128;
|
|
|
|
for (int i = 0; i < calibration_count; ++i) {
|
|
|
|
uint16_t val;
|
|
|
|
touch_pad_read(pad, &val);
|
|
|
|
avg += val;
|
|
|
|
}
|
|
|
|
avg /= calibration_count;
|
|
|
|
const int min_reading = 300;
|
|
|
|
if (avg < min_reading) {
|
|
|
|
printf("Touch pad #%d average reading is too low: %d (expecting at least %d). "
|
|
|
|
"Not using for deep sleep wakeup.\n", pad, avg, min_reading);
|
|
|
|
touch_pad_config(pad, 0);
|
|
|
|
} else {
|
|
|
|
int threshold = avg - 100;
|
|
|
|
printf("Touch pad #%d average: %d, wakeup threshold set to %d.\n", pad, avg, threshold);
|
|
|
|
touch_pad_config(pad, threshold);
|
|
|
|
}
|
|
|
|
}
|
2019-06-20 04:13:47 -04:00
|
|
|
#endif
|
2020-04-22 10:46:23 -04:00
|
|
|
#endif // CONFIG_EXAMPLE_TOUCH_WAKEUP
|