Select one of the symbols to view example projects that use it.
 
Outline
#include <stdint.h>
#include <string.h>
#include <errno.h>
#include "adv.h"
#include "mesh.h"
#include "mesh/hci.h"
#include "mesh/kernel.h"
#include "mesh/common.h"
#include "beacon.h"
#include "prov_node.h"
#include "foundation.h"
#include "proxy_server.h"
#include "proxy_client.h"
#include "prov_pvnr.h"
#include "mesh/adapter.h"
#define ADV_SCAN_UNIT
#define ADV_SCAN_INT
#define ADV_ITVL_MIN
#define ADV_ITVL_MIN
adv_type
net_buf_adv_buf_pool
net_buf_data_adv_buf_pool
net_buf_fixed_adv_buf_pool
net_buf_fixed_alloc_adv_buf_pool
adv_buf_pool
adv_pool
bt_mesh_queue
adv_queue
#define BLE_MESH_ADV_QUEUE_SIZE
#define BLE_MESH_ADV_QUEUE_SIZE
#define BLE_MESH_RELAY_QUEUE_SIZE
#define BLE_MESH_QUEUE_SET_SIZE
#define BLE_MESH_RELAY_TIME_INTERVAL
#define BLE_MESH_MAX_TIME_INTERVAL
#define SEND_BLE_ADV_INFINITE
bt_mesh_adv_task
adv_task
adv_alloc(int)
adv_send_start(uint16_t, int, const struct bt_mesh_send_cb *, void *)
adv_send_end(int, const struct bt_mesh_send_cb *, void *)
bt_mesh_pdu_duration(uint8_t)
adv_send(struct net_buf *)
K_WAIT(int32_t)
adv_thread(void *)
bt_mesh_adv_create_from_pool(struct net_buf_pool *, bt_mesh_adv_alloc_t, enum bt_mesh_adv_type, int32_t)
bt_mesh_unref_buf_from_pool(struct net_buf_pool *)
bt_mesh_adv_create(enum bt_mesh_adv_type, int32_t)
bt_mesh_adv_buf_ref_debug(const char *, struct net_buf *, uint8_t, bt_mesh_buf_ref_flag_t)
bt_mesh_unref_buf(bt_mesh_msg_t *)
bt_mesh_task_post(bt_mesh_msg_t *, uint32_t, bool)
bt_mesh_adv_send(struct net_buf *, uint8_t, const struct bt_mesh_send_cb *, void *)
bt_mesh_adv_update()
bt_mesh_adv_init()
bt_mesh_adv_deinit()
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bt/esp_ble_mesh/core/adv.c
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Bluetooth Mesh */ /* * SPDX-FileCopyrightText: 2017 Intel Corporation * SPDX-FileContributor: 2018-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #include <stdint.h> #include <string.h> #include <errno.h> #include "adv.h" #include "mesh.h" #include "mesh/hci.h" #include "mesh/kernel.h" #include "mesh/common.h" #include "beacon.h" #include "prov_node.h" #include "foundation.h" #include "proxy_server.h" #include "proxy_client.h" #include "prov_pvnr.h" #include "mesh/adapter.h"15 includes /* Convert from ms to 0.625ms units */ #define ADV_SCAN_UNIT(_ms) ((_ms) * 8 / 5) /* Convert from 0.625ms units to interval(ms) */ #define ADV_SCAN_INT(val) ((val) * 5 / 8) /* Pre-5.0 controllers enforce a minimum interval of 100ms * whereas 5.0+ controllers can go down to 20ms. *//* ... */ #if CONFIG_BLE_MESH_HCI_5_0 #define ADV_ITVL_MIN 20 #else #define ADV_ITVL_MIN 100 #endif static const uint8_t adv_type[] = { [BLE_MESH_ADV_PROV] = BLE_MESH_DATA_MESH_PROV, [BLE_MESH_ADV_DATA] = BLE_MESH_DATA_MESH_MESSAGE, [BLE_MESH_ADV_BEACON] = BLE_MESH_DATA_MESH_BEACON, [BLE_MESH_ADV_URI] = BLE_MESH_DATA_URI, }{...}; NET_BUF_POOL_DEFINE(adv_buf_pool, CONFIG_BLE_MESH_ADV_BUF_COUNT, BLE_MESH_ADV_DATA_SIZE, BLE_MESH_ADV_USER_DATA_SIZE, NULL); static struct bt_mesh_adv adv_pool[CONFIG_BLE_MESH_ADV_BUF_COUNT]; struct bt_mesh_queue { QueueHandle_t handle; #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC StaticQueue_t *buffer; uint8_t *storage;/* ... */ #endif }{ ... }; static struct bt_mesh_queue adv_queue; /* We reserve one queue item for bt_mesh_adv_update() */ #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV #define BLE_MESH_ADV_QUEUE_SIZE (CONFIG_BLE_MESH_ADV_BUF_COUNT + CONFIG_BLE_MESH_BLE_ADV_BUF_COUNT + 1) #else #define BLE_MESH_ADV_QUEUE_SIZE (CONFIG_BLE_MESH_ADV_BUF_COUNT + 1) #endif #if CONFIG_BLE_MESH_RELAY_ADV_BUF NET_BUF_POOL_DEFINE(relay_adv_buf_pool, CONFIG_BLE_MESH_RELAY_ADV_BUF_COUNT, BLE_MESH_ADV_DATA_SIZE, BLE_MESH_ADV_USER_DATA_SIZE, NULL); static struct bt_mesh_adv relay_adv_pool[CONFIG_BLE_MESH_RELAY_ADV_BUF_COUNT]; static struct bt_mesh_queue relay_queue; #define BLE_MESH_RELAY_QUEUE_SIZE CONFIG_BLE_MESH_RELAY_ADV_BUF_COUNT static QueueSetHandle_t mesh_queue_set; #define BLE_MESH_QUEUE_SET_SIZE (BLE_MESH_ADV_QUEUE_SIZE + BLE_MESH_RELAY_QUEUE_SIZE) #define BLE_MESH_RELAY_TIME_INTERVAL K_SECONDS(6) #define BLE_MESH_MAX_TIME_INTERVAL 0xFFFFFFFF static bool ignore_relay_packet(uint32_t timestamp);/* ... */ #endif /* CONFIG_BLE_MESH_RELAY_ADV_BUF */ #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV /* length + advertising data + length + scan response data */ NET_BUF_POOL_DEFINE(ble_adv_buf_pool, CONFIG_BLE_MESH_BLE_ADV_BUF_COUNT, ((BLE_MESH_ADV_DATA_SIZE + 3) << 1), BLE_MESH_ADV_USER_DATA_SIZE, NULL); static struct bt_mesh_adv ble_adv_pool[CONFIG_BLE_MESH_BLE_ADV_BUF_COUNT]; enum { TIMER_INIT, /* Resend timer is initialized */ NUM_FLAGS, }{...}; static struct ble_adv_tx { struct bt_mesh_ble_adv_param param; struct net_buf *buf; struct k_delayed_work resend; BLE_MESH_ATOMIC_DEFINE(flags, NUM_FLAGS); }{...} ble_adv_tx[CONFIG_BLE_MESH_BLE_ADV_BUF_COUNT]; #define SEND_BLE_ADV_INFINITE 0xFFFF #if CONFIG_BLE_MESH_DEINIT static void bt_mesh_ble_adv_deinit(void); #endif /* CONFIG_BLE_MESH_DEINIT *//* ... */ #endif /* CONFIG_BLE_MESH_SUPPORT_BLE_ADV */ struct bt_mesh_adv_task { TaskHandle_t handle; #if (CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL && \ (CONFIG_SPIRAM_CACHE_WORKAROUND || !CONFIG_IDF_TARGET_ESP32) && \ CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY) StaticTask_t *task; StackType_t *stack;/* ... */ #endif }{ ... }; static struct bt_mesh_adv_task adv_task; static struct bt_mesh_adv *adv_alloc(int id) { return &adv_pool[id]; }{ ... } static inline void adv_send_start(uint16_t duration, int err, const struct bt_mesh_send_cb *cb, void *cb_data) { if (cb && cb->start) { cb->start(duration, err, cb_data); }{...} }{ ... } static inline void adv_send_end(int err, const struct bt_mesh_send_cb *cb, void *cb_data) { if (cb && cb->end) { cb->end(err, cb_data); }{...} }{ ... } uint16_t bt_mesh_pdu_duration(uint8_t xmit) { uint16_t duration = 0U; uint16_t adv_int = 0U; adv_int = MAX(ADV_ITVL_MIN, BLE_MESH_TRANSMIT_INT(xmit)); duration = (BLE_MESH_TRANSMIT_COUNT(xmit) + 1) * (adv_int + 10); return duration; }{ ... } static inline int adv_send(struct net_buf *buf) { const struct bt_mesh_send_cb *cb = BLE_MESH_ADV(buf)->cb; void *cb_data = BLE_MESH_ADV(buf)->cb_data; struct bt_mesh_adv_param param = {0}; uint16_t duration = 0U, adv_int = 0U; struct bt_mesh_adv_data ad = {0}; int err = 0; BT_DBG("type %u len %u: %s", BLE_MESH_ADV(buf)->type, buf->len, bt_hex(buf->data, buf->len)); #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV if (BLE_MESH_ADV(buf)->type != BLE_MESH_ADV_BLE) { #endif adv_int = MAX(ADV_ITVL_MIN, BLE_MESH_TRANSMIT_INT(BLE_MESH_ADV(buf)->xmit)); duration = (BLE_MESH_TRANSMIT_COUNT(BLE_MESH_ADV(buf)->xmit) + 1) * (adv_int + 10); BT_DBG("count %u interval %ums duration %ums", BLE_MESH_TRANSMIT_COUNT(BLE_MESH_ADV(buf)->xmit) + 1, adv_int, duration); ad.type = adv_type[BLE_MESH_ADV(buf)->type]; ad.data_len = buf->len; ad.data = buf->data; param.options = 0U; param.interval_min = ADV_SCAN_UNIT(adv_int); param.interval_max = param.interval_min; #if CONFIG_BLE_MESH_PROXY_SOLIC_PDU_TX if (BLE_MESH_ADV(buf)->type == BLE_MESH_ADV_PROXY_SOLIC) { bt_mesh_adv_buf_ref_debug(__func__, buf, 3U, BLE_MESH_BUF_REF_SMALL); struct bt_mesh_adv_data solic_ad[3] = { BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_FLAGS, (BLE_MESH_AD_GENERAL | BLE_MESH_AD_NO_BREDR)), BLE_MESH_ADV_DATA_BYTES(BLE_MESH_DATA_UUID16_ALL, 0x59, 0x18), BLE_MESH_ADV_DATA(BLE_MESH_DATA_SVC_DATA16, buf->data, buf->len), }{...}; err = bt_le_adv_start(&param, solic_ad, 3, NULL, 0); }{...} else #endif { bt_mesh_adv_buf_ref_debug(__func__, buf, 4U, BLE_MESH_BUF_REF_SMALL); err = bt_le_adv_start(&param, &ad, 1, NULL, 0); }{...} #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV }{...} else { struct bt_mesh_ble_adv_data data = {0}; struct ble_adv_tx *tx = cb_data; if (tx == NULL) { BT_ERR("Invalid adv user data"); net_buf_unref(buf); return -EINVAL; }{...} BT_DBG("interval %dms, duration %dms, period %dms, count %d", ADV_SCAN_INT(tx->param.interval), tx->param.duration, tx->param.period, tx->param.count); data.adv_data_len = tx->buf->data[0]; if (data.adv_data_len) { memcpy(data.adv_data, tx->buf->data + 1, data.adv_data_len); }{...} data.scan_rsp_data_len = tx->buf->data[data.adv_data_len + 1]; if (data.scan_rsp_data_len) { memcpy(data.scan_rsp_data, tx->buf->data + data.adv_data_len + 2, data.scan_rsp_data_len); }{...} duration = tx->param.duration; bt_mesh_adv_buf_ref_debug(__func__, buf, 3U, BLE_MESH_BUF_REF_SMALL); err = bt_mesh_ble_adv_start(&tx->param, &data); }{...} #endif /* CONFIG_BLE_MESH_SUPPORT_BLE_ADV */ net_buf_unref(buf); adv_send_start(duration, err, cb, cb_data); if (err) { BT_ERR("Start advertising failed: err %d", err); return err; }{...} BT_DBG("Advertising started. Sleeping %u ms", duration); k_sleep(K_MSEC(duration)); err = bt_le_adv_stop(); adv_send_end(err, cb, cb_data); if (err) { BT_ERR("Stop advertising failed: err %d", err); return 0; }{...} BT_DBG("Advertising stopped"); return 0; }{ ... } static inline TickType_t K_WAIT(int32_t val) { return (val == K_FOREVER) ? portMAX_DELAY : (val / portTICK_PERIOD_MS); }{ ... } static void adv_thread(void *p) { #if CONFIG_BLE_MESH_RELAY_ADV_BUF QueueSetMemberHandle_t handle = NULL; #endif bt_mesh_msg_t msg = {0}; struct net_buf **buf = NULL; buf = (struct net_buf **)(&msg.arg); BT_DBG("%s, starts", __func__); while (1) { *buf = NULL; #if !CONFIG_BLE_MESH_RELAY_ADV_BUF #if (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || \ CONFIG_BLE_MESH_GATT_PROXY_SERVER xQueueReceive(adv_queue.handle, &msg, K_NO_WAIT); while (!(*buf)) { int32_t timeout = 0; BT_DBG("Mesh Proxy Advertising start"); timeout = bt_mesh_proxy_server_adv_start(); BT_DBG("Mesh Proxy Advertising up to %d ms", timeout); xQueueReceive(adv_queue.handle, &msg, K_WAIT(timeout)); BT_DBG("Mesh Proxy Advertising stop"); bt_mesh_proxy_server_adv_stop(); }{...} #else/* ... */ xQueueReceive(adv_queue.handle, &msg, portMAX_DELAY); #endif /* (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || CONFIG_BLE_MESH_GATT_PROXY_SERVER *//* ... */ #else /* !CONFIG_BLE_MESH_RELAY_ADV_BUF */ #if (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || \ CONFIG_BLE_MESH_GATT_PROXY_SERVER handle = xQueueSelectFromSet(mesh_queue_set, K_NO_WAIT); if (handle) { if (uxQueueMessagesWaiting(adv_queue.handle)) { xQueueReceive(adv_queue.handle, &msg, K_NO_WAIT); }{...} else if (uxQueueMessagesWaiting(relay_queue.handle)) { xQueueReceive(relay_queue.handle, &msg, K_NO_WAIT); }{...} }{...} else { while (!(*buf)) { int32_t timeout = 0; BT_DBG("Mesh Proxy Advertising start"); timeout = bt_mesh_proxy_server_adv_start(); BT_DBG("Mesh Proxy Advertising up to %d ms", timeout); handle = xQueueSelectFromSet(mesh_queue_set, K_WAIT(timeout)); BT_DBG("Mesh Proxy Advertising stop"); bt_mesh_proxy_server_adv_stop(); if (handle) { if (uxQueueMessagesWaiting(adv_queue.handle)) { xQueueReceive(adv_queue.handle, &msg, K_NO_WAIT); }{...} else if (uxQueueMessagesWaiting(relay_queue.handle)) { xQueueReceive(relay_queue.handle, &msg, K_NO_WAIT); }{...} }{...} }{...} }{...} #else/* ... */ handle = xQueueSelectFromSet(mesh_queue_set, portMAX_DELAY); if (handle) { if (uxQueueMessagesWaiting(adv_queue.handle)) { xQueueReceive(adv_queue.handle, &msg, K_NO_WAIT); }{...} else if (uxQueueMessagesWaiting(relay_queue.handle)) { xQueueReceive(relay_queue.handle, &msg, K_NO_WAIT); }{...} }{...} #endif/* ... */ /* (CONFIG_BLE_MESH_NODE && CONFIG_BLE_MESH_PB_GATT) || CONFIG_BLE_MESH_GATT_PROXY_SERVER *//* ... */ #endif /* !CONFIG_BLE_MESH_RELAY_ADV_BUF */ if (*buf == NULL) { continue; }{...} /* busy == 0 means this was canceled */ if (bt_mesh_atomic_cas(&BLE_MESH_ADV_BUSY(*buf), 1, 0)) { #if !CONFIG_BLE_MESH_RELAY_ADV_BUF if (adv_send(*buf)) { BT_WARN("Failed to send adv packet"); }{...} #else/* ... */ /* !CONFIG_BLE_MESH_RELAY_ADV_BUF */ if (msg.relay && ignore_relay_packet(msg.timestamp)) { /* If the interval between "current time - msg.timestamp" is bigger than * BLE_MESH_RELAY_TIME_INTERVAL, this relay packet will not be sent. *//* ... */ BT_INFO("Ignore relay packet"); net_buf_unref(*buf); }{...} else { if (adv_send(*buf)) { BT_WARN("Failed to send adv packet"); }{...} }{...} #endif/* ... */ /* !CONFIG_BLE_MESH_RELAY_ADV_BUF */ }{...} else { bt_mesh_adv_buf_ref_debug(__func__, *buf, 1U, BLE_MESH_BUF_REF_EQUAL); net_buf_unref(*buf); }{...} /* Give other threads a chance to run */ taskYIELD(); }{...} }{ ... } struct net_buf *bt_mesh_adv_create_from_pool(struct net_buf_pool *pool, bt_mesh_adv_alloc_t get_id, enum bt_mesh_adv_type type, int32_t timeout) { struct bt_mesh_adv *adv = NULL; struct net_buf *buf = NULL; if (bt_mesh_atomic_test_bit(bt_mesh.flags, BLE_MESH_SUSPENDED)) { BT_WARN("Refusing to allocate buffer while suspended"); return NULL; }{...} buf = net_buf_alloc(pool, timeout); if (!buf) { return NULL; }{...} BT_DBG("pool %p, buf_count %d, uinit_count %d", buf->pool, pool->buf_count, pool->uninit_count); adv = get_id(net_buf_id(buf)); BLE_MESH_ADV(buf) = adv; (void)memset(adv, 0, sizeof(*adv)); adv->type = type; return buf; }{ ... } void bt_mesh_unref_buf_from_pool(struct net_buf_pool *pool) { int i; if (pool == NULL) { BT_ERR("%s, Invalid parameter", __func__); return; }{...} for (i = 0; i < pool->buf_count; i++) { struct net_buf *buf = &pool->__bufs[i]; if (buf->ref > 1U) { buf->ref = 1U; }{...} net_buf_unref(buf); }{...} }{ ... } struct net_buf *bt_mesh_adv_create(enum bt_mesh_adv_type type, int32_t timeout) { return bt_mesh_adv_create_from_pool(&adv_buf_pool, adv_alloc, type, timeout); }{ ... } void bt_mesh_adv_buf_ref_debug(const char *func, struct net_buf *buf, uint8_t ref_cmp, bt_mesh_buf_ref_flag_t flag) { if (buf == NULL || func == NULL || flag >= BLE_MESH_BUF_REF_MAX) { BT_ERR("%s, Invalid parameter", __func__); return; }{...} switch (flag) { case BLE_MESH_BUF_REF_EQUAL: if (buf->ref != ref_cmp) { BT_ERR("Unexpected ref %d in %s, expect to equal to %d", buf->ref, func, ref_cmp); }{...} break;... case BLE_MESH_BUF_REF_SMALL: if (buf->ref >= ref_cmp) { BT_ERR("Unexpected ref %d in %s, expect to smaller than %d", buf->ref, func, ref_cmp); }{...} break;... default: break;... }{...} }{ ... } static void bt_mesh_unref_buf(bt_mesh_msg_t *msg) { struct net_buf *buf = NULL; if (msg->arg) { buf = (struct net_buf *)msg->arg; bt_mesh_atomic_set(&BLE_MESH_ADV_BUSY(buf), 0); if (buf->ref > 1U) { buf->ref = 1U; }{...} net_buf_unref(buf); }{...} }{ ... } static void bt_mesh_task_post(bt_mesh_msg_t *msg, uint32_t timeout, bool front) { if (adv_queue.handle == NULL) { BT_ERR("Invalid adv queue"); return; }{...} if (front) { if (xQueueSendToFront(adv_queue.handle, msg, timeout) != pdTRUE) { BT_ERR("Failed to send item to adv queue front"); bt_mesh_unref_buf(msg); }{...} }{...} else { if (xQueueSend(adv_queue.handle, msg, timeout) != pdTRUE) { BT_ERR("Failed to send item to adv queue back"); bt_mesh_unref_buf(msg); }{...} }{...} }{ ... } void bt_mesh_adv_send(struct net_buf *buf, uint8_t xmit, const struct bt_mesh_send_cb *cb, void *cb_data) { bt_mesh_msg_t msg = { .relay = false, }{...}; BT_DBG("type 0x%02x len %u: %s", BLE_MESH_ADV(buf)->type, buf->len, bt_hex(buf->data, buf->len)); BLE_MESH_ADV(buf)->cb = cb; BLE_MESH_ADV(buf)->cb_data = cb_data; bt_mesh_atomic_set(&BLE_MESH_ADV_BUSY(buf), 1); BLE_MESH_ADV(buf)->xmit = xmit; bt_mesh_adv_buf_ref_debug(__func__, buf, 3U, BLE_MESH_BUF_REF_SMALL); msg.arg = (void *)net_buf_ref(buf); bt_mesh_task_post(&msg, portMAX_DELAY, false); }{ ... } void bt_mesh_adv_update(void) { bt_mesh_msg_t msg = { .relay = false, .arg = NULL, }{...}; bt_mesh_task_post(&msg, K_NO_WAIT, false); }{ ... } #if CONFIG_BLE_MESH_RELAY_ADV_BUF static bool ignore_relay_packet(uint32_t timestamp) { uint32_t now = k_uptime_get_32(); uint32_t interval = 0U; if (now >= timestamp) { interval = now - timestamp; }{...} else { interval = BLE_MESH_MAX_TIME_INTERVAL - (timestamp - now) + 1; }{...} return (interval >= BLE_MESH_RELAY_TIME_INTERVAL) ? true : false; }{...} static struct bt_mesh_adv *relay_adv_alloc(int id) { return &relay_adv_pool[id]; }{...} struct net_buf *bt_mesh_relay_adv_create(enum bt_mesh_adv_type type, int32_t timeout) { return bt_mesh_adv_create_from_pool(&relay_adv_buf_pool, relay_adv_alloc, type, timeout); }{...} static void ble_mesh_relay_task_post(bt_mesh_msg_t *msg, uint32_t timeout) { QueueSetMemberHandle_t handle = NULL; bt_mesh_msg_t old_msg = {0}; if (relay_queue.handle == NULL) { BT_ERR("Invalid relay queue"); return; }{...} if (xQueueSend(relay_queue.handle, msg, timeout) == pdTRUE) { return; }{...} /* If failed to send packet to the relay queue(queue is full), we will * remove the oldest packet in the queue and put the new one into it. *//* ... */ handle = xQueueSelectFromSet(mesh_queue_set, K_NO_WAIT); if (handle && uxQueueMessagesWaiting(relay_queue.handle)) { BT_INFO("Full queue, remove the oldest relay packet"); /* Remove the oldest relay packet from queue */ if (xQueueReceive(relay_queue.handle, &old_msg, K_NO_WAIT) != pdTRUE) { BT_ERR("Failed to remove item from relay queue"); bt_mesh_unref_buf(msg); return; }{...} /* Unref buf used for the oldest relay packet */ bt_mesh_unref_buf(&old_msg); /* Send the latest relay packet to queue */ if (xQueueSend(relay_queue.handle, msg, K_NO_WAIT) != pdTRUE) { BT_ERR("Failed to send item to relay queue"); bt_mesh_unref_buf(msg); return; }{...} }{...} else { BT_WARN("Empty queue, but failed to send the relay packet"); bt_mesh_unref_buf(msg); }{...} }{...} void bt_mesh_relay_adv_send(struct net_buf *buf, uint8_t xmit, uint16_t src, uint16_t dst, const struct bt_mesh_send_cb *cb, void *cb_data) { bt_mesh_msg_t msg = { .relay = true, }{...}; BT_DBG("type 0x%02x len %u: %s", BLE_MESH_ADV(buf)->type, buf->len, bt_hex(buf->data, buf->len)); BLE_MESH_ADV(buf)->cb = cb; BLE_MESH_ADV(buf)->cb_data = cb_data; bt_mesh_atomic_set(&BLE_MESH_ADV_BUSY(buf), 1); BLE_MESH_ADV(buf)->xmit = xmit; msg.arg = (void *)net_buf_ref(buf); msg.src = src; msg.dst = dst; msg.timestamp = k_uptime_get_32(); /* Use K_NO_WAIT here, if relay_queue is full return immediately */ ble_mesh_relay_task_post(&msg, K_NO_WAIT); }{...} uint16_t bt_mesh_get_stored_relay_count(void) { return (uint16_t)uxQueueMessagesWaiting(relay_queue.handle); }{...} /* ... */#endif /* #if CONFIG_BLE_MESH_RELAY_ADV_BUF */ void bt_mesh_adv_init(void) { #if !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC adv_queue.handle = xQueueCreate(BLE_MESH_ADV_QUEUE_SIZE, sizeof(bt_mesh_msg_t)); __ASSERT(adv_queue.handle, "Failed to create queue");/* ... */ #else /* !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL adv_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #elif CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT adv_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_INTERNAL|MALLOC_CAP_IRAM_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #endif __ASSERT(adv_queue.buffer, "Failed to create queue buffer"); #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL adv_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_ADV_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #elif CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT adv_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_ADV_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), 2, MALLOC_CAP_INTERNAL|MALLOC_CAP_IRAM_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #endif __ASSERT(adv_queue.storage, "Failed to create queue storage"); adv_queue.handle = xQueueCreateStatic(BLE_MESH_ADV_QUEUE_SIZE, sizeof(bt_mesh_msg_t), (uint8_t*)adv_queue.storage, adv_queue.buffer); __ASSERT(adv_queue.handle, "Failed to create static queue");/* ... */ #endif /* !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ #if CONFIG_BLE_MESH_RELAY_ADV_BUF #if !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC relay_queue.handle = xQueueCreate(BLE_MESH_RELAY_QUEUE_SIZE, sizeof(bt_mesh_msg_t)); __ASSERT(relay_queue.handle, "Failed to create relay queue");/* ... */ #else /* !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL relay_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #elif CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT relay_queue.buffer = heap_caps_calloc_prefer(1, sizeof(StaticQueue_t), 2, MALLOC_CAP_INTERNAL|MALLOC_CAP_IRAM_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #endif __ASSERT(relay_queue.buffer, "Failed to create relay queue buffer"); #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL relay_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_RELAY_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #elif CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_IRAM_8BIT relay_queue.storage = heap_caps_calloc_prefer(1, (BLE_MESH_RELAY_QUEUE_SIZE * sizeof(bt_mesh_msg_t)), 2, MALLOC_CAP_INTERNAL|MALLOC_CAP_IRAM_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); #endif __ASSERT(relay_queue.storage, "Failed to create relay queue storage"); relay_queue.handle = xQueueCreateStatic(BLE_MESH_RELAY_QUEUE_SIZE, sizeof(bt_mesh_msg_t), (uint8_t*)relay_queue.storage, relay_queue.buffer); __ASSERT(relay_queue.handle, "Failed to create static relay queue");/* ... */ #endif /* !CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ mesh_queue_set = xQueueCreateSet(BLE_MESH_QUEUE_SET_SIZE); __ASSERT(mesh_queue_set, "Failed to create queue set"); xQueueAddToSet(adv_queue.handle, mesh_queue_set); xQueueAddToSet(relay_queue.handle, mesh_queue_set);/* ... */ #endif /* CONFIG_BLE_MESH_RELAY_ADV_BUF */ #if (CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL && \ (CONFIG_SPIRAM_CACHE_WORKAROUND || !CONFIG_IDF_TARGET_ESP32) && \ CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY) adv_task.task = heap_caps_calloc(1, sizeof(StaticTask_t), MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); __ASSERT(adv_task.task, "Failed to create adv thread task"); adv_task.stack = heap_caps_calloc_prefer(1, BLE_MESH_ADV_TASK_STACK_SIZE * sizeof(StackType_t), 2, MALLOC_CAP_SPIRAM|MALLOC_CAP_8BIT, MALLOC_CAP_INTERNAL|MALLOC_CAP_8BIT); __ASSERT(adv_task.stack, "Failed to create adv thread stack"); adv_task.handle = xTaskCreateStaticPinnedToCore(adv_thread, BLE_MESH_ADV_TASK_NAME, BLE_MESH_ADV_TASK_STACK_SIZE, NULL, BLE_MESH_ADV_TASK_PRIO, adv_task.stack, adv_task.task, BLE_MESH_ADV_TASK_CORE); __ASSERT(adv_task.handle, "Failed to create static adv thread");/* ... */ #else /* CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL && (CONFIG_SPIRAM_CACHE_WORKAROUND || !CONFIG_IDF_TARGET_ESP32) && CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY */ int ret = xTaskCreatePinnedToCore(adv_thread, BLE_MESH_ADV_TASK_NAME, BLE_MESH_ADV_TASK_STACK_SIZE, NULL, BLE_MESH_ADV_TASK_PRIO, &adv_task.handle, BLE_MESH_ADV_TASK_CORE); __ASSERT(ret == pdTRUE, "Failed to create adv thread"); (void)ret;/* ... */ #endif /* CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL && (CONFIG_SPIRAM_CACHE_WORKAROUND || !CONFIG_IDF_TARGET_ESP32) && CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY */ }{ ... } #if CONFIG_BLE_MESH_DEINIT void bt_mesh_adv_deinit(void) { if (adv_queue.handle == NULL) { return; }{...} vTaskDelete(adv_task.handle); adv_task.handle = NULL; #if (CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC_EXTERNAL && \ (CONFIG_SPIRAM_CACHE_WORKAROUND || !CONFIG_IDF_TARGET_ESP32) && \ CONFIG_SPIRAM_ALLOW_STACK_EXTERNAL_MEMORY) heap_caps_free(adv_task.stack); adv_task.stack = NULL; heap_caps_free(adv_task.task); adv_task.task = NULL;/* ... */ #endif #if CONFIG_BLE_MESH_RELAY_ADV_BUF xQueueRemoveFromSet(adv_queue.handle, mesh_queue_set); xQueueRemoveFromSet(relay_queue.handle, mesh_queue_set); vQueueDelete(relay_queue.handle); relay_queue.handle = NULL; #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC heap_caps_free(relay_queue.buffer); relay_queue.buffer = NULL; heap_caps_free(relay_queue.storage); relay_queue.storage = NULL;/* ... */ #endif /* CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ bt_mesh_unref_buf_from_pool(&relay_adv_buf_pool); memset(relay_adv_pool, 0, sizeof(relay_adv_pool)); vQueueDelete(mesh_queue_set); mesh_queue_set = NULL;/* ... */ #endif /* CONFIG_BLE_MESH_RELAY_ADV_BUF */ vQueueDelete(adv_queue.handle); adv_queue.handle = NULL; #if CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC heap_caps_free(adv_queue.buffer); adv_queue.buffer = NULL; heap_caps_free(adv_queue.storage); adv_queue.storage = NULL;/* ... */ #endif /* CONFIG_BLE_MESH_FREERTOS_STATIC_ALLOC */ bt_mesh_unref_buf_from_pool(&adv_buf_pool); memset(adv_pool, 0, sizeof(adv_pool)); #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV bt_mesh_ble_adv_deinit(); #endif /* CONFIG_BLE_MESH_SUPPORT_BLE_ADV */ }{ ... } /* ... */#endif /* CONFIG_BLE_MESH_DEINIT */ #if CONFIG_BLE_MESH_SUPPORT_BLE_ADV static struct bt_mesh_adv *ble_adv_alloc(int id) { return &ble_adv_pool[id]; }{...} static struct net_buf *bt_mesh_ble_adv_create(enum bt_mesh_adv_type type, int32_t timeout) { return bt_mesh_adv_create_from_pool(&ble_adv_buf_pool, ble_adv_alloc, type, timeout); }{...} static void bt_mesh_ble_adv_send(struct net_buf *buf, const struct bt_mesh_send_cb *cb, void *cb_data, bool front) { bt_mesh_msg_t msg = { .relay = false, }{...}; BT_DBG("type 0x%02x len %u: %s", BLE_MESH_ADV(buf)->type, buf->len, bt_hex(buf->data, buf->len)); BLE_MESH_ADV(buf)->cb = cb; BLE_MESH_ADV(buf)->cb_data = cb_data; bt_mesh_atomic_set(&BLE_MESH_ADV_BUSY(buf), 1); bt_mesh_adv_buf_ref_debug(__func__, buf, 3U, BLE_MESH_BUF_REF_SMALL); msg.arg = (void *)net_buf_ref(buf); bt_mesh_task_post(&msg, portMAX_DELAY, front); }{...} static void ble_adv_tx_reset(struct ble_adv_tx *tx, bool unref) { if (tx->buf == NULL) { return; }{...} if (bt_mesh_atomic_test_bit(tx->flags, TIMER_INIT)) { k_delayed_work_free(&tx->resend); }{...} bt_mesh_atomic_set(tx->flags, 0); memset(&tx->param, 0, sizeof(tx->param)); bt_mesh_atomic_set(&BLE_MESH_ADV_BUSY(tx->buf), 0); if (unref) { net_buf_unref(tx->buf); }{...} tx->buf = NULL; }{...} static void ble_adv_send_start(uint16_t duration, int err, void *cb_data) { struct ble_adv_tx *tx = cb_data; BT_DBG("%s, duration %d, err %d", __func__, duration, err); /* If failed to send BLE adv packet, and param->count is not 0 * which means the timer has been initialized, here we need to * free the timer. *//* ... */ if (err) { ble_adv_tx_reset(tx, true); }{...} }{...} static void ble_adv_send_end(int err, void *cb_data) { struct ble_adv_tx *tx = cb_data; BT_DBG("%s, err %d", __func__, err); if (err) { ble_adv_tx_reset(tx, true); return; }{...} if (tx->param.count) { k_delayed_work_submit(&tx->resend, tx->param.period); }{...} else { ble_adv_tx_reset(tx, true); }{...} }{...} static struct bt_mesh_send_cb ble_adv_send_cb = { .start = ble_adv_send_start, .end = ble_adv_send_end, }{...}; static void ble_adv_resend(struct k_work *work) { struct ble_adv_tx *tx = CONTAINER_OF(work, struct ble_adv_tx, resend.work); bool front = false; if (tx->buf == NULL) { /* The advertising has been cancelled */ return; }{...} front = (tx->param.priority == BLE_MESH_BLE_ADV_PRIO_HIGH) ? true : false; bt_mesh_ble_adv_send(tx->buf, &ble_adv_send_cb, tx, front); if (tx->param.count == SEND_BLE_ADV_INFINITE) { /* Send the BLE advertising packet infinitely */ return; }{...} if (tx->param.count > 0U) { tx->param.count--; }{...} }{...} int bt_mesh_start_ble_advertising(const struct bt_mesh_ble_adv_param *param, const struct bt_mesh_ble_adv_data *data, uint8_t *index) { struct ble_adv_tx *tx = NULL; struct net_buf *buf = NULL; bool front = false; if (param == NULL || index == NULL) { BT_ERR("%s, Invalid parameter", __func__); return -EINVAL; }{...} if (param->adv_type != BLE_MESH_ADV_DIRECT_IND && (param->interval < 0x20 || param->interval > 0x4000)) { BT_ERR("Invalid adv interval 0x%04x", param->interval); return -EINVAL; }{...} if (param->adv_type > BLE_MESH_ADV_DIRECT_IND_LOW_DUTY) { BT_ERR("Invalid adv type 0x%02x", param->adv_type); return -EINVAL; }{...} if (param->own_addr_type > BLE_MESH_ADDR_RANDOM_ID) { BT_ERR("Invalid own addr type 0x%02x", param->own_addr_type); return -EINVAL; }{...} if ((param->own_addr_type == BLE_MESH_ADDR_PUBLIC_ID || param->own_addr_type == BLE_MESH_ADDR_RANDOM_ID || param->adv_type == BLE_MESH_ADV_DIRECT_IND || param->adv_type == BLE_MESH_ADV_DIRECT_IND_LOW_DUTY) && param->peer_addr_type > BLE_MESH_ADDR_RANDOM) { BT_ERR("Invalid peer addr type 0x%02x", param->peer_addr_type); return -EINVAL; }{...} if (data && (data->adv_data_len > 31 || data->scan_rsp_data_len > 31)) { BT_ERR("Invalid adv data length (adv %d, scan rsp %d)", data->adv_data_len, data->scan_rsp_data_len); return -EINVAL; }{...} if (param->priority > BLE_MESH_BLE_ADV_PRIO_HIGH) { BT_ERR("Invalid adv priority %d", param->priority); return -EINVAL; }{...} if (param->duration < ADV_SCAN_INT(param->interval)) { BT_ERR("Too small duration %dms", param->duration); return -EINVAL; }{...} buf = bt_mesh_ble_adv_create(BLE_MESH_ADV_BLE, K_NO_WAIT); if (!buf) { BT_ERR("No empty ble adv buffer"); return -ENOBUFS; }{...} /* Set advertising data and scan response data */ memset(buf->data, 0, buf->size); if (data) { net_buf_add_u8(buf, data->adv_data_len); if (data->adv_data_len) { net_buf_add_mem(buf, data->adv_data, data->adv_data_len); }{...} net_buf_add_u8(buf, data->scan_rsp_data_len); if (data->scan_rsp_data_len) { net_buf_add_mem(buf, data->scan_rsp_data, data->scan_rsp_data_len); }{...} }{...} *index = net_buf_id(buf); tx = &ble_adv_tx[*index]; tx->buf = buf; memcpy(&tx->param, param, sizeof(tx->param)); front = (tx->param.priority == BLE_MESH_BLE_ADV_PRIO_HIGH) ? true : false; bt_mesh_ble_adv_send(buf, &ble_adv_send_cb, tx, front); if (param->count) { if (k_delayed_work_init(&tx->resend, ble_adv_resend)) { /* If failed to create a timer, the BLE adv packet will be * sent only once. Just give a warning here, and since the * BLE adv packet can be sent, return 0 here. *//* ... */ BT_WARN("Send BLE adv packet only once"); tx->param.count = 0; net_buf_unref(buf); return 0; }{...} bt_mesh_atomic_set_bit(tx->flags, TIMER_INIT); }{...} else { /* Send the BLE advertising packet only once */ net_buf_unref(buf); }{...} return 0; }{...} int bt_mesh_stop_ble_advertising(uint8_t index) { struct ble_adv_tx *tx = NULL; bool unref = true; if (index >= ARRAY_SIZE(ble_adv_tx)) { BT_ERR("Invalid adv index %d", index); return -EINVAL; }{...} tx = &ble_adv_tx[index]; if (tx->buf == NULL) { BT_WARN("Already stopped, index %d", index); return 0; }{...} /* busy 1, ref 1; busy 1, ref 2; * busy 0, ref 0; busy 0, ref 1; *//* ... */ if (bt_mesh_atomic_get(&BLE_MESH_ADV_BUSY(tx->buf)) && tx->buf->ref == 1U) { unref = false; }{...} ble_adv_tx_reset(tx, unref); return 0; }{...} #if CONFIG_BLE_MESH_DEINIT static void bt_mesh_ble_adv_deinit(void) { for (int i = 0; i < ARRAY_SIZE(ble_adv_tx); i++) { struct ble_adv_tx *tx = &ble_adv_tx[i]; ble_adv_tx_reset(tx, false); }{...} bt_mesh_unref_buf_from_pool(&ble_adv_buf_pool); memset(ble_adv_pool, 0, sizeof(ble_adv_pool)); }{...} /* ... */#endif /* CONFIG_BLE_MESH_DEINIT *//* ... */ #endif /* CONFIG_BLE_MESH_SUPPORT_BLE_ADV */
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.