| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | /* Mesh Manual Networking Example
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |    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 <string.h>
 | 
					
						
							|  |  |  | #include "esp_wifi.h"
 | 
					
						
							|  |  |  | #include "esp_system.h"
 | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  | #include "esp_event.h"
 | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | #include "esp_log.h"
 | 
					
						
							|  |  |  | #include "esp_mesh.h"
 | 
					
						
							|  |  |  | #include "esp_mesh_internal.h"
 | 
					
						
							|  |  |  | #include "mesh_light.h"
 | 
					
						
							|  |  |  | #include "nvs_flash.h"
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************
 | 
					
						
							|  |  |  |  *                Macros | 
					
						
							|  |  |  |  *******************************************************/ | 
					
						
							|  |  |  | //#define MESH_SET_ROOT
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef MESH_SET_ROOT
 | 
					
						
							|  |  |  | #define MESH_SET_NODE
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************
 | 
					
						
							|  |  |  |  *                Constants | 
					
						
							|  |  |  |  *******************************************************/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************
 | 
					
						
							|  |  |  |  *                Variable Definitions | 
					
						
							|  |  |  |  *******************************************************/ | 
					
						
							|  |  |  | static const char *MESH_TAG = "mesh_main"; | 
					
						
							|  |  |  | static const uint8_t MESH_ID[6] = { 0x77, 0x77, 0x77, 0x77, 0x77, 0x77}; | 
					
						
							|  |  |  | static mesh_addr_t mesh_parent_addr; | 
					
						
							|  |  |  | static int mesh_layer = -1; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************
 | 
					
						
							|  |  |  |  *                Function Declarations | 
					
						
							|  |  |  |  *******************************************************/ | 
					
						
							|  |  |  | void mesh_scan_done_handler(int num); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*******************************************************
 | 
					
						
							|  |  |  |  *                Function Definitions | 
					
						
							|  |  |  |  *******************************************************/ | 
					
						
							|  |  |  | void mesh_scan_done_handler(int num) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  |     int ie_len = 0; | 
					
						
							|  |  |  |     mesh_assoc_t assoc; | 
					
						
							|  |  |  |     mesh_assoc_t parent_assoc = { .layer = CONFIG_MESH_MAX_LAYER, .rssi = -120 }; | 
					
						
							|  |  |  |     wifi_ap_record_t record; | 
					
						
							|  |  |  |     wifi_ap_record_t parent_record = { 0, }; | 
					
						
							|  |  |  |     bool parent_found = false; | 
					
						
							|  |  |  |     mesh_type_t my_type = MESH_IDLE; | 
					
						
							|  |  |  |     int my_layer = -1; | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |     wifi_config_t parent = { 0, }; | 
					
						
							|  |  |  |     wifi_scan_config_t scan_config = { 0 }; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     for (i = 0; i < num; i++) { | 
					
						
							|  |  |  |         esp_mesh_scan_get_ap_ie_len(&ie_len); | 
					
						
							|  |  |  |         esp_mesh_scan_get_ap_record(&record, &assoc); | 
					
						
							|  |  |  |         if (ie_len == sizeof(assoc)) { | 
					
						
							|  |  |  |             ESP_LOGW(MESH_TAG, | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |                      "<MESH>[%d]%s, layer:%d/%d, assoc:%d/%d, %d, "MACSTR", channel:%u, rssi:%d, ID<"MACSTR"><%s>", | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |                      i, record.ssid, assoc.layer, assoc.layer_cap, assoc.assoc, | 
					
						
							|  |  |  |                      assoc.assoc_cap, assoc.layer2_cap, MAC2STR(record.bssid), | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |                      record.primary, record.rssi, MAC2STR(assoc.mesh_id), assoc.encrypted ? "IE Encrypted" : "IE Unencrypted"); | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | #ifdef MESH_SET_NODE
 | 
					
						
							|  |  |  |             if (assoc.mesh_type != MESH_IDLE && assoc.layer_cap | 
					
						
							|  |  |  |                     && assoc.assoc < assoc.assoc_cap && record.rssi > -70) { | 
					
						
							|  |  |  |                 if (assoc.layer < parent_assoc.layer || assoc.layer2_cap < parent_assoc.layer2_cap) { | 
					
						
							|  |  |  |                     parent_found = true; | 
					
						
							|  |  |  |                     memcpy(&parent_record, &record, sizeof(record)); | 
					
						
							|  |  |  |                     memcpy(&parent_assoc, &assoc, sizeof(assoc)); | 
					
						
							|  |  |  |                     if (parent_assoc.layer_cap != 1) { | 
					
						
							|  |  |  |                         my_type = MESH_NODE; | 
					
						
							|  |  |  |                     } else { | 
					
						
							|  |  |  |                         my_type = MESH_LEAF; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     my_layer = parent_assoc.layer + 1; | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |                     break; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             ESP_LOGI(MESH_TAG, "[%d]%s, "MACSTR", channel:%u, rssi:%d", i, | 
					
						
							|  |  |  |                      record.ssid, MAC2STR(record.bssid), record.primary, | 
					
						
							|  |  |  |                      record.rssi); | 
					
						
							|  |  |  | #ifdef MESH_SET_ROOT
 | 
					
						
							|  |  |  |             if (!strcmp(CONFIG_MESH_ROUTER_SSID, (char *) record.ssid)) { | 
					
						
							|  |  |  |                 parent_found = true; | 
					
						
							|  |  |  |                 memcpy(&parent_record, &record, sizeof(record)); | 
					
						
							|  |  |  |                 my_type = MESH_ROOT; | 
					
						
							|  |  |  |                 my_layer = MESH_ROOT_LAYER; | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |     esp_mesh_flush_scan_result(); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     if (parent_found) { | 
					
						
							|  |  |  |         /*
 | 
					
						
							|  |  |  |          * parent | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |          * Both channel and SSID of the parent are mandatory. | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |          */ | 
					
						
							|  |  |  |         parent.sta.channel = parent_record.primary; | 
					
						
							|  |  |  |         memcpy(&parent.sta.ssid, &parent_record.ssid, | 
					
						
							|  |  |  |                sizeof(parent_record.ssid)); | 
					
						
							|  |  |  |         parent.sta.bssid_set = 1; | 
					
						
							|  |  |  |         memcpy(&parent.sta.bssid, parent_record.bssid, 6); | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |         ESP_ERROR_CHECK(esp_mesh_set_ap_authmode(parent_record.authmode)); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         if (my_type == MESH_ROOT) { | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |             if (parent_record.authmode != WIFI_AUTH_OPEN) { | 
					
						
							|  |  |  |                 memcpy(&parent.sta.password, CONFIG_MESH_ROUTER_PASSWD, | 
					
						
							|  |  |  |                        strlen(CONFIG_MESH_ROUTER_PASSWD)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |             ESP_LOGW(MESH_TAG, "<PARENT>%s, "MACSTR", channel:%u, rssi:%d", | 
					
						
							|  |  |  |                      parent_record.ssid, MAC2STR(parent_record.bssid), | 
					
						
							|  |  |  |                      parent_record.primary, parent_record.rssi); | 
					
						
							|  |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |             if (parent_record.authmode != WIFI_AUTH_OPEN) { | 
					
						
							|  |  |  |                 memcpy(&parent.sta.password, CONFIG_MESH_AP_PASSWD, | 
					
						
							|  |  |  |                        strlen(CONFIG_MESH_AP_PASSWD)); | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |             ESP_LOGW(MESH_TAG, | 
					
						
							|  |  |  |                      "<PARENT>%s, layer:%d/%d, assoc:%d/%d, %d, "MACSTR", channel:%u, rssi:%d", | 
					
						
							|  |  |  |                      parent_record.ssid, parent_assoc.layer, | 
					
						
							|  |  |  |                      parent_assoc.layer_cap, parent_assoc.assoc, | 
					
						
							|  |  |  |                      parent_assoc.assoc_cap, parent_assoc.layer2_cap, | 
					
						
							|  |  |  |                      MAC2STR(parent_record.bssid), parent_record.primary, | 
					
						
							|  |  |  |                      parent_record.rssi); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |         ESP_ERROR_CHECK(esp_mesh_set_parent(&parent, (mesh_addr_t *)&parent_assoc.mesh_id, my_type, my_layer)); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         ESP_LOGW(MESH_TAG, | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |                  "<Warning>no parent found, modify IE crypto configuration and scan"); | 
					
						
							|  |  |  |         if (CONFIG_MESH_IE_CRYPTO_FUNCS) { | 
					
						
							|  |  |  |             /* modify IE crypto key */ | 
					
						
							|  |  |  |             ESP_LOGW(MESH_TAG, "<Config>modify IE crypto key to %s", CONFIG_MESH_IE_CRYPTO_KEY); | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |             ESP_ERROR_CHECK(esp_mesh_set_ie_crypto_funcs(&g_wifi_default_mesh_crypto_funcs)); | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |             ESP_ERROR_CHECK(esp_mesh_set_ie_crypto_key(CONFIG_MESH_IE_CRYPTO_KEY, strlen(CONFIG_MESH_IE_CRYPTO_KEY))); | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             /* disable IE crypto */ | 
					
						
							|  |  |  |             ESP_LOGW(MESH_TAG, "<Config>disable IE crypto"); | 
					
						
							|  |  |  |             ESP_ERROR_CHECK(esp_mesh_set_ie_crypto_funcs(NULL)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |         esp_wifi_scan_stop(); | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |         scan_config.show_hidden = 1; | 
					
						
							|  |  |  |         scan_config.scan_type = WIFI_SCAN_TYPE_PASSIVE; | 
					
						
							|  |  |  |         ESP_ERROR_CHECK(esp_wifi_scan_start(&scan_config, 0)); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  | void mesh_event_handler(void *arg, esp_event_base_t event_base, | 
					
						
							|  |  |  |                         int32_t event_id, void *event_data) | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |     mesh_addr_t id = {0,}; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     static uint8_t last_layer = 0; | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     wifi_scan_config_t scan_config = { 0 }; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     switch (event_id) { | 
					
						
							|  |  |  |     case MESH_EVENT_STARTED: { | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |         esp_mesh_get_id(&id); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_STARTED>ID:"MACSTR"", MAC2STR(id.addr)); | 
					
						
							|  |  |  |         mesh_layer = esp_mesh_get_layer(); | 
					
						
							|  |  |  |         ESP_ERROR_CHECK(esp_mesh_set_self_organized(0, 0)); | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |         esp_wifi_scan_stop(); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         /* mesh softAP is hidden */ | 
					
						
							|  |  |  |         scan_config.show_hidden = 1; | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |         scan_config.scan_type = WIFI_SCAN_TYPE_PASSIVE; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_ERROR_CHECK(esp_wifi_scan_start(&scan_config, 0)); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_STOPPED: { | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_STOPPED>"); | 
					
						
							|  |  |  |         mesh_layer = esp_mesh_get_layer(); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_CHILD_CONNECTED: { | 
					
						
							|  |  |  |         mesh_event_child_connected_t *child_connected = (mesh_event_child_connected_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_CHILD_CONNECTED>aid:%d, "MACSTR"", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  child_connected->aid, | 
					
						
							|  |  |  |                  MAC2STR(child_connected->mac)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_CHILD_DISCONNECTED: { | 
					
						
							|  |  |  |         mesh_event_child_disconnected_t *child_disconnected = (mesh_event_child_disconnected_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_CHILD_DISCONNECTED>aid:%d, "MACSTR"", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  child_disconnected->aid, | 
					
						
							|  |  |  |                  MAC2STR(child_disconnected->mac)); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2019-04-18 22:38:43 +08:00
										 |  |  |     break; | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     case MESH_EVENT_ROUTING_TABLE_ADD: { | 
					
						
							|  |  |  |         mesh_event_routing_table_change_t *routing_table = (mesh_event_routing_table_change_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGW(MESH_TAG, "<MESH_EVENT_ROUTING_TABLE_ADD>add %d, new:%d", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  routing_table->rt_size_change, | 
					
						
							|  |  |  |                  routing_table->rt_size_new); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_ROUTING_TABLE_REMOVE: { | 
					
						
							|  |  |  |         mesh_event_routing_table_change_t *routing_table = (mesh_event_routing_table_change_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGW(MESH_TAG, "<MESH_EVENT_ROUTING_TABLE_REMOVE>remove %d, new:%d", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  routing_table->rt_size_change, | 
					
						
							|  |  |  |                  routing_table->rt_size_new); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_NO_PARENT_FOUND: { | 
					
						
							|  |  |  |         mesh_event_no_parent_found_t *no_parent = (mesh_event_no_parent_found_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-08-27 15:08:54 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_NO_PARENT_FOUND>scan times:%d", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  no_parent->scan_times); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     /* TODO handler for the failure */ | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_PARENT_CONNECTED: { | 
					
						
							|  |  |  |         mesh_event_connected_t *connected = (mesh_event_connected_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |         esp_mesh_get_id(&id); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |         mesh_layer = connected->self_layer; | 
					
						
							|  |  |  |         memcpy(&mesh_parent_addr.addr, connected->connected.bssid, 6); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, | 
					
						
							|  |  |  |                  "<MESH_EVENT_PARENT_CONNECTED>layer:%d-->%d, parent:"MACSTR"%s, ID:"MACSTR"", | 
					
						
							|  |  |  |                  last_layer, mesh_layer, MAC2STR(mesh_parent_addr.addr), | 
					
						
							|  |  |  |                  esp_mesh_is_root() ? "<ROOT>" : | 
					
						
							|  |  |  |                  (mesh_layer == 2) ? "<layer2>" : "", MAC2STR(id.addr)); | 
					
						
							|  |  |  |         last_layer = mesh_layer; | 
					
						
							|  |  |  |         mesh_connected_indicator(mesh_layer); | 
					
						
							|  |  |  |         if (esp_mesh_is_root()) { | 
					
						
							|  |  |  |             tcpip_adapter_dhcpc_start(TCPIP_ADAPTER_IF_STA); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_PARENT_DISCONNECTED: { | 
					
						
							|  |  |  |         mesh_event_disconnected_t *disconnected = (mesh_event_disconnected_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, | 
					
						
							|  |  |  |                  "<MESH_EVENT_PARENT_DISCONNECTED>reason:%d", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  disconnected->reason); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         mesh_disconnected_indicator(); | 
					
						
							|  |  |  |         mesh_layer = esp_mesh_get_layer(); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |         if (disconnected->reason == WIFI_REASON_ASSOC_TOOMANY) { | 
					
						
							| 
									
										
										
										
											2018-12-26 16:10:55 +08:00
										 |  |  |             esp_wifi_scan_stop(); | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |             scan_config.show_hidden = 1; | 
					
						
							|  |  |  |             scan_config.scan_type = WIFI_SCAN_TYPE_PASSIVE; | 
					
						
							|  |  |  |             ESP_ERROR_CHECK(esp_wifi_scan_start(&scan_config, 0)); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_LAYER_CHANGE: { | 
					
						
							|  |  |  |         mesh_event_layer_change_t *layer_change = (mesh_event_layer_change_t *)event_data; | 
					
						
							|  |  |  |         mesh_layer = layer_change->new_layer; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_LAYER_CHANGE>layer:%d-->%d%s", | 
					
						
							|  |  |  |                  last_layer, mesh_layer, | 
					
						
							|  |  |  |                  esp_mesh_is_root() ? "<ROOT>" : | 
					
						
							|  |  |  |                  (mesh_layer == 2) ? "<layer2>" : ""); | 
					
						
							|  |  |  |         last_layer = mesh_layer; | 
					
						
							|  |  |  |         mesh_connected_indicator(mesh_layer); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_ROOT_ADDRESS: { | 
					
						
							|  |  |  |         mesh_event_root_address_t *root_addr = (mesh_event_root_address_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_ROOT_ADDRESS>root address:"MACSTR"", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  MAC2STR(root_addr->addr)); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_TODS_STATE: { | 
					
						
							|  |  |  |         mesh_event_toDS_state_t *toDs_state = (mesh_event_toDS_state_t *)event_data; | 
					
						
							|  |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_TODS_REACHABLE>state:%d", *toDs_state); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_ROOT_FIXED: { | 
					
						
							|  |  |  |         mesh_event_root_fixed_t *root_fixed = (mesh_event_root_fixed_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_ROOT_FIXED>%s", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  root_fixed->is_fixed ? "fixed" : "not fixed"); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							|  |  |  |     case MESH_EVENT_SCAN_DONE: { | 
					
						
							|  |  |  |         mesh_event_scan_done_t *scan_done = (mesh_event_scan_done_t *)event_data; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "<MESH_EVENT_SCAN_DONE>number:%d", | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |                  scan_done->number); | 
					
						
							|  |  |  |         mesh_scan_done_handler(scan_done->number); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     break; | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     default: | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |         ESP_LOGI(MESH_TAG, "unknown id:%d", event_id); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  | void ip_event_handler(void *arg, esp_event_base_t event_base, | 
					
						
							|  |  |  |                       int32_t event_id, void *event_data) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ip_event_got_ip_t *event = (ip_event_got_ip_t *) event_data; | 
					
						
							| 
									
										
										
										
											2019-08-20 14:40:34 +02:00
										 |  |  |     ESP_LOGI(MESH_TAG, "<IP_EVENT_STA_GOT_IP>IP:" IPSTR, IP2STR(&event->ip_info.ip)); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | void app_main(void) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(mesh_light_init()); | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(nvs_flash_init()); | 
					
						
							|  |  |  |     /*  tcpip initialization */ | 
					
						
							|  |  |  |     tcpip_adapter_init(); | 
					
						
							|  |  |  |     /* for mesh
 | 
					
						
							|  |  |  |      * stop DHCP server on softAP interface by default | 
					
						
							|  |  |  |      * stop DHCP client on station interface by default | 
					
						
							|  |  |  |      * */ | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(tcpip_adapter_dhcps_stop(TCPIP_ADAPTER_IF_AP)); | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(tcpip_adapter_dhcpc_stop(TCPIP_ADAPTER_IF_STA)); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     /*  event initialization */ | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_event_loop_create_default()); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     /*  wifi initialization */ | 
					
						
							|  |  |  |     wifi_init_config_t config = WIFI_INIT_CONFIG_DEFAULT(); | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_wifi_init(&config)); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     ESP_ERROR_CHECK(esp_event_handler_register(IP_EVENT, IP_EVENT_STA_GOT_IP, &ip_event_handler, NULL)); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     ESP_ERROR_CHECK(esp_wifi_set_storage(WIFI_STORAGE_FLASH)); | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_wifi_start()); | 
					
						
							|  |  |  |     /*  mesh initialization */ | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_mesh_init()); | 
					
						
							| 
									
										
										
										
											2019-04-16 18:13:13 +08:00
										 |  |  |     ESP_ERROR_CHECK(esp_event_handler_register(MESH_EVENT, ESP_EVENT_ANY_ID, &mesh_event_handler, NULL)); | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |     /* mesh enable IE crypto */ | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     mesh_cfg_t cfg = MESH_INIT_CONFIG_DEFAULT(); | 
					
						
							|  |  |  |     /* mesh ID */ | 
					
						
							|  |  |  |     memcpy((uint8_t *) &cfg.mesh_id, MESH_ID, 6); | 
					
						
							|  |  |  |     /* router */ | 
					
						
							|  |  |  |     cfg.channel = CONFIG_MESH_CHANNEL; | 
					
						
							|  |  |  |     cfg.router.ssid_len = strlen(CONFIG_MESH_ROUTER_SSID); | 
					
						
							|  |  |  |     memcpy((uint8_t *) &cfg.router.ssid, CONFIG_MESH_ROUTER_SSID, cfg.router.ssid_len); | 
					
						
							|  |  |  |     memcpy((uint8_t *) &cfg.router.password, CONFIG_MESH_ROUTER_PASSWD, | 
					
						
							|  |  |  |            strlen(CONFIG_MESH_ROUTER_PASSWD)); | 
					
						
							|  |  |  |     /* mesh softAP */ | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |     ESP_ERROR_CHECK(esp_mesh_set_ap_authmode(CONFIG_MESH_AP_AUTHMODE)); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  |     cfg.mesh_ap.max_connection = CONFIG_MESH_AP_CONNECTIONS; | 
					
						
							|  |  |  |     memcpy((uint8_t *) &cfg.mesh_ap.password, CONFIG_MESH_AP_PASSWD, | 
					
						
							|  |  |  |            strlen(CONFIG_MESH_AP_PASSWD)); | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_mesh_set_config(&cfg)); | 
					
						
							|  |  |  |     /* mesh start */ | 
					
						
							|  |  |  |     ESP_ERROR_CHECK(esp_mesh_start()); | 
					
						
							| 
									
										
										
										
											2018-09-23 21:09:59 +08:00
										 |  |  |     ESP_LOGI(MESH_TAG, "mesh starts successfully, heap:%d\n",  esp_get_free_heap_size()); | 
					
						
							| 
									
										
										
										
											2018-05-21 17:22:04 +08:00
										 |  |  | } |