2020-07-28 21:23:33 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the MicroPython project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2020 Scott Shawcroft for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "shared-bindings/wifi/Radio.h"
|
|
|
|
|
2020-07-30 20:58:12 -04:00
|
|
|
#include "py/runtime.h"
|
|
|
|
#include "shared-bindings/wifi/ScannedNetworks.h"
|
|
|
|
|
|
|
|
#include "esp-idf/components/esp_wifi/include/esp_wifi.h"
|
|
|
|
|
2020-07-31 22:29:22 -04:00
|
|
|
#include "esp_log.h"
|
|
|
|
static const char *TAG = "cp radio";
|
|
|
|
|
|
|
|
static void start_station(wifi_radio_obj_t *self) {
|
|
|
|
if (self->sta_mode) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
wifi_mode_t next_mode;
|
|
|
|
if (self->ap_mode) {
|
|
|
|
next_mode = WIFI_MODE_APSTA;
|
|
|
|
} else {
|
|
|
|
next_mode = WIFI_MODE_STA;
|
|
|
|
}
|
|
|
|
esp_wifi_set_mode(next_mode);
|
|
|
|
|
|
|
|
esp_wifi_set_config(WIFI_MODE_STA, &self->sta_config);
|
|
|
|
}
|
|
|
|
|
2020-07-28 21:23:33 -04:00
|
|
|
bool common_hal_wifi_radio_get_enabled(wifi_radio_obj_t *self) {
|
2020-07-30 20:58:12 -04:00
|
|
|
return self->started;
|
2020-07-28 21:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_wifi_radio_set_enabled(wifi_radio_obj_t *self, bool enabled) {
|
2020-07-30 20:58:12 -04:00
|
|
|
if (self->started && !enabled) {
|
2020-07-31 22:29:22 -04:00
|
|
|
ESP_LOGI(TAG, "stop");
|
|
|
|
if (self->current_scan != NULL) {
|
|
|
|
common_hal_wifi_radio_stop_scanning_networks(self);
|
|
|
|
}
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_stop());
|
2020-07-30 20:58:12 -04:00
|
|
|
self->started = false;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (!self->started && enabled) {
|
2020-07-31 22:29:22 -04:00
|
|
|
ESP_LOGI(TAG, "start");
|
|
|
|
ESP_ERROR_CHECK(esp_wifi_start());
|
2020-07-30 20:58:12 -04:00
|
|
|
self->started = true;
|
|
|
|
return;
|
|
|
|
}
|
2020-07-28 21:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t common_hal_wifi_radio_get_mac_address(wifi_radio_obj_t *self) {
|
2020-07-30 20:58:12 -04:00
|
|
|
uint8_t mac[6];
|
|
|
|
esp_wifi_get_mac(ESP_IF_WIFI_STA, mac);
|
2020-07-28 21:23:33 -04:00
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t common_hal_wifi_radio_start_scanning_networks(wifi_radio_obj_t *self) {
|
2020-07-30 20:58:12 -04:00
|
|
|
if (self->current_scan != NULL) {
|
|
|
|
mp_raise_RuntimeError(translate("Already scanning for wifi networks"));
|
|
|
|
}
|
|
|
|
// check enabled
|
2020-07-31 22:29:22 -04:00
|
|
|
start_station(self);
|
2020-07-30 20:58:12 -04:00
|
|
|
|
2020-07-31 22:29:22 -04:00
|
|
|
ESP_LOGI(TAG, "start scan");
|
2020-07-30 20:58:12 -04:00
|
|
|
wifi_scannednetworks_obj_t *scan = m_new_obj(wifi_scannednetworks_obj_t);
|
|
|
|
self->current_scan = scan;
|
|
|
|
scan->base.type = &wifi_scannednetworks_type;
|
|
|
|
scan->start_channel = 1;
|
|
|
|
scan->end_channel = 11;
|
|
|
|
scan->radio_event_group = self->event_group_handle;
|
|
|
|
wifi_scannednetworks_scan_next_channel(scan);
|
|
|
|
return scan;
|
2020-07-28 21:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void common_hal_wifi_radio_stop_scanning_networks(wifi_radio_obj_t *self) {
|
2020-07-30 20:58:12 -04:00
|
|
|
// Free the memory used to store the found aps.
|
2020-07-31 22:29:22 -04:00
|
|
|
ESP_EARLY_LOGI(TAG, "stop scan");
|
2020-07-30 20:58:12 -04:00
|
|
|
wifi_scannednetworks_deinit(self->current_scan);
|
|
|
|
self->current_scan = NULL;
|
2020-07-31 22:29:22 -04:00
|
|
|
ESP_EARLY_LOGI(TAG, "stop scan done");
|
2020-07-28 21:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
bool common_hal_wifi_radio_connect(wifi_radio_obj_t *self, uint8_t* ssid, size_t ssid_len, uint8_t* password, size_t password_len, mp_float_t timeout) {
|
2020-07-30 20:58:12 -04:00
|
|
|
// check enabled
|
|
|
|
wifi_config_t config;
|
|
|
|
esp_err_t result = esp_wifi_set_config(ESP_IF_WIFI_STA, &config);
|
|
|
|
result = esp_wifi_connect();
|
|
|
|
return result == ESP_OK;
|
2020-07-28 21:23:33 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
mp_obj_t common_hal_wifi_radio_get_ip_address(wifi_radio_obj_t *self) {
|
|
|
|
return mp_const_none;
|
|
|
|
}
|
|
|
|
|
|
|
|
mp_int_t common_hal_wifi_radio_ping(wifi_radio_obj_t *self, mp_obj_t ip_address) {
|
|
|
|
return 0;
|
|
|
|
}
|