summaryrefslogtreecommitdiff
path: root/fw/esp32/components/eos/wifi.c
blob: d47ae3ae0bc3c4352e9106cd89806b6c553af3a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
#include <stdlib.h>
#include <stdint.h>
#include <string.h>

#include <freertos/FreeRTOS.h>
#include <freertos/task.h>

#include <esp_system.h>
#include <esp_event.h>
#include <esp_log.h>
#include <esp_err.h>
#include <esp_wifi.h>
#include <nvs_flash.h>

#include "eos.h"
#include "net.h"
#include "wifi.h"

// XXX: WiFi fail due to no DHCP server

#define WIFI_MAX_SCAN_RECORDS       20
#define WIFI_MAX_CONNECT_ATTEMPTS   3

#define WIFI_STATE_STOPPED          0
#define WIFI_STATE_SCANNING         1
#define WIFI_STATE_CONNECTING       2
#define WIFI_STATE_CONNECTED        3
#define WIFI_STATE_DISCONNECTING    4
#define WIFI_STATE_DISCONNECTED     5

#define WIFI_ACTION_NONE            0
#define WIFI_ACTION_SCAN            1
#define WIFI_ACTION_CONNECT         2
#define WIFI_ACTION_DISCONNECT      3

static const char *TAG = "EOS WIFI";

static SemaphoreHandle_t mutex;

static wifi_config_t wifi_sta_config;
static wifi_scan_config_t wifi_scan_config;

static int wifi_connect_cnt = 0;
static uint8_t wifi_action;
static uint8_t wifi_state;
static wifi_ap_record_t scan_r[WIFI_MAX_SCAN_RECORDS];
static uint16_t scan_n;

