2018-09-04 01:53:26 -04:00
|
|
|
/* Light sleep 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>
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "esp_sleep.h"
|
|
|
|
#include "esp_log.h"
|
2019-05-22 08:21:11 -04:00
|
|
|
#include "driver/uart.h"
|
2020-04-23 00:39:07 -04:00
|
|
|
#include "driver/gpio.h"
|
2021-01-20 09:17:24 -05:00
|
|
|
#include "esp_timer.h"
|
2021-07-27 00:18:56 -04:00
|
|
|
#include "soc/uart_struct.h"
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
#define TAG "UART"
|
|
|
|
#define TEST_UART_NUM 1
|
|
|
|
#define TEST_BUF_SIZE 1024
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
static QueueHandle_t uart0_queue;
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
void light_sleep_wakeup_config(void)
|
2018-09-04 01:53:26 -04:00
|
|
|
{
|
2021-07-27 00:18:56 -04:00
|
|
|
ESP_ERROR_CHECK(gpio_sleep_set_direction(6, GPIO_MODE_INPUT));
|
|
|
|
ESP_ERROR_CHECK(gpio_sleep_set_pull_mode(6, GPIO_PULLUP_ONLY));
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
if (uart_set_wakeup_threshold(TEST_UART_NUM, 3) != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "set uart1 wakeup threshold failed");
|
|
|
|
}
|
|
|
|
if (esp_sleep_enable_uart_wakeup(TEST_UART_NUM) != ESP_OK) {
|
|
|
|
ESP_LOGE(TAG, "set uart1 wakeup failed");
|
|
|
|
}
|
|
|
|
ESP_LOGI(TAG, "set_light_sleep_wakeup ok");
|
|
|
|
}
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
static void uart_wakeup_task(void *arg)
|
|
|
|
{
|
|
|
|
uart_event_t event;
|
|
|
|
esp_light_sleep_start();
|
|
|
|
for(;;) {
|
|
|
|
//Waiting for UART event.
|
|
|
|
if(xQueueReceive(uart0_queue, (void * )&event, (portTickType)portMAX_DELAY)) {
|
|
|
|
ESP_LOGI(TAG, "uart[%d] event:", TEST_UART_NUM);
|
|
|
|
switch(event.type) {
|
|
|
|
case UART_DATA:
|
|
|
|
ESP_LOGI(TAG, "[UART DATA]: %d", event.size);
|
|
|
|
//uart_read_bytes(TEST_UART_NUM, dtmp, event.size, portMAX_DELAY);
|
|
|
|
//ESP_LOGI(TAG, "[DATA EVT]:");
|
|
|
|
//uart_write_bytes(TEST_UART_NUM, (const char*) dtmp, event.size);
|
|
|
|
break;
|
|
|
|
//Event of HW FIFO overflow detected
|
|
|
|
case UART_FIFO_OVF:
|
|
|
|
ESP_LOGI(TAG, "hw fifo overflow");
|
|
|
|
// If fifo overflow happened, you should consider adding flow control for your application.
|
|
|
|
// The ISR has already reset the rx FIFO,
|
|
|
|
// As an example, we directly flush the rx buffer here in order to read more data.
|
|
|
|
uart_flush_input(TEST_UART_NUM);
|
|
|
|
xQueueReset(uart0_queue);
|
|
|
|
break;
|
|
|
|
//Event of UART ring buffer full
|
|
|
|
case UART_BUFFER_FULL:
|
|
|
|
ESP_LOGI(TAG, "ring buffer full");
|
|
|
|
// If buffer full happened, you should consider encreasing your buffer size
|
|
|
|
// As an example, we directly flush the rx buffer here in order to read more data.
|
|
|
|
uart_flush_input(TEST_UART_NUM);
|
|
|
|
xQueueReset(uart0_queue);
|
|
|
|
break;
|
|
|
|
//Event of UART RX break detected
|
|
|
|
case UART_BREAK:
|
|
|
|
ESP_LOGI(TAG, "uart rx break");
|
|
|
|
break;
|
|
|
|
//Event of UART parity check error
|
|
|
|
case UART_PARITY_ERR:
|
|
|
|
ESP_LOGI(TAG, "uart parity error");
|
|
|
|
break;
|
|
|
|
//Event of UART frame error
|
|
|
|
case UART_FRAME_ERR:
|
|
|
|
ESP_LOGI(TAG, "uart frame error");
|
|
|
|
break;
|
|
|
|
case UART_WAKEUP:
|
|
|
|
ESP_LOGI(TAG, "uart uart wakeup");
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
ESP_LOGI(TAG, "uart event type: %d", event.type);
|
|
|
|
break;
|
|
|
|
}
|
2018-09-04 01:53:26 -04:00
|
|
|
}
|
|
|
|
}
|
2021-07-27 00:18:56 -04:00
|
|
|
vTaskDelete(NULL);
|
|
|
|
}
|
2018-09-04 01:53:26 -04:00
|
|
|
|
2021-07-27 00:18:56 -04:00
|
|
|
void app_main(void)
|
|
|
|
{
|
|
|
|
uart_config_t uart_config = {
|
|
|
|
.baud_rate = 115200,
|
|
|
|
.data_bits = UART_DATA_8_BITS,
|
|
|
|
.parity = UART_PARITY_DISABLE,
|
|
|
|
.stop_bits = UART_STOP_BITS_1,
|
|
|
|
.flow_ctrl = UART_HW_FLOWCTRL_DISABLE,
|
|
|
|
.source_clk = UART_SCLK_XTAL,
|
|
|
|
};
|
|
|
|
//Install UART driver, and get the queue.
|
|
|
|
uart_driver_install(TEST_UART_NUM, TEST_BUF_SIZE * 2, TEST_BUF_SIZE * 2, 20, &uart0_queue, 0);
|
|
|
|
uart_param_config(TEST_UART_NUM, &uart_config);
|
|
|
|
uart_set_pin(TEST_UART_NUM, 7, 6, UART_PIN_NO_CHANGE, UART_PIN_NO_CHANGE);
|
|
|
|
light_sleep_wakeup_config();
|
|
|
|
xTaskCreate(uart_wakeup_task, "uart_wakeup_task", 2048, NULL, 12, NULL);
|
2018-09-04 01:53:26 -04:00
|
|
|
}
|