forked from espressif/arduino-esp32
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesp_mesh.h
1318 lines (1208 loc) · 47.6 KB
/
esp_mesh.h
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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Copyright 2017-2018 Espressif Systems (Shanghai) PTE LTD
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
/*
* Software Stack demonstrated:
* |------------------------------------------------------------------------------|
* | | |
* | | Application |
* | |-----------------------------------------------------------------|
* | | | Protocols: | | | | |
* | | Mesh Stack | HTTP, DNS, | | | Other | |
* | RTOS: | (Networking, | DHCP, ... | | | Components | |
* | (freeRTOS) | self-healing, |------------| | | | |
* | | flow control, | Network Stack: | | | |
* | | ...) | (LwIP) | | | |
* | |-----------------------------------| |---------------| |
* | | | |
* | | WiFi Driver | |
* | |--------------------------------------------------| |
* | | |
* | | Platform HAL |
* |------------------------------------------------------------------------------|
*
* System Events delivery:
*
* |---------------|
* | | default handler
* | WiFi stack | events |---------------------|
* | | -------------> | |
* |---------------| | |
* | event task |
* |---------------| events | |
* | | -------------> | |
* | LwIP stack | |---------------------|
* | |--------|
* |---------------| |
* | mesh event callback handler
* | |----------------------------|
* |-----> | |
* |---------------| | application |
* | | events | task |
* | mesh stack | -------------> | |
* | | |----------------------------|
* |---------------|
*
*
* Mesh Stack
*
* Mesh event defines almost all system events applications tasks need.
* Mesh event contains WiFi connection states on station interface, children connection states on softAP interface and etc..
* Applications need to register a mesh event callback handler by API esp_mesh_set_config() firstly.
* This handler is to receive events posted from mesh stack and LwIP stack.
* Applications could add relative handler for each event.
* Examples:
* (1)Applications could use WiFi station connect states to decide when to send data to its parent, to root or to external IP network;
* (2)Applications could use WiFi softAP states to decide when to send data to its children.
*
* In present implementation, applications are able to access mesh stack directly without having to go through LwIP stack.
* Applications use esp_mesh_send() and esp_mesh_recv() to send and receive messages over the mesh network.
* In mesh stack design, normal devices don't require LwIP stack. But since IDF hasn't supported system without initializing LwIP stack yet,
* applications still need to do LwIP initialization and two more things are required to be done
* (1)stop DHCP server on softAP interface by default
* (2)stop DHCP client on station interface by default.
* Examples:
* tcpip_adapter_init();
* tcpip_adapter_dhcps_stop(TCPIP_ADAPTER_IF_AP);
* tcpip_adapter_dhcpc_stop(TCPIP_ADAPTER_IF_STA);
*
* Over the mesh network, only root is able to access external IP network.
* In application mesh event handler, once a device becomes a root, start DHCP client immediately if DHCP is chosen.
*/
#ifndef __ESP_MESH_H__
#define __ESP_MESH_H__
#include "esp_err.h"
#include "esp_wifi.h"
#include "esp_wifi_types.h"
#include "esp_mesh_internal.h"
#ifdef __cplusplus
extern "C" {
#endif
/*******************************************************
* Constants
*******************************************************/
#define MESH_ROOT_LAYER (1) /**< root layer value */
#define MESH_MTU (1500) /**< max transmit unit(in bytes) */
#define MESH_MPS (1472) /**< max payload size(in bytes) */
/**
* @brief mesh error code definition
*/
#define ESP_ERR_MESH_WIFI_NOT_START (ESP_ERR_MESH_BASE + 1) /**< WiFi isn't started */
#define ESP_ERR_MESH_NOT_INIT (ESP_ERR_MESH_BASE + 2) /**< mesh isn't initialized */
#define ESP_ERR_MESH_NOT_CONFIG (ESP_ERR_MESH_BASE + 3) /**< mesh isn't configured */
#define ESP_ERR_MESH_NOT_START (ESP_ERR_MESH_BASE + 4) /**< mesh isn't started */
#define ESP_ERR_MESH_NOT_SUPPORT (ESP_ERR_MESH_BASE + 5) /**< not supported yet */
#define ESP_ERR_MESH_NOT_ALLOWED (ESP_ERR_MESH_BASE + 6) /**< operation is not allowed */
#define ESP_ERR_MESH_NO_MEMORY (ESP_ERR_MESH_BASE + 7) /**< out of memory */
#define ESP_ERR_MESH_ARGUMENT (ESP_ERR_MESH_BASE + 8) /**< illegal argument */
#define ESP_ERR_MESH_EXCEED_MTU (ESP_ERR_MESH_BASE + 9) /**< packet size exceeds MTU */
#define ESP_ERR_MESH_TIMEOUT (ESP_ERR_MESH_BASE + 10) /**< timeout */
#define ESP_ERR_MESH_DISCONNECTED (ESP_ERR_MESH_BASE + 11) /**< disconnected with parent on station interface */
#define ESP_ERR_MESH_QUEUE_FAIL (ESP_ERR_MESH_BASE + 12) /**< queue fail */
#define ESP_ERR_MESH_QUEUE_FULL (ESP_ERR_MESH_BASE + 13) /**< queue full */
#define ESP_ERR_MESH_NO_PARENT_FOUND (ESP_ERR_MESH_BASE + 14) /**< no parent found to join the mesh network */
#define ESP_ERR_MESH_NO_ROUTE_FOUND (ESP_ERR_MESH_BASE + 15) /**< no route found to forward the packet */
#define ESP_ERR_MESH_OPTION_NULL (ESP_ERR_MESH_BASE + 16) /**< no option found */
#define ESP_ERR_MESH_OPTION_UNKNOWN (ESP_ERR_MESH_BASE + 17) /**< unknown option */
#define ESP_ERR_MESH_XON_NO_WINDOW (ESP_ERR_MESH_BASE + 18) /**< no window for software flow control on upstream */
#define ESP_ERR_MESH_INTERFACE (ESP_ERR_MESH_BASE + 19) /**< low-level WiFi interface error */
#define ESP_ERR_MESH_DISCARD_DUPLICATE (ESP_ERR_MESH_BASE + 20) /**< discard the packet due to the duplicate sequence number */
#define ESP_ERR_MESH_DISCARD (ESP_ERR_MESH_BASE + 21) /**< discard the packet */
#define ESP_ERR_MESH_VOTING (ESP_ERR_MESH_BASE + 22) /**< vote in progress */
/**
* @brief flags used with esp_mesh_send() and esp_mesh_recv()
*/
#define MESH_DATA_ENC (0x01) /**< data encrypted(Unimplemented) */
#define MESH_DATA_P2P (0x02) /**< point-to-point delivery over the mesh network */
#define MESH_DATA_FROMDS (0x04) /**< receive from external IP network */
#define MESH_DATA_TODS (0x08) /**< identify this packet is target to external IP network */
#define MESH_DATA_NONBLOCK (0x10) /**< esp_mesh_send() non-block */
#define MESH_DATA_DROP (0x20) /**< in the situation of root having been changed, identify this packet can be dropped by new root */
#define MESH_DATA_GROUP (0x40) /**< identify this packet is target to a group address */
/**
* @brief option definitions for esp_mesh_send() and esp_mesh_recv()
*/
#define MESH_OPT_SEND_GROUP (7) /**< data transmission by group; used with esp_mesh_send() and shall have payload */
#define MESH_OPT_RECV_DS_ADDR (8) /**< return a remote IP address; used with esp_mesh_send() and esp_mesh_recv() */
/**
* @brief flag of mesh networking IE
*/
#define MESH_ASSOC_FLAG_VOTE_IN_PROGRESS (0x02) /**< vote in progress */
#define MESH_ASSOC_FLAG_NETWORK_FREE (0x08) /**< no root in current network */
#define MESH_ASSOC_FLAG_ROOTS_FOUND (0x20) /**< root conflict is found */
#define MESH_ASSOC_FLAG_ROOT_FIXED (0x40) /**< root is fixed */
/*******************************************************
* Enumerations
*******************************************************/
/**
* @brief enumerated list of mesh event id
*/
typedef enum {
MESH_EVENT_STARTED, /**< mesh is started */
MESH_EVENT_STOPPED, /**< mesh is stopped */
MESH_EVENT_CHANNEL_SWITCH, /**< channel switch */
MESH_EVENT_CHILD_CONNECTED, /**< a child is connected on softAP interface */
MESH_EVENT_CHILD_DISCONNECTED, /**< a child is disconnected on softAP interface */
MESH_EVENT_ROUTING_TABLE_ADD, /**< routing table is changed by adding newly joined children */
MESH_EVENT_ROUTING_TABLE_REMOVE, /**< routing table is changed by removing leave children */
MESH_EVENT_PARENT_CONNECTED, /**< parent is connected on station interface */
MESH_EVENT_PARENT_DISCONNECTED, /**< parent is disconnected on station interface */
MESH_EVENT_NO_PARNET_FOUND, /**< no parent found */
MESH_EVENT_LAYER_CHANGE, /**< layer changes over the mesh network */
MESH_EVENT_TODS_STATE, /**< state represents if root is able to access external IP network */
MESH_EVENT_VOTE_STARTED, /**< the process of voting a new root is started either by children or by root */
MESH_EVENT_VOTE_STOPPED, /**< the process of voting a new root is stopped */
MESH_EVENT_ROOT_ADDRESS, /**< the root address is obtained. It is posted by mesh stack automatically. */
MESH_EVENT_ROOT_SWITCH_REQ, /**< root switch request sent from a new voted root candidate */
MESH_EVENT_ROOT_SWITCH_ACK, /**< root switch acknowledgment responds the above request sent from current root */
MESH_EVENT_ROOT_GOT_IP, /**< root obtains the IP address. It is posted by LwIP stack automatically */
MESH_EVENT_ROOT_LOST_IP, /**< root loses the IP address. It is posted by LwIP stack automatically */
MESH_EVENT_ROOT_ASKED_YIELD, /**< root is asked yield by a more powerful existing root. If self organized is disabled
and this device is specified to be a root by users, users should set a new parent
for this device. if self organized is enabled, this device will find a new parent
by itself, users could ignore this event. */
MESH_EVENT_ROOT_FIXED, /**< when devices join a network, if the setting of Fixed Root for one device is different
from that of its parent, the device will update the setting the same as its parent's.
Fixed Root setting of each device is variable as that setting changes of root. */
MESH_EVENT_SCAN_DONE, /**< if self-organized networking is disabled, user can call esp_wifi_scan_start() to trigger
this event, and add the corresponding scan done handler in this event. */
MESH_EVENT_MAX,
} mesh_event_id_t;
/**
* @brief device type
*/
typedef enum {
MESH_IDLE, /**< hasn't joined the mesh network yet */
MESH_ROOT, /**< the only sink of the mesh network. Has the ability to access external IP network */
MESH_NODE, /**< intermediate device. Has the ability to forward packets over the mesh network */
MESH_LEAF, /**< has no forwarding ability */
} mesh_type_t;
/**
* @brief protocol of transmitted application data
*/
typedef enum {
MESH_PROTO_BIN, /**< binary */
MESH_PROTO_HTTP, /**< HTTP protocol */
MESH_PROTO_JSON, /**< JSON format */
MESH_PROTO_MQTT, /**< MQTT protocol */
} mesh_proto_t;
/**
* @brief for reliable transmission, mesh stack provides three type of services
*/
typedef enum {
MESH_TOS_P2P, /**< provide P2P(point-to-point) retransmission on mesh stack by default */
MESH_TOS_E2E, /**< provide E2E(end-to-end) retransmission on mesh stack (Unimplemented) */
MESH_TOS_DEF, /**< no retransmission on mesh stack */
} mesh_tos_t;
/**
* @brief vote reason
*/
typedef enum {
MESH_VOTE_REASON_ROOT_INITIATED = 1, /**< vote is initiated by root */
MESH_VOTE_REASON_CHILD_INITIATED, /**< vote is initiated by children */
} mesh_vote_reason_t;
/**
* @brief mesh disconnect reason code
*/
typedef enum {
MESH_REASON_CYCLIC = 100, /**< cyclic is detected */
MESH_REASON_PARENT_IDLE, /**< parent is idle */
MESH_REASON_LEAF, /**< the connected device is changed to a leaf */
MESH_REASON_DIFF_ID, /**< in different mesh ID */
MESH_REASON_ROOTS, /**< root conflict is detected */
MESH_REASON_PARENT_STOPPED, /**< parent has stopped the mesh */
MESH_REASON_SCAN_FAIL, /**< scan fail */
} mesh_disconnect_reason_t;
/*******************************************************
* Structures
*******************************************************/
/**
* @brief IP address and port
*/
typedef struct {
ip4_addr_t ip4; /**< IP address */
uint16_t port; /**< port */
} __attribute__((packed)) mip_t;
/**
* @brief mesh address
*/
typedef union {
uint8_t addr[6]; /**< mac address */
mip_t mip; /**< mip address */
} mesh_addr_t;
/**
* @brief channel switch information
*/
typedef struct {
uint8_t channel; /**< new channel */
} mesh_event_channel_switch_t;
/**
* @brief parent connected information
*/
typedef struct {
system_event_sta_connected_t connected; /**< parent information, same as WiFi event SYSTEM_EVENT_STA_CONNECTED does */
uint8_t self_layer; /**< layer */
} mesh_event_connected_t;
/**
* @brief no parent found information
*/
typedef struct {
int scan_times; /**< scan times being through */
} mesh_event_no_parent_found_t;
/**
* @brief layer change information
*/
typedef struct {
uint8_t new_layer; /**< new layer */
} mesh_event_layer_change_t;
/**
* @brief the reachability of root to a DS(distribute system)
*/
typedef enum {
MESH_TODS_UNREACHABLE, /**< root isn't able to access external IP network */
MESH_TODS_REACHABLE, /**< root is able to access external IP network */
} mesh_event_toDS_state_t;
/**
* @brief vote started information
*/
typedef struct {
int reason; /**< vote reason, vote could be initiated by children or by root itself */
int attempts; /**< max vote attempts before stopped */
mesh_addr_t rc_addr; /**< root address specified by users via API esp_mesh_waive_root() */
} mesh_event_vote_started_t;
/**
* @brief IP settings from LwIP stack
*/
typedef system_event_sta_got_ip_t mesh_event_root_got_ip_t;
/**
* @brief root address
*/
typedef mesh_addr_t mesh_event_root_address_t;
/**
* @brief parent disconnected information
*/
typedef system_event_sta_disconnected_t mesh_event_disconnected_t;
/**
* @brief child connected information
*/
typedef system_event_ap_staconnected_t mesh_event_child_connected_t;
/**
* @brief child disconnected information
*/
typedef system_event_ap_stadisconnected_t mesh_event_child_disconnected_t;
/**
* @brief root switch request information
*/
typedef struct {
int reason; /**< root switch reason, generally root switch is initialized by users via API esp_mesh_waive_root() */
mesh_addr_t rc_addr; /**< the address of root switch requester */
} mesh_event_root_switch_req_t;
/**
* @brief other powerful root address
*/
typedef struct {
int8_t rssi; /**< rssi with router */
uint16_t capacity; /**< the number of devices in current network */
uint8_t addr[6]; /**< other powerful root address */
} mesh_event_root_conflict_t;
/**
* @brief routing table change
*/
typedef struct {
uint16_t rt_size_new; /**< the new value */
uint16_t rt_size_change; /**< the changed value */
} mesh_event_routing_table_change_t;
/**
* @brief root fixed
*/
typedef struct {
bool is_fixed; /**< status */
} mesh_event_root_fixed_t;
/**
* @brief scan done event information
*/
typedef struct {
uint8_t number; /**< the number of scanned APs */
} mesh_event_scan_done_t;
/**
* @brief mesh event information
*/
typedef union {
mesh_event_channel_switch_t channel_switch; /**< channel switch */
mesh_event_child_connected_t child_connected; /**< child connected */
mesh_event_child_disconnected_t child_disconnected; /**< child disconnected */
mesh_event_routing_table_change_t routing_table; /**< routing table change */
mesh_event_connected_t connected; /**< parent connected */
mesh_event_disconnected_t disconnected; /**< parent disconnected */
mesh_event_no_parent_found_t no_parent; /**< no parent found */
mesh_event_layer_change_t layer_change; /**< layer change */
mesh_event_toDS_state_t toDS_state; /**< toDS state, devices shall check this state firstly before trying to send packets to
external IP network. This state indicates right now if root is capable of sending
packets out. If not, devices had better to wait until this state changes to be
MESH_TODS_REACHABLE. */
mesh_event_vote_started_t vote_started; /**< vote started */
mesh_event_root_got_ip_t got_ip; /**< root obtains IP address */
mesh_event_root_address_t root_addr; /**< root address */
mesh_event_root_switch_req_t switch_req; /**< root switch request */
mesh_event_root_conflict_t root_conflict; /**< other powerful root */
mesh_event_root_fixed_t root_fixed; /**< root fixed */
mesh_event_scan_done_t scan_done; /**< scan done */
} mesh_event_info_t;
/**
* @brief mesh event
*/
typedef struct {
mesh_event_id_t id; /**< mesh event id */
mesh_event_info_t info; /**< mesh event info */
} mesh_event_t;
/**
* @brief mesh event callback handler prototype definition
*
* @param event mesh_event_t
*/
typedef void (*mesh_event_cb_t)(mesh_event_t event);
/**
* @brief mesh option
*/
typedef struct {
uint8_t type; /**< option type */
uint16_t len; /**< option length */
uint8_t *val; /**< option value */
} __attribute__((packed)) mesh_opt_t;
/**
* @brief mesh data for esp_mesh_send() and esp_mesh_recv()
*/
typedef struct {
uint8_t *data; /**< data */
uint16_t size; /**< data size */
mesh_proto_t proto; /**< data protocol */
mesh_tos_t tos; /**< data type of service */
} mesh_data_t;
/**
* @brief router configuration
*/
typedef struct {
uint8_t ssid[32]; /**< SSID */
uint8_t ssid_len; /**< length of SSID */
uint8_t bssid[6]; /**< BSSID, if router is hidden, this value is mandatory */
uint8_t password[64]; /**< password */
} mesh_router_t;
/**
* @brief mesh softAP configuration
*/
typedef struct {
uint8_t password[64]; /**< mesh softAP password */
uint8_t max_connection; /**< max number of stations allowed to connect in, max 10 */
} mesh_ap_cfg_t;
/**
* @brief mesh initialization configuration
*/
typedef struct {
uint8_t channel; /**< channel, the mesh network on */
mesh_event_cb_t event_cb; /**< mesh event callback */
mesh_addr_t mesh_id; /**< mesh network identification */
mesh_router_t router; /**< router configuration */
mesh_ap_cfg_t mesh_ap; /**< mesh softAP configuration */
const mesh_crypto_funcs_t *crypto_funcs; /**< crypto functions */
} mesh_cfg_t;
/**
* @brief vote address configuration
*/
typedef union {
int attempts; /**< max vote attempts before a new root is elected automatically by mesh network. (min:15, 15 by default) */
mesh_addr_t rc_addr; /**< a new root address specified by users for API esp_mesh_waive_root() */
} mesh_rc_config_t;
/**
* @brief vote
*/
typedef struct {
float percentage; /**< vote percentage threshold for approval of being a root */
bool is_rc_specified; /**< if true, rc_addr shall be specified(Unimplemented).
if false, attempts value shall be specified to make network start root election. */
mesh_rc_config_t config; /**< vote address configuration */
} mesh_vote_t;
/**
* @brief the number of packets pending in the queue waiting to be sent by the mesh stack
*/
typedef struct {
int to_parent; /**< to parent queue */
int to_parent_p2p; /**< to parent(P2P) queue */
int to_child; /**< to child queue */
int to_child_p2p; /**< to child(P2P) queue */
int mgmt; /**< management queue */
int broadcast; /**< broadcast and multicast queue */
} mesh_tx_pending_t;
/**
* @brief the number of packets available in the queue waiting to be received by applications
*/
typedef struct {
int toDS; /**< to external DS */
int toSelf; /**< to self */
} mesh_rx_pending_t;
/*******************************************************
* Variable Declaration
*******************************************************/
/* mesh vendor IE crypto callback function */
extern const mesh_crypto_funcs_t g_wifi_default_mesh_crypto_funcs;
/* mesh event callback handler */
extern mesh_event_cb_t g_mesh_event_cb;
#define MESH_INIT_CONFIG_DEFAULT() { \
.crypto_funcs = &g_wifi_default_mesh_crypto_funcs, \
}
/*******************************************************
* Function Definitions
*******************************************************/
/**
* @brief mesh initialization
* Check if WiFi is started.
* Initialize mesh global variables with default values.
*
* @attention This API shall be called after WiFi is started.
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_init(void);
/**
* @brief mesh de-initialization
* Release resources and stop the mesh
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_deinit(void);
/**
* @brief start mesh
* Initialize mesh vendor IE
* Start mesh network management service
* Create TX and RX queues according to the configuration
* Register mesh packets receive callback
*
* @attention This API shall be called after esp_mesh_init() and esp_mesh_set_config().
*
* @return
* - ESP_OK
* - ESP_FAIL
* - ESP_ERR_MESH_NOT_INIT
* - ESP_ERR_MESH_NOT_CONFIG
* - ESP_ERR_MESH_NO_MEMORY
*/
esp_err_t esp_mesh_start(void);
/**
* @brief stop mesh
* Deinitialize mesh vendor IE
* Disconnect with current parent
* Disassociate all currently associated children
* Stop mesh network management service
* Unregister mesh packets receive callback
* Delete TX and RX queues
* Release resources
* Restore WiFi softAP to default settings if WiFi dual mode is enabled
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_stop(void);
/**
* @brief send a packet over the mesh network
* Send a packet to any device in the mesh network.
* Send a packet to external IP network.
*
* @attention This API is not reentrant.
*
* @param to the address of the final destination of the packet
* (1)if the packet is to root, just set "to" to NULL and set flag to zero.
* (2)if the packet is outgoing to external IP network such as an IP server address, translate IPv4:PORT known as "to".
* This packet will be delivered to root firstly, then root will forward this packet to the final IP server address.
* @param data pointer to a sending mesh packet
* Should specify the data protocol applications used, binary by default.
* Should specify the transmission tos(type of service), P2P reliable by default.
* @param flag
* (1)used to speed up the route selection
* if the packet is target to an internal device, MESH_DATA_P2P should be set.
* if the packet is outgoing to root or to external IP network, MESH_DATA_TODS should be set.
* if the packet is from root to an internal device, MESH_DATA_FROMDS should be set.
* (2)specify if this API is block or non-block, block by default
* if needs non-block, MESH_DATA_NONBLOCK should be set.
* (3)in the situation of root having been changed, MESH_DATA_DROP identifies this packet can be dropped by new root
* for upstream data to external IP network, we try our best to avoid data loss caused by root having been changed, but
* there is a risk that new root is running out of memory because most of memory is occupied by the pending data which
* isn't read out in time by esp_mesh_recv_toDS().
* Generally, we suggest esp_mesh_recv_toDS() is called after a connection with IP network is created. Thus data outgoing
* to external IP network via socket is just from reading esp_mesh_recv_toDS() which avoids unnecessary memory copy.
*
* @param opt options
* (1)in case of sending a packet to a specified group, MESH_OPT_SEND_GROUP is a good choice.
* In this option, the value field should specify the target receiver addresses in this group.
* (2)root sends a packet to an internal device, this packet is from external IP network in case the receiver device responds
* this packet, MESH_OPT_RECV_DS_ADDR is required to attach the target DS address.
* @param opt_count option count
* Currently, this API only takes one option, so opt_count is only supported to be 1.
*
* @return
* - ESP_OK
* - ESP_FAIL
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_START
* - ESP_ERR_MESH_DISCONNECTED
* - ESP_ERR_MESH_OPT_UNKNOWN
* - ESP_ERR_MESH_EXCEED_MTU
* - ESP_ERR_MESH_NO_MEMORY
* - ESP_ERR_MESH_TIMEOUT
* - ESP_ERR_MESH_QUEUE_FULL
* - ESP_ERR_MESH_NO_ROUTE_FOUND
* - ESP_ERR_MESH_DISCARD
*/
esp_err_t esp_mesh_send(const mesh_addr_t *to, const mesh_data_t *data,
int flag, const mesh_opt_t opt[], int opt_count);
/**
* @brief receive a packet targeted to self over the mesh network
* Use esp_mesh_get_rx_pending() to check the number of packets available in the queue waiting
* to be received by applications in case of running out of memory.
*
* @param from the address of the original source of the packet
* @param data pointer to the received mesh packet
* Contain the protocol and applications should follow it to parse the data.
* @param timeout_ms wait time if a packet isn't immediately available(0:no wait, portMAX_DELAY:wait forever)
* @param flag
* MESH_DATA_FROMDS represents data from external IP network
* MESH_DATA_TODS represents data directed upward within the mesh network
* @param opt options desired to receive
* MESH_OPT_RECV_DS_ADDR attaches the DS address
* @param opt_count option count desired to receive
* Currently, this API only takes one option, so opt_count is only supported to be 1.
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_START
* - ESP_ERR_MESH_TIMEOUT
* - ESP_ERR_MESH_DISCARD
*/
esp_err_t esp_mesh_recv(mesh_addr_t *from, mesh_data_t *data, int timeout_ms,
int *flag, mesh_opt_t opt[], int opt_count);
/**
* @brief receive a packet targeted to external IP network
* root uses this API to receive packets destined to external IP network
* root forwards the received packets to the final destination via socket.
* if no socket connection is ready to send out the received packets and this esp_mesh_recv_toDS()
* hasn't been called by applications, packets from the whole mesh network will be pending in toDS queue.
* Use esp_mesh_get_rx_pending() to check the number of packets available in the queue waiting
* to be received by applications in case of running out of memory in root.
* Use esp_mesh_set_xon_qsize() could configure the RX queue size, default:72. If this size is too large,
* and esp_mesh_recv_toDS() isn't called in time, there is a risk that a great deal of memory is occupied
* by the pending packets. If this size is too small, it will impact the efficiency on upstream. How to
* decide this value depends on the specific application scenarios.
*
* @attention This API is only called by root.
*
* @param from the address of the original source of the packet
* @param to the address contains remote IP address and port(IPv4:PORT)
* @param data pointer to the received packet
* Contain the protocol and applications should follow it to parse the data.
* @param timeout_ms wait time if a packet isn't immediately available(0:no wait, portMAX_DELAY:wait forever)
* @param flag
* MESH_DATA_TODS represents data to external IP network
* @param opt options desired to receive
* @param opt_count option count desired to receive
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_START
* - ESP_ERR_MESH_TIMEOUT
* - ESP_ERR_MESH_DISCARD
*/
esp_err_t esp_mesh_recv_toDS(mesh_addr_t *from, mesh_addr_t *to,
mesh_data_t *data, int timeout_ms, int *flag, mesh_opt_t opt[],
int opt_count);
/**
* @brief set mesh stack configuration
* Use MESH_INIT_CONFIG_DEFAULT() to initialize the default values, mesh vendor IE is encrypted by default.
* mesh network is established on a fixed channel(1-14).
* mesh event callback is mandatory.
* mesh ID is an identifier of an MBSS. Nodes with the same mesh ID can communicate with each other.
* Regarding to the router configuration, if the router is hidden, BSSID field is mandatory.
* If BSSID field isn't set and there exists more than one router with same SSID, there is a risk that more
* roots than one connected with different BSSID will appear. It means more than one mesh network is established
* with the same mesh ID.
* Root conflict function could eliminate redundant roots connected with the same BSSID, but couldn't handle roots
* connected with different BSSID. Because users might have such requirements of setting up routers with same SSID
* for the future replacement. But in that case, if the above situations happen, please make sure applications
* implement forward functions on root to guarantee devices in different mesh network can communicate with each other.
* max_connection of mesh softAP is limited by the max number of WiFi softAP supported(max:10).
*
* @attention This API shall be called between esp_mesh_init() and esp_mesh_start().
*
* @param config pointer to mesh stack configuration
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_ALLOWED
*/
esp_err_t esp_mesh_set_config(const mesh_cfg_t *config);
/**
* @brief get mesh stack configuration
*
* @param config pointer to mesh stack configuration
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
*/
esp_err_t esp_mesh_get_config(mesh_cfg_t *config);
/**
* @brief set router configuration
*
* @attention This API shall be called between esp_mesh_init() and esp_mesh_start().
*
* @param router pointer to router configuration
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
*/
esp_err_t esp_mesh_set_router(const mesh_router_t *router);
/**
* @brief get router configuration
*
* @param router pointer to router configuration
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
*/
esp_err_t esp_mesh_get_router(mesh_router_t *router);
/**
* @brief set mesh network ID
*
* @attention This API could be called either before esp_mesh_start() or after esp_mesh_start().
*
* @param id pointer to mesh network ID
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT: invalid argument
*/
esp_err_t esp_mesh_set_id(const mesh_addr_t *id);
/**
* @brief get mesh network ID
*
* @param id pointer to mesh network ID
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
*/
esp_err_t esp_mesh_get_id(mesh_addr_t *id);
/**
* @brief set device type over the mesh network(Unimplemented)
*
* @param type device type
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_NOT_ALLOWED
*/
esp_err_t esp_mesh_set_type(mesh_type_t type);
/**
* @brief get device type over mesh network
*
* @attention This API shall be called after having received the event MESH_EVENT_PARENT_CONNECTED.
*
* @return mesh type
*
*/
mesh_type_t esp_mesh_get_type(void);
/**
* @brief set max layer configuration(max:15, default:15)
*
* @attention This API shall be called before esp_mesh_start().
*
* @param max_layer max layer value
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_ALLOWED
*/
esp_err_t esp_mesh_set_max_layer(int max_layer);
/**
* @brief get max layer configuration
*
* @return max layer value
*/
int esp_mesh_get_max_layer(void);
/**
* @brief set mesh softAP password
*
* @attention This API shall be called before esp_mesh_start().
*
* @param pwd pointer to the password
* @param len password length
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_ALLOWED
*/
esp_err_t esp_mesh_set_ap_password(const uint8_t *pwd, int len);
/**
* @brief set mesh softAP authentication mode value
*
* @attention This API shall be called before esp_mesh_start().
*
* @param authmode authentication mode
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
* - ESP_ERR_MESH_NOT_ALLOWED
*/
esp_err_t esp_mesh_set_ap_authmode(wifi_auth_mode_t authmode);
/**
* @brief get mesh softAP authentication mode
*
* @return authentication mode
*
*/
wifi_auth_mode_t esp_mesh_get_ap_authmode(void);
/**
* @brief set mesh softAP max connection value
*
* @attention This API shall be called before esp_mesh_start().
*
* @param connections the number of max connections
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_ARGUMENT
*/
esp_err_t esp_mesh_set_ap_connections(int connections);
/**
* @brief get mesh softAP max connection configuration
*
* @return the number of max connections
*
*/
int esp_mesh_get_ap_connections(void);
/**
* @brief get current layer value over the mesh network
*
* @attention This API shall be called after having received the event MESH_EVENT_PARENT_CONNECTED.
*
* @return layer value
*
*/
int esp_mesh_get_layer(void);
/**
* @brief get parent BSSID
*
* @attention This API shall be called after having received the event MESH_EVENT_PARENT_CONNECTED.
*
* @param bssid pointer to parent BSSID
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_get_parent_bssid(mesh_addr_t *bssid);
/**
* @brief return if the device is root
*
* @return true/false
*
*/
bool esp_mesh_is_root(void);
/**
* @brief enable/disable mesh networking self-organized, self-organized by default
* if self-organized is disabled, users should set a parent for this device via
* esp_mesh_set_parent();
*
* @attention This API could be called either before esp_mesh_start() or after esp_mesh_start().
*
* @param enable enable or disable self-organized networking
* @param select_parent if enable self-organized networking, let the device select a new parent or
* keep connecting to the previous parent.
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_set_self_organized(bool enable, bool select_parent);
/**
* @brief return if mesh networking is self-organized or not
*
* @return true/false
*
*/
bool esp_mesh_get_self_organized(void);
/**
* @brief root waive itself
* A device is elected to be a root during the networking mostly because it has a strong RSSI with router.
* If such superior conditions change, users could call this API to perform a root switch.
*
* In this API, users could specify a desired root address to replace itself or specify an attempts value
* to ask current root to initiate a new round of voting. During the voting, a better root candidate would
* be expected to find to replace the current one.
* If no desired root candidate, the vote will try a specified attempts(at least 10 times), if no better
* root candidate is found, keep the current one. If a better candidate is found, the new better one will
* send a root switch request to the current root, current root will respond with a root switch acknowledgment.
* After that, the new candidate will connect to the router to be a new root, the previous root will disconnect
* with the router and choose another parent instead.
* So far, root switch is completed with minimal disruption to the whole mesh network.
*
* @attention This API is only called by root.
*
* @param vote vote configuration
* Specify a desired root address(Unimplemented)
* Attempts should be at least 10 times.
* if "vote" is set NULL, the vote will perform the default 10 times.
* @param reason only accept MESH_VOTE_REASON_ROOT_INITIATED for now
*
* @return
* - ESP_OK
* - ESP_ERR_MESH_QUEUE_FULL
* - ESP_ERR_MESH_DISCARD
* - ESP_FAIL
*/
esp_err_t esp_mesh_waive_root(const mesh_vote_t *vote, int reason);
/**
* @brief set vote percentage threshold for approval of being a root
* During the networking, only obtaining vote percentage reaches this threshold,
* the device could be a root.
*
* @attention This API shall be called before esp_mesh_start().
*
* @param percentage vote percentage threshold
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_set_vote_percentage(float percentage);
/**
* @brief get vote percentage threshold for approval of being a root
*
* @return percentage threshold
*/
float esp_mesh_get_vote_percentage(void);
/**
* @brief set mesh softAP associate expired time
* If mesh softAP hasn't received any data from an associated child within this time,
* mesh softAP will take this child inactive and disassociate it.
*
* @param seconds
*
* @return
* - ESP_OK
* - ESP_FAIL
*/
esp_err_t esp_mesh_set_ap_assoc_expire(int seconds);
/**
* @brief get mesh softAP associate expired time
*
* @return seconds
*/
int esp_mesh_get_ap_assoc_expire(void);