2017-08-15 08:11:19 +00:00
|
|
|
/* Console example — WiFi 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 "esp_log.h"
|
|
|
|
#include "esp_console.h"
|
|
|
|
#include "argtable3/argtable3.h"
|
|
|
|
#include "cmd_decl.h"
|
|
|
|
#include "freertos/FreeRTOS.h"
|
|
|
|
#include "freertos/event_groups.h"
|
|
|
|
#include "esp_wifi.h"
|
|
|
|
#include "tcpip_adapter.h"
|
|
|
|
#include "esp_event_loop.h"
|
2018-09-20 11:26:14 +00:00
|
|
|
#include "cmd_wifi.h"
|
2017-08-15 08:11:19 +00:00
|
|
|
|
2019-02-26 14:08:57 +00:00
|
|
|
#define JOIN_TIMEOUT_MS (10000)
|
|
|
|
|
2017-08-15 08:11:19 +00:00
|
|
|
static EventGroupHandle_t wifi_event_group;
|
|
|
|
const int CONNECTED_BIT = BIT0;
|
|
|
|
|
|
|
|
static esp_err_t event_handler(void *ctx, system_event_t *event)
|
|
|
|
{
|
2019-02-26 14:08:57 +00:00
|
|
|
switch (event->event_id) {
|
2017-08-15 08:11:19 +00:00
|
|
|
case SYSTEM_EVENT_STA_GOT_IP:
|
|
|
|
xEventGroupSetBits(wifi_event_group, CONNECTED_BIT);
|
|
|
|
break;
|
|
|
|
case SYSTEM_EVENT_STA_DISCONNECTED:
|
|
|
|
esp_wifi_connect();
|
|
|
|
xEventGroupClearBits(wifi_event_group, CONNECTED_BIT);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return ESP_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void initialise_wifi(void)
|
|
|
|
{
|
|
|
|
esp_log_level_set("wifi", ESP_LOG_WARN);
|
|
|
|
static bool initialized = false;
|
|
|
|
if (initialized) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
tcpip_adapter_init();
|
|
|
|
wifi_event_group = xEventGroupCreate();
|
|
|
|
ESP_ERROR_CHECK( esp_event_loop_init(event_handler, NULL) );
|
|
|
|
wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_init(&cfg) );
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_set_storage(WIFI_STORAGE_RAM) );
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_NULL) );
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_start() );
|
|
|
|
initialized = true;
|
|
|
|
}
|
|
|
|
|
2019-02-26 14:08:57 +00:00
|
|
|
static bool wifi_join(const char *ssid, const char *pass, int timeout_ms)
|
2017-08-15 08:11:19 +00:00
|
|
|
{
|
|
|
|
initialise_wifi();
|
|
|
|
wifi_config_t wifi_config = { 0 };
|
2019-06-11 07:46:02 +00:00
|
|
|
strlcpy((char *) wifi_config.sta.ssid, ssid, sizeof(wifi_config.sta.ssid));
|
2017-08-15 08:11:19 +00:00
|
|
|
if (pass) {
|
2019-06-11 07:46:02 +00:00
|
|
|
strlcpy((char *) wifi_config.sta.password, pass, sizeof(wifi_config.sta.password));
|
2017-08-15 08:11:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_set_mode(WIFI_MODE_STA) );
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_config) );
|
|
|
|
ESP_ERROR_CHECK( esp_wifi_connect() );
|
|
|
|
|
|
|
|
int bits = xEventGroupWaitBits(wifi_event_group, CONNECTED_BIT,
|
2019-02-26 14:08:57 +00:00
|
|
|
pdFALSE, pdTRUE, timeout_ms / portTICK_PERIOD_MS);
|
2017-08-15 08:11:19 +00:00
|
|
|
return (bits & CONNECTED_BIT) != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Arguments used by 'join' function */
|
|
|
|
static struct {
|
|
|
|
struct arg_int *timeout;
|
|
|
|
struct arg_str *ssid;
|
|
|
|
struct arg_str *password;
|
|
|
|
struct arg_end *end;
|
|
|
|
} join_args;
|
|
|
|
|
2019-02-26 14:08:57 +00:00
|
|
|
static int connect(int argc, char **argv)
|
2017-08-15 08:11:19 +00:00
|
|
|
{
|
2019-02-26 14:08:57 +00:00
|
|
|
int nerrors = arg_parse(argc, argv, (void **) &join_args);
|
2017-08-15 08:11:19 +00:00
|
|
|
if (nerrors != 0) {
|
|
|
|
arg_print_errors(stderr, join_args.end, argv[0]);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ESP_LOGI(__func__, "Connecting to '%s'",
|
2019-02-26 14:08:57 +00:00
|
|
|
join_args.ssid->sval[0]);
|
|
|
|
|
|
|
|
/* set default value*/
|
|
|
|
if (join_args.timeout->count == 0) {
|
|
|
|
join_args.timeout->ival[0] = JOIN_TIMEOUT_MS;
|
|
|
|
}
|
2017-08-15 08:11:19 +00:00
|
|
|
|
|
|
|
bool connected = wifi_join(join_args.ssid->sval[0],
|
2019-02-26 14:08:57 +00:00
|
|
|
join_args.password->sval[0],
|
|
|
|
join_args.timeout->ival[0]);
|
2017-08-15 08:11:19 +00:00
|
|
|
if (!connected) {
|
|
|
|
ESP_LOGW(__func__, "Connection timed out");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ESP_LOGI(__func__, "Connected");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void register_wifi()
|
|
|
|
{
|
|
|
|
join_args.timeout = arg_int0(NULL, "timeout", "<t>", "Connection timeout, ms");
|
|
|
|
join_args.ssid = arg_str1(NULL, NULL, "<ssid>", "SSID of AP");
|
|
|
|
join_args.password = arg_str0(NULL, NULL, "<pass>", "PSK of AP");
|
|
|
|
join_args.end = arg_end(2);
|
|
|
|
|
|
|
|
const esp_console_cmd_t join_cmd = {
|
|
|
|
.command = "join",
|
|
|
|
.help = "Join WiFi AP as a station",
|
|
|
|
.hint = NULL,
|
|
|
|
.func = &connect,
|
|
|
|
.argtable = &join_args
|
|
|
|
};
|
|
|
|
|
|
|
|
ESP_ERROR_CHECK( esp_console_cmd_register(&join_cmd) );
|
|
|
|
}
|