feat(console): Console for runtime network interface configuration and monitoring

This commit is contained in:
Abhik Roy
2023-07-29 00:08:33 +10:00
parent 9c555b90d4
commit 8bab1420d3
16 changed files with 1082 additions and 3 deletions

View File

@ -0,0 +1,25 @@
/*
* SPDX-FileCopyrightText: 2023 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
#pragma once
#include "console_simple_init.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief Registers the ifconfig command.
*
* @return
* - esp_err_t
*/
esp_err_t console_cmd_ifconfig_register(void);
#ifdef __cplusplus
}
#endif