feat(console): Added support to join pre-configured network

This commit is contained in:
Abhik Roy
2024-02-23 21:32:16 +11:00
parent 7f248bd03f
commit bdbf16c113
5 changed files with 52 additions and 14 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 wifi command.
*
* @return
* - esp_err_t
*/
esp_err_t console_cmd_wifi_register(void);
#ifdef __cplusplus
}
#endif