static void wifi_event_handler(void *arg, esp_event_base_t event_base, int32_t event_id, void *event_data) {
    esp_err_t ret = ESP_OK;
    char _disconnect;
    uint8_t _action, _state;
    unsigned char *rbuf, *p;
    int i, len;
    ip_event_got_ip_t *got_ip;

    if (event_base == WIFI_EVENT) {
        switch(event_id) {
            case WIFI_EVENT_SCAN_DONE:
                scan_n = WIFI_MAX_SCAN_RECORDS;
                memset(scan_r, 0, sizeof(scan_r));
                esp_wifi_scan_get_ap_records(&scan_n, scan_r);

                ESP_LOGI(TAG, "Scan done: %d", scan_n);
                xSemaphoreTake(mutex, portMAX_DELAY);
                _state = wifi_state;
                if (wifi_state == WIFI_STATE_CONNECTED) wifi_action = WIFI_ACTION_NONE;
                xSemaphoreGive(mutex);

                if (_state != WIFI_STATE_CONNECTED) ret = esp_wifi_stop();

                rbuf = eos_net_alloc();
                rbuf[0] = EOS_WIFI_MTYPE_SCAN;
                p = rbuf + 1;
                for (i=0; i<scan_n; i++) {
                    len = strnlen((char *)scan_r[i].ssid, 33);
                    if (len > 32) continue;
                    if (p - rbuf + len + 1 > EOS_NET_MTU) break;
                    strcpy((char *)p, (char *)scan_r[i].ssid);
                    p += len + 1;
                }
                eos_net_send(EOS_NET_MTYPE_WIFI, rbuf, p - rbuf);
                break;

            case WIFI_EVENT_STA_START:
                xSemaphoreTake(mutex, portMAX_DELAY);
                _action = wifi_action;
                xSemaphoreGive(mutex);

                switch (_action) {
                    case WIFI_ACTION_SCAN:
                        ret = esp_wifi_scan_start(&wifi_scan_config, 0);
                        break;

                    case WIFI_ACTION_CONNECT:
                        ret = esp_wifi_connect();
                        break;

                    default:
                        break;
                }
                break;

            case WIFI_EVENT_STA_STOP:
                xSemaphoreTake(mutex, portMAX_DELAY);
                wifi_state = WIFI_STATE_STOPPED;
                wifi_action = WIFI_ACTION_NONE;
                xSemaphoreGive(mutex);
                break;

            case WIFI_EVENT_STA_CONNECTED:
                xSemaphoreTake(mutex, portMAX_DELAY);
                wifi_state = WIFI_STATE_CONNECTED;
                wifi_action = WIFI_ACTION_NONE;
                wifi_connect_cnt = WIFI_MAX_CONNECT_ATTEMPTS;
                xSemaphoreGive(mutex);
                break;

            case WIFI_EVENT_STA_DISCONNECTED:
                xSemaphoreTake(mutex, portMAX_DELAY);
                if (wifi_connect_cnt) wifi_connect_cnt--;
                _action = wifi_action;
                _disconnect = (wifi_connect_cnt == 0);
                if (_disconnect) wifi_state = WIFI_STATE_DISCONNECTED;
                xSemaphoreGive(mutex);

                if (_disconnect) {
                    rbuf = eos_net_alloc();
                    rbuf[0] = EOS_WIFI_MTYPE_DISCONNECT;
                    eos_net_send(EOS_NET_MTYPE_WIFI, rbuf, 1);
                    if (!_action) ret = esp_wifi_stop();
                } else {
                    ret = esp_wifi_connect();
                }
                break;

            default: // Ignore the other event types
                break;
        }
    } else if (event_base == IP_EVENT) {
        switch(event_id) {
            case IP_EVENT_STA_GOT_IP:
                got_ip = (ip_event_got_ip_t *)event_data;
                ESP_LOGI(TAG, "IP address: " IPSTR, IP2STR(&got_ip->ip_info.ip));
                rbuf = eos_net_alloc();
                rbuf[0] = EOS_WIFI_MTYPE_CONNECT;
                rbuf[1] = EOS_OK;
                eos_net_send(EOS_NET_MTYPE_WIFI, rbuf, 2);

                /* ip_changed is set even at normal connect!
                if (got_ip->ip_changed) {
                    ESP_LOGI(TAG, "IP changed");
                    // send wifi reconnect
                } else {
                    rbuf = eos_net_alloc();
                    rbuf[0] = EOS_WIFI_MTYPE_CONNECT;
                    rbuf[1] = EOS_OK;
                    eos_net_send(EOS_NET_MTYPE_WIFI, rbuf, 2);
                }
                */
                break;

            default: // Ignore the other event types
                break;
        }
    }

    if (ret != ESP_OK) ESP_LOGE(TAG, "EVT HANDLER ERR:%d EVT:%d", ret, event_id);
}

static void wifi_handler(unsigned char _mtype, unsigned char *buffer, uint16_t size) {
    uint8_t mtype;
    int rv;
    char *ssid, *pass;

    if (size < 1) return;

    mtype = buffer[0];
    rv = EOS_OK;
    buffer += 1;
    size -= 1;

    switch (mtype) {
        case EOS_WIFI_MTYPE_SCAN:
            rv = eos_wifi_scan();
            break;

        case EOS_WIFI_MTYPE_CONFIG:
            ssid = (char *)buffer;
            pass = ssid + strlen(ssid) + 1;
            rv = eos_wifi_set_config(ssid, pass);
            break;

        case EOS_WIFI_MTYPE_CONNECT:
            rv = eos_wifi_connect();
            break;

        case EOS_WIFI_MTYPE_DISCONNECT:
            rv = eos_wifi_disconnect();
            break;
    }

    if (rv) ESP_LOGE(TAG, "MSG HANDLER ERR:%d MSG:%d", rv, mtype);
}

