2017-08-15 08:11:19 +00:00
|
|
|
/* Console example — various system commands
|
|
|
|
|
|
|
|
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 <ctype.h>
|
|
|
|
#include "esp_log.h"
|
|
|
|
#include "esp_console.h"
|
|
|
|
#include "esp_system.h"
|
2017-04-21 04:32:50 +00:00
|
|
|
#include "esp_sleep.h"
|
2018-09-20 11:26:14 +00:00
|
|
|
#include "esp_spi_flash.h"
|
2017-08-15 08:11:19 +00:00
|
|
|
#include "driver/rtc_io.h"
|
2018-08-14 00:44:04 +00:00
|
|
|
#include "driver/uart.h"
|
2017-08-15 08:11:19 +00:00
|
|
|
#include "argtable3/argtable3.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/task.h"
|
|
|
|
#include "soc/rtc_cntl_reg.h"
|
2018-08-14 00:44:04 +00:00
|
|
|
#include "rom/uart.h"
|
2018-09-20 11:26:14 +00:00
|
|
|
#include "cmd_system.h"
|
2018-01-31 06:04:40 +00:00
|
|
|
#include "sdkconfig.h"
|
|
|
|
|
|
|
|
#ifdef CONFIG_FREERTOS_USE_STATS_FORMATTING_FUNCTIONS
|
|
|
|
#define WITH_TASKS_INFO 1
|
|
|
|
#endif
|
2017-08-15 08:11:19 +00:00
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static const char *TAG = "cmd_system";
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
static void register_free();
|
2018-09-20 11:26:14 +00:00
|
|
|
static void register_heap();
|
|
|
|
static void register_version();
|
2017-08-15 08:11:19 +00:00
|
|
|
static void register_restart();
|
|
|
|
static void register_deep_sleep();
|
2018-08-14 00:44:04 +00:00
|
|
|
static void register_light_sleep();
|
2018-01-31 06:04:40 +00:00
|
|
|
#if WITH_TASKS_INFO
|
|
|
|
static void register_tasks();
|
|
|
|
#endif
|
2017-08-15 08:11:19 +00:00
|
|
|
|
|
|
|
void register_system()
|
|
|
|
{
|
|
|
|
register_free();
|
2018-09-20 11:26:14 +00:00
|
|
|
register_heap();
|
|
|
|
register_version();
|
2017-08-15 08:11:19 +00:00
|
|
|
register_restart();
|
|
|
|
register_deep_sleep();
|
2018-08-14 00:44:04 +00:00
|
|
|
register_light_sleep();
|
2018-01-31 06:04:40 +00:00
|
|
|
#if WITH_TASKS_INFO
|
|
|
|
register_tasks();
|
|
|
|
#endif
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
/* 'version' command */
|
|
|
|
static int get_version(int argc, char **argv)
|
|
|
|
{
|
|
|
|
esp_chip_info_t info;
|
|
|
|
esp_chip_info(&info);
|
|
|
|
printf("IDF Version:%s\r\n", esp_get_idf_version());
|
|
|
|
printf("Chip info:\r\n");
|
|
|
|
printf("\tmodel:%s\r\n", info.model == CHIP_ESP32 ? "ESP32" : "Unknow");
|
|
|
|
printf("\tcores:%d\r\n", info.cores);
|
|
|
|
printf("\tfeature:%s%s%s%s%d%s\r\n",
|
|
|
|
info.features & CHIP_FEATURE_WIFI_BGN ? "/802.11bgn" : "",
|
|
|
|
info.features & CHIP_FEATURE_BLE ? "/BLE" : "",
|
|
|
|
info.features & CHIP_FEATURE_BT ? "/BT" : "",
|
|
|
|
info.features & CHIP_FEATURE_EMB_FLASH ? "/Embedded-Flash:" : "/External-Flash:",
|
|
|
|
spi_flash_get_chip_size() / (1024 * 1024), " MB");
|
|
|
|
printf("\trevision number:%d\r\n", info.revision);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_version()
|
|
|
|
{
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "version",
|
|
|
|
.help = "Get version of chip and SDK",
|
|
|
|
.hint = NULL,
|
|
|
|
.func = &get_version,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
|
|
|
}
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
/** 'restart' command restarts the program */
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static int restart(int argc, char **argv)
|
2017-08-15 08:11:19 +00:00
|
|
|
{
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Restarting");
|
2017-08-15 08:11:19 +00:00
|
|
|
esp_restart();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_restart()
|
|
|
|
{
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "restart",
|
2018-09-20 11:26:14 +00:00
|
|
|
.help = "Software reset of the chip",
|
2017-08-15 08:11:19 +00:00
|
|
|
.hint = NULL,
|
|
|
|
.func = &restart,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
|
|
|
}
|
|
|
|
|
|
|
|
/** 'free' command prints available heap memory */
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static int free_mem(int argc, char **argv)
|
2017-08-15 08:11:19 +00:00
|
|
|
{
|
|
|
|
printf("%d\n", esp_get_free_heap_size());
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_free()
|
|
|
|
{
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "free",
|
2018-09-20 11:26:14 +00:00
|
|
|
.help = "Get the current size of free heap memory",
|
2017-08-15 08:11:19 +00:00
|
|
|
.hint = NULL,
|
|
|
|
.func = &free_mem,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
|
|
|
}
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
/* 'heap' command prints minumum heap size */
|
|
|
|
static int heap_size(int argc, char **argv)
|
|
|
|
{
|
|
|
|
uint32_t heap_size = heap_caps_get_minimum_free_size(MALLOC_CAP_DEFAULT);
|
|
|
|
ESP_LOGI(TAG, "min heap size: %u", heap_size);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_heap()
|
|
|
|
{
|
|
|
|
const esp_console_cmd_t heap_cmd = {
|
|
|
|
.command = "heap",
|
|
|
|
.help = "Get minimum size of free heap memory that was available during program execution",
|
|
|
|
.hint = NULL,
|
|
|
|
.func = &heap_size,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&heap_cmd) );
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2018-01-31 06:04:40 +00:00
|
|
|
/** 'tasks' command prints the list of tasks and related information */
|
|
|
|
#if WITH_TASKS_INFO
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static int tasks_info(int argc, char **argv)
|
2018-01-31 06:04:40 +00:00
|
|
|
{
|
|
|
|
const size_t bytes_per_task = 40; /* see vTaskList description */
|
2018-09-20 11:26:14 +00:00
|
|
|
char *task_list_buffer = malloc(uxTaskGetNumberOfTasks() * bytes_per_task);
|
2018-01-31 06:04:40 +00:00
|
|
|
if (task_list_buffer == NULL) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGE(TAG, "failed to allocate buffer for vTaskList output");
|
2018-01-31 06:04:40 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-07-09 07:25:59 +00:00
|
|
|
fputs("Task Name\tStatus\tPrio\tHWM\tTask#", stdout);
|
|
|
|
#ifdef CONFIG_FREERTOS_VTASKLIST_INCLUDE_COREID
|
|
|
|
fputs("\tAffinity", stdout);
|
|
|
|
#endif
|
|
|
|
fputs("\n", stdout);
|
2018-01-31 06:04:40 +00:00
|
|
|
vTaskList(task_list_buffer);
|
|
|
|
fputs(task_list_buffer, stdout);
|
|
|
|
free(task_list_buffer);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_tasks()
|
|
|
|
{
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "tasks",
|
|
|
|
.help = "Get information about running tasks",
|
|
|
|
.hint = NULL,
|
|
|
|
.func = &tasks_info,
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // WITH_TASKS_INFO
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
/** 'deep_sleep' command puts the chip into deep sleep mode */
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
struct arg_int *wakeup_time;
|
|
|
|
struct arg_int *wakeup_gpio_num;
|
|
|
|
struct arg_int *wakeup_gpio_level;
|
|
|
|
struct arg_end *end;
|
|
|
|
} deep_sleep_args;
|
|
|
|
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static int deep_sleep(int argc, char **argv)
|
2017-08-15 08:11:19 +00:00
|
|
|
{
|
2018-09-20 11:26:14 +00:00
|
|
|
int nerrors = arg_parse(argc, argv, (void **) &deep_sleep_args);
|
2017-08-15 08:11:19 +00:00
|
|
|
if (nerrors != 0) {
|
|
|
|
arg_print_errors(stderr, deep_sleep_args.end, argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (deep_sleep_args.wakeup_time->count) {
|
|
|
|
uint64_t timeout = 1000ULL * deep_sleep_args.wakeup_time->ival[0];
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Enabling timer wakeup, timeout=%lluus", timeout);
|
2017-04-21 04:32:50 +00:00
|
|
|
ESP_ERROR_CHECK( esp_sleep_enable_timer_wakeup(timeout) );
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
|
|
|
if (deep_sleep_args.wakeup_gpio_num->count) {
|
|
|
|
int io_num = deep_sleep_args.wakeup_gpio_num->ival[0];
|
|
|
|
if (!rtc_gpio_is_valid_gpio(io_num)) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGE(TAG, "GPIO %d is not an RTC IO", io_num);
|
2017-08-15 08:11:19 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
int level = 0;
|
|
|
|
if (deep_sleep_args.wakeup_gpio_level->count) {
|
|
|
|
level = deep_sleep_args.wakeup_gpio_level->ival[0];
|
|
|
|
if (level != 0 && level != 1) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGE(TAG, "Invalid wakeup level: %d", level);
|
2017-08-15 08:11:19 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Enabling wakeup on GPIO%d, wakeup on %s level",
|
|
|
|
io_num, level ? "HIGH" : "LOW");
|
2017-08-15 08:11:19 +00:00
|
|
|
|
2017-04-21 04:32:50 +00:00
|
|
|
ESP_ERROR_CHECK( esp_sleep_enable_ext1_wakeup(1ULL << io_num, level) );
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
2018-02-09 16:34:38 +00:00
|
|
|
rtc_gpio_isolate(GPIO_NUM_12);
|
2017-08-15 08:11:19 +00:00
|
|
|
esp_deep_sleep_start();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_deep_sleep()
|
|
|
|
{
|
|
|
|
deep_sleep_args.wakeup_time =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_int0("t", "time", "<t>", "Wake up time, ms");
|
2017-08-15 08:11:19 +00:00
|
|
|
deep_sleep_args.wakeup_gpio_num =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_int0(NULL, "io", "<n>",
|
|
|
|
"If specified, wakeup using GPIO with given number");
|
2017-08-15 08:11:19 +00:00
|
|
|
deep_sleep_args.wakeup_gpio_level =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_int0(NULL, "io_level", "<0|1>", "GPIO level to trigger wakeup");
|
2017-08-15 08:11:19 +00:00
|
|
|
deep_sleep_args.end = arg_end(3);
|
|
|
|
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "deep_sleep",
|
|
|
|
.help = "Enter deep sleep mode. "
|
2018-09-20 11:26:14 +00:00
|
|
|
"Two wakeup modes are supported: timer and GPIO. "
|
|
|
|
"If no wakeup option is specified, will sleep indefinitely.",
|
2017-08-15 08:11:19 +00:00
|
|
|
.hint = NULL,
|
|
|
|
.func = &deep_sleep,
|
|
|
|
.argtable = &deep_sleep_args
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
2018-08-14 00:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/** 'light_sleep' command puts the chip into light sleep mode */
|
|
|
|
|
|
|
|
static struct {
|
|
|
|
struct arg_int *wakeup_time;
|
|
|
|
struct arg_int *wakeup_gpio_num;
|
|
|
|
struct arg_int *wakeup_gpio_level;
|
|
|
|
struct arg_end *end;
|
|
|
|
} light_sleep_args;
|
|
|
|
|
2018-09-20 11:26:14 +00:00
|
|
|
static int light_sleep(int argc, char **argv)
|
2018-08-14 00:44:04 +00:00
|
|
|
{
|
2018-09-20 11:26:14 +00:00
|
|
|
int nerrors = arg_parse(argc, argv, (void **) &light_sleep_args);
|
2018-08-14 00:44:04 +00:00
|
|
|
if (nerrors != 0) {
|
|
|
|
arg_print_errors(stderr, light_sleep_args.end, argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
esp_sleep_disable_wakeup_source(ESP_SLEEP_WAKEUP_ALL);
|
|
|
|
if (light_sleep_args.wakeup_time->count) {
|
|
|
|
uint64_t timeout = 1000ULL * light_sleep_args.wakeup_time->ival[0];
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Enabling timer wakeup, timeout=%lluus", timeout);
|
2018-08-14 00:44:04 +00:00
|
|
|
ESP_ERROR_CHECK( esp_sleep_enable_timer_wakeup(timeout) );
|
|
|
|
}
|
|
|
|
int io_count = light_sleep_args.wakeup_gpio_num->count;
|
|
|
|
if (io_count != light_sleep_args.wakeup_gpio_level->count) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGE(TAG, "Should have same number of 'io' and 'io_level' arguments");
|
2018-08-14 00:44:04 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
for (int i = 0; i < io_count; ++i) {
|
|
|
|
int io_num = light_sleep_args.wakeup_gpio_num->ival[i];
|
|
|
|
int level = light_sleep_args.wakeup_gpio_level->ival[i];
|
|
|
|
if (level != 0 && level != 1) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGE(TAG, "Invalid wakeup level: %d", level);
|
2018-08-14 00:44:04 +00:00
|
|
|
return 1;
|
|
|
|
}
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Enabling wakeup on GPIO%d, wakeup on %s level",
|
|
|
|
io_num, level ? "HIGH" : "LOW");
|
2018-08-14 00:44:04 +00:00
|
|
|
|
|
|
|
ESP_ERROR_CHECK( gpio_wakeup_enable(io_num, level ? GPIO_INTR_HIGH_LEVEL : GPIO_INTR_LOW_LEVEL) );
|
|
|
|
}
|
|
|
|
if (io_count > 0) {
|
|
|
|
ESP_ERROR_CHECK( esp_sleep_enable_gpio_wakeup() );
|
|
|
|
}
|
|
|
|
if (CONFIG_CONSOLE_UART_NUM <= UART_NUM_1) {
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Enabling UART wakeup (press ENTER to exit light sleep)");
|
2018-08-14 00:44:04 +00:00
|
|
|
ESP_ERROR_CHECK( uart_set_wakeup_threshold(CONFIG_CONSOLE_UART_NUM, 3) );
|
|
|
|
ESP_ERROR_CHECK( esp_sleep_enable_uart_wakeup(CONFIG_CONSOLE_UART_NUM) );
|
|
|
|
}
|
|
|
|
fflush(stdout);
|
|
|
|
uart_tx_wait_idle(CONFIG_CONSOLE_UART_NUM);
|
|
|
|
esp_light_sleep_start();
|
|
|
|
esp_sleep_wakeup_cause_t cause = esp_sleep_get_wakeup_cause();
|
2018-09-20 11:26:14 +00:00
|
|
|
const char *cause_str;
|
2018-08-14 00:44:04 +00:00
|
|
|
switch (cause) {
|
2018-09-20 11:26:14 +00:00
|
|
|
case ESP_SLEEP_WAKEUP_GPIO:
|
|
|
|
cause_str = "GPIO";
|
|
|
|
break;
|
|
|
|
case ESP_SLEEP_WAKEUP_UART:
|
|
|
|
cause_str = "UART";
|
|
|
|
break;
|
|
|
|
case ESP_SLEEP_WAKEUP_TIMER:
|
|
|
|
cause_str = "timer";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
cause_str = "unknown";
|
|
|
|
printf("%d\n", cause);
|
2018-08-14 00:44:04 +00:00
|
|
|
}
|
2018-09-20 11:26:14 +00:00
|
|
|
ESP_LOGI(TAG, "Woke up from: %s", cause_str);
|
2018-08-14 00:44:04 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void register_light_sleep()
|
|
|
|
{
|
|
|
|
light_sleep_args.wakeup_time =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_int0("t", "time", "<t>", "Wake up time, ms");
|
2018-08-14 00:44:04 +00:00
|
|
|
light_sleep_args.wakeup_gpio_num =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_intn(NULL, "io", "<n>", 0, 8,
|
|
|
|
"If specified, wakeup using GPIO with given number");
|
2018-08-14 00:44:04 +00:00
|
|
|
light_sleep_args.wakeup_gpio_level =
|
2018-09-20 11:26:14 +00:00
|
|
|
arg_intn(NULL, "io_level", "<0|1>", 0, 8, "GPIO level to trigger wakeup");
|
2018-08-14 00:44:04 +00:00
|
|
|
light_sleep_args.end = arg_end(3);
|
|
|
|
|
|
|
|
const esp_console_cmd_t cmd = {
|
|
|
|
.command = "light_sleep",
|
|
|
|
.help = "Enter light sleep mode. "
|
2018-09-20 11:26:14 +00:00
|
|
|
"Two wakeup modes are supported: timer and GPIO. "
|
|
|
|
"Multiple GPIO pins can be specified using pairs of "
|
|
|
|
"'io' and 'io_level' arguments. "
|
|
|
|
"Will also wake up on UART input.",
|
2018-08-14 00:44:04 +00:00
|
|
|
.hint = NULL,
|
|
|
|
.func = &light_sleep,
|
|
|
|
.argtable = &light_sleep_args
|
|
|
|
};
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&cmd) );
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
|
|
|
|