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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
|
/******************************************************************************
*
* Copyright (C) 1999-2012 Broadcom Corporation
*
* 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.
*
* Changes from Qualcomm Innovation Center are provided under the following license:
*
* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted (subject to the limitations in the
* disclaimer below) provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
*
* Neither the name of Qualcomm Innovation Center, Inc. nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* NO EXPRESS OR IMPLIED LICENSES TO ANY PARTY'S PATENT RIGHTS ARE
* GRANTED BY THIS LICENSE. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT
* HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
* ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
* GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
* IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
* IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE
*
******************************************************************************/
/******************************************************************************
*
* This file contains function of the HCIC unit to format and send HCI
* commands.
*
******************************************************************************/
#include "bt_common.h"
#include "bt_target.h"
#include "btu.h"
#include "hcidefs.h"
#include "hcimsgs.h"
#include <base/bind.h>
#include <stddef.h>
#include <string.h>
#include <vector>
void btsnd_hcic_ble_set_local_used_feat(uint8_t feat_set[8]) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_SET_USED_FEAT_CMD;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_LOCAL_SPT_FEAT);
ARRAY_TO_STREAM(pp, feat_set, HCIC_PARAM_SIZE_SET_USED_FEAT_CMD);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_random_addr(const RawAddress& random_bda) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_RANDOM_ADDR);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_RANDOM_ADDR_CMD);
BDADDR_TO_STREAM(pp, random_bda);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_write_adv_params(uint16_t adv_int_min, uint16_t adv_int_max,
uint8_t adv_type, uint8_t addr_type_own,
uint8_t addr_type_dir,
const RawAddress& direct_bda,
uint8_t channel_map,
uint8_t adv_filter_policy) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_PARAMS);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_ADV_PARAMS);
UINT16_TO_STREAM(pp, adv_int_min);
UINT16_TO_STREAM(pp, adv_int_max);
UINT8_TO_STREAM(pp, adv_type);
UINT8_TO_STREAM(pp, addr_type_own);
UINT8_TO_STREAM(pp, addr_type_dir);
BDADDR_TO_STREAM(pp, direct_bda);
UINT8_TO_STREAM(pp, channel_map);
UINT8_TO_STREAM(pp, adv_filter_policy);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_adv_chnl_tx_power(void) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_ADV_CHNL_TX_POWER);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_adv_data(uint8_t data_len, uint8_t* p_data) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_DATA);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA + 1);
memset(pp, 0, HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA);
if (p_data != NULL && data_len > 0) {
if (data_len > HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA)
data_len = HCIC_PARAM_SIZE_BLE_WRITE_ADV_DATA;
UINT8_TO_STREAM(pp, data_len);
ARRAY_TO_STREAM(pp, p_data, data_len);
}
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_scan_rsp_data(uint8_t data_len, uint8_t* p_scan_rsp) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP + 1;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_RSP_DATA);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP + 1);
memset(pp, 0, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP);
if (p_scan_rsp != NULL && data_len > 0) {
if (data_len > HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP)
data_len = HCIC_PARAM_SIZE_BLE_WRITE_SCAN_RSP;
UINT8_TO_STREAM(pp, data_len);
ARRAY_TO_STREAM(pp, p_scan_rsp, data_len);
}
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_adv_enable(uint8_t adv_enable) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_ADV_ENABLE;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_ADV_ENABLE);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_ADV_ENABLE);
UINT8_TO_STREAM(pp, adv_enable);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_scan_params(uint8_t scan_type, uint16_t scan_int,
uint16_t scan_win, uint8_t addr_type_own,
uint8_t scan_filter_policy) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_PARAM;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_PARAMS);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_PARAM);
UINT8_TO_STREAM(pp, scan_type);
UINT16_TO_STREAM(pp, scan_int);
UINT16_TO_STREAM(pp, scan_win);
UINT8_TO_STREAM(pp, addr_type_own);
UINT8_TO_STREAM(pp, scan_filter_policy);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_scan_enable(uint8_t scan_enable, uint8_t duplicate) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_WRITE_SCAN_ENABLE;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_WRITE_SCAN_ENABLE);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_WRITE_SCAN_ENABLE);
UINT8_TO_STREAM(pp, scan_enable);
UINT8_TO_STREAM(pp, duplicate);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
/* link layer connection management commands */
void btsnd_hcic_ble_create_ll_conn(
uint16_t scan_int, uint16_t scan_win, uint8_t init_filter_policy,
uint8_t addr_type_peer, const RawAddress& bda_peer, uint8_t addr_type_own,
uint16_t conn_int_min, uint16_t conn_int_max, uint16_t conn_latency,
uint16_t conn_timeout, uint16_t min_ce_len, uint16_t max_ce_len) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CREATE_LL_CONN;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_CREATE_LL_CONN);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CREATE_LL_CONN);
UINT16_TO_STREAM(pp, scan_int);
UINT16_TO_STREAM(pp, scan_win);
UINT8_TO_STREAM(pp, init_filter_policy);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
UINT8_TO_STREAM(pp, addr_type_own);
UINT16_TO_STREAM(pp, conn_int_min);
UINT16_TO_STREAM(pp, conn_int_max);
UINT16_TO_STREAM(pp, conn_latency);
UINT16_TO_STREAM(pp, conn_timeout);
UINT16_TO_STREAM(pp, min_ce_len);
UINT16_TO_STREAM(pp, max_ce_len);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_create_conn_cancel(void) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CREATE_CONN_CANCEL;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_CREATE_CONN_CANCEL);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CREATE_CONN_CANCEL);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_clear_white_list(
base::Callback<void(uint8_t*, uint16_t)> cb) {
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_CLEAR_WHITE_LIST, nullptr, 0,
std::move(cb));
}
void btsnd_hcic_ble_add_white_list(
uint8_t addr_type, const RawAddress& bda,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint8_t param[HCIC_PARAM_SIZE_ADD_WHITE_LIST];
uint8_t* pp = param;
UINT8_TO_STREAM(pp, addr_type);
BDADDR_TO_STREAM(pp, bda);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ADD_WHITE_LIST, param,
HCIC_PARAM_SIZE_ADD_WHITE_LIST, std::move(cb));
}
void btsnd_hcic_ble_remove_from_white_list(
uint8_t addr_type, const RawAddress& bda,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint8_t param[HCIC_PARAM_SIZE_REMOVE_WHITE_LIST];
uint8_t* pp = param;
UINT8_TO_STREAM(pp, addr_type);
BDADDR_TO_STREAM(pp, bda);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_WHITE_LIST, param,
HCIC_PARAM_SIZE_REMOVE_WHITE_LIST, std::move(cb));
}
void btsnd_hcic_ble_upd_ll_conn_params(uint16_t handle, uint16_t conn_int_min,
uint16_t conn_int_max,
uint16_t conn_latency,
uint16_t conn_timeout,
uint16_t min_ce_len,
uint16_t max_ce_len) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_UPD_LL_CONN_PARAMS;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_UPD_LL_CONN_PARAMS);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_UPD_LL_CONN_PARAMS);
UINT16_TO_STREAM(pp, handle);
UINT16_TO_STREAM(pp, conn_int_min);
UINT16_TO_STREAM(pp, conn_int_max);
UINT16_TO_STREAM(pp, conn_latency);
UINT16_TO_STREAM(pp, conn_timeout);
UINT16_TO_STREAM(pp, min_ce_len);
UINT16_TO_STREAM(pp, max_ce_len);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_host_chnl_class(
uint8_t chnl_map[HCIC_BLE_CHNL_MAP_SIZE]) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_SET_HOST_CHNL_CLASS;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_HOST_CHNL_CLASS);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_SET_HOST_CHNL_CLASS);
ARRAY_TO_STREAM(pp, chnl_map, HCIC_BLE_CHNL_MAP_SIZE);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_chnl_map(uint16_t handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CHNL_MAP;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_CHNL_MAP);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CHNL_MAP);
UINT16_TO_STREAM(pp, handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_remote_feat(uint16_t handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_REMOTE_FEAT;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_REMOTE_FEAT);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_REMOTE_FEAT);
UINT16_TO_STREAM(pp, handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
/* security management commands */
void btsnd_hcic_ble_encrypt(uint8_t* key, uint8_t key_len, uint8_t* plain_text,
uint8_t pt_len, void* p_cmd_cplt_cback) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENCRYPT;
p->offset = sizeof(void*);
*((void**)pp) =
p_cmd_cplt_cback; /* Store command complete callback in buffer */
pp += sizeof(void*); /* Skip over callback pointer */
UINT16_TO_STREAM(pp, HCI_BLE_ENCRYPT);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENCRYPT);
memset(pp, 0, HCIC_PARAM_SIZE_BLE_ENCRYPT);
if (key_len > HCIC_BLE_ENCRYT_KEY_SIZE) key_len = HCIC_BLE_ENCRYT_KEY_SIZE;
if (pt_len > HCIC_BLE_ENCRYT_KEY_SIZE) pt_len = HCIC_BLE_ENCRYT_KEY_SIZE;
ARRAY_TO_STREAM(pp, key, key_len);
pp += (HCIC_BLE_ENCRYT_KEY_SIZE - key_len);
ARRAY_TO_STREAM(pp, plain_text, pt_len);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_rand(base::Callback<void(BT_OCTET8)> cb) {
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_RAND, nullptr, 0,
base::Bind(
[](base::Callback<void(BT_OCTET8)> cb,
uint8_t* param, uint16_t param_len) {
CHECK(param[0] == 0)
<< "LE Rand return status must be zero";
cb.Run(param + 1 /* skip status */);
},
std::move(cb)));
}
void btsnd_hcic_ble_start_enc(uint16_t handle,
uint8_t rand[HCIC_BLE_RAND_DI_SIZE],
uint16_t ediv, const Octet16& ltk) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_START_ENC;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_START_ENC);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_START_ENC);
UINT16_TO_STREAM(pp, handle);
ARRAY_TO_STREAM(pp, rand, HCIC_BLE_RAND_DI_SIZE);
UINT16_TO_STREAM(pp, ediv);
ARRAY_TO_STREAM(pp, ltk.data(), HCIC_BLE_ENCRYT_KEY_SIZE);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_ltk_req_reply(uint16_t handle, const Octet16& ltk) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_LTK_REQ_REPLY;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_LTK_REQ_REPLY);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_LTK_REQ_REPLY);
UINT16_TO_STREAM(pp, handle);
ARRAY_TO_STREAM(pp, ltk.data(), HCIC_BLE_ENCRYT_KEY_SIZE);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_ltk_req_neg_reply(uint16_t handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_LTK_REQ_NEG_REPLY;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_LTK_REQ_NEG_REPLY);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_LTK_REQ_NEG_REPLY);
UINT16_TO_STREAM(pp, handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_receiver_test(uint8_t rx_freq) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_PARAM1;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_RECEIVER_TEST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_PARAM1);
UINT8_TO_STREAM(pp, rx_freq);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_transmitter_test(uint8_t tx_freq, uint8_t test_data_len,
uint8_t payload) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_WRITE_PARAM3;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_TRANSMITTER_TEST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_WRITE_PARAM3);
UINT8_TO_STREAM(pp, tx_freq);
UINT8_TO_STREAM(pp, test_data_len);
UINT8_TO_STREAM(pp, payload);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_test_end(void) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_TEST_END);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_host_supported(void) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_READ_CMD;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_READ_LE_HOST_SUPPORT);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_READ_CMD);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
#if (BLE_LLT_INCLUDED == TRUE)
void btsnd_hcic_ble_rc_param_req_reply(uint16_t handle, uint16_t conn_int_min,
uint16_t conn_int_max,
uint16_t conn_latency,
uint16_t conn_timeout,
uint16_t min_ce_len,
uint16_t max_ce_len) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_REPLY;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_RC_PARAM_REQ_REPLY);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_REPLY);
UINT16_TO_STREAM(pp, handle);
UINT16_TO_STREAM(pp, conn_int_min);
UINT16_TO_STREAM(pp, conn_int_max);
UINT16_TO_STREAM(pp, conn_latency);
UINT16_TO_STREAM(pp, conn_timeout);
UINT16_TO_STREAM(pp, min_ce_len);
UINT16_TO_STREAM(pp, max_ce_len);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_rc_param_req_neg_reply(uint16_t handle, uint8_t reason) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_NEG_REPLY;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_RC_PARAM_REQ_NEG_REPLY);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RC_PARAM_REQ_NEG_REPLY);
UINT16_TO_STREAM(pp, handle);
UINT8_TO_STREAM(pp, reason);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
#endif
void btsnd_hcic_ble_add_device_resolving_list(uint8_t addr_type_peer,
const RawAddress& bda_peer,
const Octet16& irk_peer,
const Octet16& irk_local) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ADD_DEV_RESOLVING_LIST;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_ADD_DEV_RESOLVING_LIST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ADD_DEV_RESOLVING_LIST);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
ARRAY_TO_STREAM(pp, irk_peer.data(), HCIC_BLE_ENCRYT_KEY_SIZE);
ARRAY_TO_STREAM(pp, irk_local.data(), HCIC_BLE_ENCRYT_KEY_SIZE);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_rm_device_resolving_list(uint8_t addr_type_peer,
const RawAddress& bda_peer) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_RM_DEV_RESOLVING_LIST;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_RM_DEV_RESOLVING_LIST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_RM_DEV_RESOLVING_LIST);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_privacy_mode(uint8_t addr_type_peer,
const RawAddress& bda_peer,
uint8_t privacy_type) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_PRIVACY_MODE;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_PRIVACY_MODE);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_PRIVACY_MODE);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
UINT8_TO_STREAM(pp, privacy_type);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_clear_resolving_list(void) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_CLEAR_RESOLVING_LIST;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_CLEAR_RESOLVING_LIST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_CLEAR_RESOLVING_LIST);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_resolvable_addr_peer(uint8_t addr_type_peer,
const RawAddress& bda_peer) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_PEER;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_RESOLVABLE_ADDR_PEER);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_PEER);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_read_resolvable_addr_local(uint8_t addr_type_peer,
const RawAddress& bda_peer) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_LOCAL;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_RESOLVABLE_ADDR_LOCAL);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_RESOLVABLE_ADDR_LOCAL);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_addr_resolution_enable(uint8_t addr_resolution_enable) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_ADDR_RESOLUTION_ENABLE;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_ADDR_RESOLUTION_ENABLE);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_ADDR_RESOLUTION_ENABLE);
UINT8_TO_STREAM(pp, addr_resolution_enable);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_rand_priv_addr_timeout(uint16_t rpa_timout) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_RAND_PRIV_ADDR_TIMOUT;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_RAND_PRIV_ADDR_TIMOUT);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_RAND_PRIV_ADDR_TIMOUT);
UINT16_TO_STREAM(pp, rpa_timout);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_data_length(uint16_t conn_handle, uint16_t tx_octets,
uint16_t tx_time) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_DATA_LENGTH;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_DATA_LENGTH);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_DATA_LENGTH);
UINT16_TO_STREAM(pp, conn_handle);
UINT16_TO_STREAM(pp, tx_octets);
UINT16_TO_STREAM(pp, tx_time);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_enh_rx_test(uint8_t rx_chan, uint8_t phy,
uint8_t mod_index) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENH_RX_TEST;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_ENH_RECEIVER_TEST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENH_RX_TEST);
UINT8_TO_STREAM(pp, rx_chan);
UINT8_TO_STREAM(pp, phy);
UINT8_TO_STREAM(pp, mod_index);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_enh_tx_test(uint8_t tx_chan, uint8_t data_len,
uint8_t payload, uint8_t phy) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_ENH_TX_TEST;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_ENH_TRANSMITTER_TEST);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_ENH_TX_TEST);
UINT8_TO_STREAM(pp, tx_chan);
UINT8_TO_STREAM(pp, data_len);
UINT8_TO_STREAM(pp, payload);
UINT8_TO_STREAM(pp, phy);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_extended_scan_params(uint8_t own_address_type,
uint8_t scanning_filter_policy,
uint8_t scanning_phys,
scanning_phy_cfg* phy_cfg) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
int phy_cnt =
std::bitset<std::numeric_limits<uint8_t>::digits>(scanning_phys).count();
uint16_t param_len = 3 + (5 * phy_cnt);
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_SET_EXTENDED_SCAN_PARAMETERS);
UINT8_TO_STREAM(pp, param_len);
UINT8_TO_STREAM(pp, own_address_type);
UINT8_TO_STREAM(pp, scanning_filter_policy);
UINT8_TO_STREAM(pp, scanning_phys);
for (int i = 0; i < phy_cnt; i++) {
UINT8_TO_STREAM(pp, phy_cfg[i].scan_type);
UINT16_TO_STREAM(pp, phy_cfg[i].scan_int);
UINT16_TO_STREAM(pp, phy_cfg[i].scan_win);
}
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_extended_scan_enable(uint8_t enable,
uint8_t filter_duplicates,
uint16_t duration,
uint16_t period) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const int param_len = 6;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_SET_EXTENDED_SCAN_ENABLE);
UINT8_TO_STREAM(pp, param_len);
UINT8_TO_STREAM(pp, enable);
UINT8_TO_STREAM(pp, filter_duplicates);
UINT16_TO_STREAM(pp, duration);
UINT16_TO_STREAM(pp, period);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_ext_create_conn(uint8_t init_filter_policy,
uint8_t addr_type_own,
uint8_t addr_type_peer,
const RawAddress& bda_peer,
uint8_t initiating_phys,
EXT_CONN_PHY_CFG* phy_cfg) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
int phy_cnt =
std::bitset<std::numeric_limits<uint8_t>::digits>(initiating_phys)
.count();
/* param_len = initial_params + size_per_channel * num_of_channels */
uint8_t param_len = 10 + (16 * phy_cnt);
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_EXTENDED_CREATE_CONNECTION);
UINT8_TO_STREAM(pp, param_len);
UINT8_TO_STREAM(pp, init_filter_policy);
UINT8_TO_STREAM(pp, addr_type_own);
UINT8_TO_STREAM(pp, addr_type_peer);
BDADDR_TO_STREAM(pp, bda_peer);
UINT8_TO_STREAM(pp, initiating_phys);
for (int i = 0; i < phy_cnt; i++) {
UINT16_TO_STREAM(pp, phy_cfg[i].scan_int);
UINT16_TO_STREAM(pp, phy_cfg[i].scan_win);
UINT16_TO_STREAM(pp, phy_cfg[i].conn_int_min);
UINT16_TO_STREAM(pp, phy_cfg[i].conn_int_max);
UINT16_TO_STREAM(pp, phy_cfg[i].conn_latency);
UINT16_TO_STREAM(pp, phy_cfg[i].sup_timeout);
UINT16_TO_STREAM(pp, phy_cfg[i].min_ce_len);
UINT16_TO_STREAM(pp, phy_cfg[i].max_ce_len);
}
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_cig_param(uint8_t cig_id,
const SDU_INTERVAL sdu_int_m_to_s,
const SDU_INTERVAL sdu_int_s_to_m,
uint8_t slave_clock_accuracy,
uint8_t packing,
uint8_t framing,
uint16_t max_transport_latency_m_to_s,
uint16_t max_transport_latency_s_to_m,
uint8_t cis_count,
std::vector<tBTM_BLE_CIS_CONFIG> cis_config,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCI_PARAM_SIZE_SET_CIG_PARAM_FIXED
+ (cis_count * sizeof(uint16_t) * 2) /* size of arrays which has 2 octet size elements*/
+ (cis_count * sizeof(uint8_t) * 5); /* size of arrays which has 1 octet size elements*/
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, cig_id);
ARRAY_TO_STREAM(p, sdu_int_m_to_s, SDU_INTERVAL_LEN);
ARRAY_TO_STREAM(p, sdu_int_s_to_m, SDU_INTERVAL_LEN);
UINT8_TO_STREAM(p, slave_clock_accuracy);
UINT8_TO_STREAM(p, packing);
UINT8_TO_STREAM(p, framing);
UINT16_TO_STREAM(p, max_transport_latency_m_to_s);
UINT16_TO_STREAM(p, max_transport_latency_s_to_m);
UINT8_TO_STREAM(p, cis_count);
for (int i = 0; i < cis_count; i++) {
UINT8_TO_STREAM(p, cis_config[i].cis_id);
UINT16_TO_STREAM(p, cis_config[i].max_sdu_m_to_s);
UINT16_TO_STREAM(p, cis_config[i].max_sdu_s_to_m);
UINT8_TO_STREAM(p, cis_config[i].phy_m_to_s);
UINT8_TO_STREAM(p, cis_config[i].phy_s_to_m);
UINT8_TO_STREAM(p, cis_config[i].rtn_m_to_s);
UINT8_TO_STREAM(p, cis_config[i].rtn_s_to_m);
}
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CIG_PARAM, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_create_cis(uint8_t cis_count,
std::vector<tBTM_BLE_CHANNEL_MAP> link_conn_handles,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = 1 +
(cis_count * sizeof(uint16_t) * 2); /* size of arrays which has 2 octet size elements*/
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, cis_count);
for (int i = 0; i < cis_count; i++) {
UINT16_TO_STREAM(p, link_conn_handles[i].cis_conn_handle);
UINT16_TO_STREAM(p, link_conn_handles[i].acl_conn_handle);
}
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_CREATE_CIS, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_remove_cig(uint8_t cig_id, base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = 1;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, cig_id);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_CIG, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_iso_data_path(uint16_t connection_handle,
uint8_t data_path_direction,
uint8_t data_path_id,
const CODEC_ID codec_id,
const CONTROLLER_DELAY cont_delay,
uint8_t codec_configuration_length,
uint8_t* codec_configuration,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCI_PARAM_SIZE_SET_ISO_DATA_PATH + codec_configuration_length;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, connection_handle);
UINT8_TO_STREAM(p, data_path_direction);
UINT8_TO_STREAM(p, data_path_id);
ARRAY_TO_STREAM(p, codec_id, CODEC_ID_LEN);
ARRAY_TO_STREAM(p, cont_delay, CONTROLLER_DELAY_LEN);
UINT8_TO_STREAM(p, codec_configuration_length);
ARRAY_TO_STREAM(p, codec_configuration, codec_configuration_length);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_ISO_DATAPATH, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_remove_iso_data_path(uint16_t connection_handle,
uint8_t data_path_direction,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCI_PARAM_SIZE_REMOVE_ISO_DATA_PATH;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, connection_handle);
UINT8_TO_STREAM(p, data_path_direction);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REMOVE_ISO_DATAPATH, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_host_feature(uint8_t bit_number, uint8_t bit_val,
base::Callback<void(uint8_t*, uint16_t)> cb) {
int16_t param_len = HCI_PARAM_SIZE_SET_BLE_HOST_FEATURE;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, bit_number);
UINT8_TO_STREAM(p, bit_val);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_HOST_FEATURE, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_req_peer_sca(uint16_t conn_handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const uint16_t param_len = 2;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_REQUEST_PEER_SCA);
UINT8_TO_STREAM(pp, param_len);
UINT16_TO_STREAM(pp, conn_handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_accept_cis(uint16_t conn_handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const int param_len = 2;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_ACCEPT_CIS_REQ);
UINT8_TO_STREAM(pp, param_len);
UINT16_TO_STREAM(pp, conn_handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_reject_cis(uint16_t conn_handle, uint8_t reason,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 3;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, reason);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_REJECT_CIS_REQ, param,
param_len, std::move(cb));
}
//
void btsnd_hcic_ble_read_iso_tx_sync(uint16_t conn_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 2;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_READ_ISO_TX_SYNC, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_read_iso_link_quality(uint16_t conn_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 2;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_READ_ISO_LINK_QUALITY, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_read_enhanced_pow_level(uint16_t conn_handle, uint8_t phy,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 3;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, phy);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ENH_READ_TRANSMIT_POW_LEVEL, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_read_remote_tx_pow_level(uint16_t conn_handle, uint8_t phy) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
uint16_t param_len = 3; /* size of arrays which has 2 octet size elements*/
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_REM_TRANSMIT_POW_LEVEL);
UINT8_TO_STREAM(pp, param_len);
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, phy);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_path_loss_prt_param(uint16_t conn_handle,
uint8_t high_threshold,
uint8_t high_hysteresis,
uint8_t low_threshold,
uint8_t low_hysteresis,
uint16_t min_time_spent,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 8;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, high_threshold);
UINT8_TO_STREAM(p, high_hysteresis);
UINT8_TO_STREAM(p, low_threshold);
UINT8_TO_STREAM(p, low_hysteresis);
UINT16_TO_STREAM(p, min_time_spent);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_PATH_LOSS_RPT_PARAM, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_path_loss_rpt_enable(uint16_t conn_handle, uint8_t enable,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 3;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, enable);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_PATH_LOSS_RPT_ENABLE, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_tx_pow_rpt_enable(uint16_t conn_handle, uint8_t local_enable,
uint8_t remote_enable,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 4;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, local_enable);
UINT8_TO_STREAM(p, remote_enable);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_TRANSMIT_POW_RPT_ENABLE, param,
param_len, std::move(cb));
}
// Test ISO HCI Commands
void btsnd_hcic_ble_set_cig_param_test(uint8_t cig_id,
const SDU_INTERVAL sdu_int_m_to_s,
const SDU_INTERVAL sdu_int_s_to_m,
uint8_t ft_m_to_s,
uint8_t ft_s_to_m,
uint16_t iso_interval,
uint8_t slave_clock_accuracy,
uint8_t packing,
uint8_t framing,
uint8_t cis_count,
std::vector<tBTM_BLE_CIS_TEST_CONFIG> cis_config,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCI_PARAM_SIZE_SET_CIG_PARAM_TEST_FIXED
+ (cis_count * sizeof(uint16_t) * 4)
+ (cis_count * sizeof(uint8_t) * 6);
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, cig_id);
ARRAY_TO_STREAM(p, sdu_int_m_to_s, SDU_INTERVAL_LEN);
ARRAY_TO_STREAM(p, sdu_int_s_to_m, SDU_INTERVAL_LEN);
UINT8_TO_STREAM(p, ft_m_to_s);
UINT8_TO_STREAM(p, ft_s_to_m);
UINT16_TO_STREAM(p, iso_interval);
UINT8_TO_STREAM(p, slave_clock_accuracy);
UINT8_TO_STREAM(p, packing);
UINT8_TO_STREAM(p, framing);
UINT8_TO_STREAM(p, cis_count);
for (int i = 0; i < cis_count; i++) {
UINT8_TO_STREAM(p, cis_config[i].cis_id);
UINT8_TO_STREAM(p, cis_config[i].nse);
UINT16_TO_STREAM(p, cis_config[i].max_sdu_m_to_s);
UINT16_TO_STREAM(p, cis_config[i].max_sdu_s_to_m);
UINT16_TO_STREAM(p, cis_config[i].max_pdu_m_to_s);
UINT16_TO_STREAM(p, cis_config[i].max_pdu_s_to_m);
UINT8_TO_STREAM(p, cis_config[i].phy_m_to_s);
UINT8_TO_STREAM(p, cis_config[i].phy_s_to_m);
UINT8_TO_STREAM(p, cis_config[i].bn_m_to_s);
UINT8_TO_STREAM(p, cis_config[i].bn_s_to_m);
}
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CIG_PARAM_TEST, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_iso_transmit_test(uint16_t conn_handle,
uint8_t payload_type,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 3;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, payload_type);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_TRANSMIT_TEST, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_iso_receive_test(uint16_t conn_handle,
uint8_t payload_type,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 3;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT8_TO_STREAM(p, payload_type);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_RECEIVE_TEST, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_iso_read_test_counters(uint16_t conn_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 2;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_READ_TEST_COUNTERS, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_iso_test_end(uint16_t conn_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 2;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_ISO_TEST_END, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_transmitter_test_v4(uint8_t tx_channel,
uint8_t test_data_length,
uint8_t packet_payload,
uint8_t phy,
uint8_t cte_length,
uint8_t type,
uint8_t switching_pattern_length,
uint8_t *antenna_ids,
uint8_t transmit_power_level,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 8 + switching_pattern_length;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT8_TO_STREAM(p, tx_channel);
UINT8_TO_STREAM(p, test_data_length);
UINT8_TO_STREAM(p, packet_payload);
UINT8_TO_STREAM(p, phy);
UINT8_TO_STREAM(p, cte_length);
UINT8_TO_STREAM(p, type);
UINT8_TO_STREAM(p, switching_pattern_length);
ARRAY_TO_STREAM(p, antenna_ids, switching_pattern_length);
UINT8_TO_STREAM(p, transmit_power_level);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_TRANSMITTER_TEST_V4, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_create_periodic_sync(uint8_t options, uint8_t adv_sid,
uint8_t address_type,
const RawAddress& bda_peer,
uint16_t skip, uint16_t sync_tout,
uint8_t sync_cte_type) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const uint16_t param_len = 14;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_CREATE_SYNC);
UINT8_TO_STREAM(pp, param_len);
UINT8_TO_STREAM(pp, options);
UINT8_TO_STREAM(pp, adv_sid);
UINT8_TO_STREAM(pp, address_type);
BDADDR_TO_STREAM(pp, bda_peer);
UINT16_TO_STREAM(pp, skip);
UINT16_TO_STREAM(pp, sync_tout);
UINT8_TO_STREAM(pp, sync_cte_type);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_terminate_periodic_sync(uint16_t sync_handle) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const uint16_t param_len = 2;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_TERMINATE_SYNC);
UINT8_TO_STREAM(pp, param_len);
UINT16_TO_STREAM(pp, sync_handle);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hci_ble_cancel_period_sync() {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
const uint16_t param_len = 0;
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_PERIODIC_ADVERTISING_CREATE_SYNC_CANCEL);
UINT8_TO_STREAM(pp, param_len);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_pa_sync_tx(uint16_t conn_handle,
uint16_t service_data,
uint16_t sync_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 6;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT16_TO_STREAM(p, service_data);
UINT16_TO_STREAM(p, sync_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE,
HCI_LE_SET_PERIODIC_ADVERTISING_SYNC_TRANSFER, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_pa_set_info_tx(uint16_t conn_handle,
uint16_t service_data,
uint8_t adv_handle,
base::Callback<void(uint8_t*, uint16_t)> cb) {
const uint16_t param_len = 5;
uint8_t *param = (uint8_t *)osi_malloc(param_len);
uint8_t *p = param;
UINT16_TO_STREAM(p, conn_handle);
UINT16_TO_STREAM(p, service_data);
UINT16_TO_STREAM(p, adv_handle);
btu_hcif_send_cmd_with_cb(FROM_HERE,
HCI_LE_SET_PERIODIC_ADVERTISING_SET_INFO_TRANSFER,
param, param_len, std::move(cb));
}
void btsnd_hcic_ble_pa_sync_tx_parameters(uint16_t conn_handle,
uint8_t mode, uint16_t skip,
uint16_t timeout, uint8_t cte_type) {
const uint16_t param_len = 8;
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + param_len;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_LE_SET_PERIODIC_ADVERTISING_SYNC_TRANSFER_PARAMETERS);
UINT8_TO_STREAM(pp, param_len);
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, mode);
UINT16_TO_STREAM(pp, skip);
UINT16_TO_STREAM(pp, timeout);
UINT16_TO_STREAM(pp, cte_type);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_subrate_request(uint16_t conn_handle,
uint16_t subrate_min,
uint16_t subrate_max,
uint16_t max_latency,
uint16_t cont_num,
uint16_t sup_tout) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SUBRATE_REQ;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SUBRATE_REQ);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SUBRATE_REQ);
UINT16_TO_STREAM(pp, conn_handle);
UINT16_TO_STREAM(pp, subrate_min);
UINT16_TO_STREAM(pp, subrate_max);
UINT16_TO_STREAM(pp, max_latency);
UINT16_TO_STREAM(pp, cont_num);
UINT16_TO_STREAM(pp, sup_tout);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
void btsnd_hcic_ble_set_default_subrate(uint16_t subrate_min,
uint16_t subrate_max,
uint16_t max_latency,
uint16_t cont_num,
uint16_t sup_tout) {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_SET_DEFAULT_SUBRATE;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_SET_DEFAULT_SUBRATE);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_SET_DEFAULT_SUBRATE);
UINT16_TO_STREAM(pp, subrate_min);
UINT16_TO_STREAM(pp, subrate_max);
UINT16_TO_STREAM(pp, max_latency);
UINT16_TO_STREAM(pp, cont_num);
UINT16_TO_STREAM(pp, sup_tout);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
#ifdef DIR_FINDING_FEATURE
void btsnd_hcic_ble_set_conn_cte_rx_params(uint16_t conn_handle,
uint8_t sampling_enable,
uint8_t slot_durations,
uint8_t switching_pattern_len,
std::vector<uint8_t> antenna_ids,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_RX_PARAMS_FIXED +
(switching_pattern_len * sizeof(uint8_t));
uint8_t param[param_len];
uint8_t* pp = param;
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, sampling_enable);
UINT8_TO_STREAM(pp, slot_durations);
UINT8_TO_STREAM(pp, switching_pattern_len);
ARRAY_TO_STREAM(pp, antenna_ids, switching_pattern_len);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_RX_PARAMS, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_conn_cte_tx_params(uint16_t conn_handle,
uint8_t cte_types,
uint8_t switching_pattern_len,
std::vector<uint8_t> antenna_ids,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_TX_PARAMS_FIXED +
(switching_pattern_len * sizeof(uint8_t));
uint8_t param[param_len];
uint8_t* pp = param;
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, cte_types);
UINT8_TO_STREAM(pp, switching_pattern_len);
ARRAY_TO_STREAM(pp, antenna_ids, switching_pattern_len);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_TX_PARAMS, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_set_conn_cte_req_enable(uint16_t conn_handle,
uint8_t enable,
uint16_t cte_req_int,
uint8_t req_cte_len,
uint8_t req_cte_type,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint8_t param[HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_REQ_ENABLE];
uint8_t* pp = param;
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, enable);
UINT16_TO_STREAM(pp, cte_req_int);
UINT8_TO_STREAM(pp, req_cte_len);
UINT8_TO_STREAM(pp, req_cte_type);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_REQ_ENABLE, param,
HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_REQ_ENABLE, std::move(cb));
}
void btsnd_hcic_ble_set_conn_cte_rsp_enable(uint16_t conn_handle,
uint8_t enable,
base::Callback<void(uint8_t*, uint16_t)> cb) {
uint16_t param_len = HCIC_PARAM_SIZE_BLE_SET_CONN_CTE_RSP_ENABLE;
uint8_t param[param_len];
uint8_t* pp = param;
UINT16_TO_STREAM(pp, conn_handle);
UINT8_TO_STREAM(pp, enable);
btu_hcif_send_cmd_with_cb(FROM_HERE, HCI_BLE_SET_CONN_CTE_RSP_ENABLE, param,
param_len, std::move(cb));
}
void btsnd_hcic_ble_read_antenna_info() {
BT_HDR* p = (BT_HDR*)osi_malloc(HCI_CMD_BUF_SIZE);
uint8_t* pp = (uint8_t*)(p + 1);
p->len = HCIC_PREAMBLE_SIZE + HCIC_PARAM_SIZE_BLE_READ_ANTENNA_INFO;
p->offset = 0;
UINT16_TO_STREAM(pp, HCI_BLE_READ_ANTENNA_INFO);
UINT8_TO_STREAM(pp, HCIC_PARAM_SIZE_BLE_READ_ANTENNA_INFO);
btu_hcif_send_cmd(LOCAL_BR_EDR_CONTROLLER_ID, p);
}
#endif //DIR_FINDING_FEATURE
|