void eos_wifi_init(void) {
    esp_err_t ret;
    wifi_init_config_t wifi_config = WIFI_INIT_CONFIG_DEFAULT();

    memset(&wifi_sta_config, 0, sizeof(wifi_sta_config));

    esp_netif_create_default_wifi_sta();

    ret = esp_wifi_init(&wifi_config);
    assert(ret == ESP_OK);

    ret = esp_event_handler_instance_register(WIFI_EVENT, ESP_EVENT_ANY_ID, &wifi_event_handler, NULL, NULL);
    assert(ret == ESP_OK);

    ret = esp_event_handler_instance_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &wifi_event_handler, NULL, NULL);
    assert(ret == ESP_OK);

    ret = esp_wifi_set_storage(WIFI_STORAGE_RAM);
    assert(ret == ESP_OK);

    ret = esp_wifi_set_mode(WIFI_MODE_STA);
    assert(ret == ESP_OK);

    ret = esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_sta_config);
    assert(ret == ESP_OK);

    ret = esp_wifi_stop();
    assert(ret == ESP_OK);

    mutex = xSemaphoreCreateBinary();
    xSemaphoreGive(mutex);

    eos_net_set_handler(EOS_NET_MTYPE_WIFI, wifi_handler);
    ESP_LOGI(TAG, "INIT");
}

int eos_wifi_scan(void) {
    int rv = EOS_OK;
    esp_err_t ret = ESP_OK;
    uint8_t _wifi_state = 0;

    xSemaphoreTake(mutex, portMAX_DELAY);
    if (!wifi_action) {
        _wifi_state = wifi_state;

        wifi_action = WIFI_ACTION_SCAN;
        if (wifi_state == WIFI_STATE_STOPPED) wifi_state = WIFI_STATE_SCANNING;

        memset(&wifi_scan_config, 0, sizeof(wifi_scan_config));
    } else {
        rv = EOS_ERR_BUSY;
    }
    xSemaphoreGive(mutex);

    if (rv) return rv;

    if (_wifi_state == WIFI_STATE_STOPPED) {
        ret = esp_wifi_start();
    } else {
        ret = esp_wifi_scan_start(&wifi_scan_config, 0);
    }
    if (ret != ESP_OK) rv = EOS_ERR;

    return rv;
}

int eos_wifi_set_config(char *ssid, char *pass) {
    int rv = EOS_OK;

    xSemaphoreTake(mutex, portMAX_DELAY);
    if (!wifi_action) {
        if (ssid) strncpy((char *)wifi_sta_config.sta.ssid, ssid, sizeof(wifi_sta_config.sta.ssid) - 1);
        if (pass) strncpy((char *)wifi_sta_config.sta.password, pass, sizeof(wifi_sta_config.sta.password) - 1);
    } else {
        rv = EOS_ERR_BUSY;

    }
    xSemaphoreGive(mutex);

    return rv;
}

int eos_wifi_connect(void) {
    int rv = EOS_OK;
    esp_err_t ret = ESP_OK;
    uint8_t _wifi_state = 0;

    xSemaphoreTake(mutex, portMAX_DELAY);
    if (!wifi_action) {
        _wifi_state = wifi_state;

        wifi_action = WIFI_ACTION_CONNECT;
        wifi_state = WIFI_STATE_CONNECTING;
        wifi_connect_cnt = WIFI_MAX_CONNECT_ATTEMPTS;
    } else {
        rv = EOS_ERR_BUSY;
    }
    xSemaphoreGive(mutex);

    if (rv) return rv;

    esp_wifi_set_config(ESP_IF_WIFI_STA, &wifi_sta_config);

    if (_wifi_state == WIFI_STATE_STOPPED) {
        ret = esp_wifi_start();
    } else {
        ret = esp_wifi_connect();
    }
    if (ret != ESP_OK) rv = EOS_ERR;

    return rv;
}

int eos_wifi_disconnect(void) {
    int rv = EOS_OK;
    esp_err_t ret = ESP_OK;

    xSemaphoreTake(mutex, portMAX_DELAY);
    if (!wifi_action) {
        wifi_action = WIFI_ACTION_DISCONNECT;
        wifi_state = WIFI_STATE_DISCONNECTING;
        wifi_connect_cnt = 0;

        memset(wifi_sta_config.sta.ssid, 0, sizeof(wifi_sta_config.sta.ssid));
        memset(wifi_sta_config.sta.password, 0, sizeof(wifi_sta_config.sta.password));
    } else {
        rv = EOS_ERR_BUSY;
    }
    xSemaphoreGive(mutex);

    if (rv) return rv;

    ret = esp_wifi_stop();
    if (ret != ESP_OK) rv = EOS_ERR;

    return rv;
}