aboutsummaryrefslogtreecommitdiff
path: root/platform/atm2/ATM22xx-x1x/include/ble/co_lmp.h
blob: 2eac20621502aa9f8cfbc9771a0c6c78b7bbef19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
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
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
/**
 ****************************************************************************************
 *
 * @file co_lmp.h
 *
 * @brief This file contains the HCI Bluetooth defines, enumerations and structures
 *        definitions for use by all modules in RW stack.
 *
 * Copyright (C) RivieraWaves 2009-2015
 *
 ****************************************************************************************
 */

#ifndef CO_LMP_H_
#define CO_LMP_H_

/**
 ****************************************************************************************
 * @addtogroup CO_BT
 * @{
 ****************************************************************************************
 */


/*
 * INCLUDE FILES
 ****************************************************************************************
 */
#include "co_bt.h"
/*
 * DEFINES
 ****************************************************************************************
 */

/// LMP Opcodes
/*@TRACE*/
enum co_lmp_opcode
{
    LMP_NAME_REQ_OPCODE               =  1 ,
    LMP_NAME_RES_OPCODE               =  2 ,
    LMP_ACCEPTED_OPCODE               =  3 ,
    LMP_NOT_ACCEPTED_OPCODE           =  4 ,
    LMP_CLK_OFF_REQ_OPCODE            =  5 ,
    LMP_CLK_OFF_RES_OPCODE            =  6 ,
    LMP_DETACH_OPCODE                 =  7 ,
    LMP_INRAND_OPCODE                 =  8 ,
    LMP_COMBKEY_OPCODE                =  9 ,
    LMP_UNITKEY_OPCODE                = 10 ,
    LMP_AURAND_OPCODE                 = 11 ,
    LMP_SRES_OPCODE                   = 12 ,
    LMP_TEMPRAND_OPCODE               = 13 ,
    LMP_TEMPKEY_OPCODE                = 14 ,
    LMP_ENC_MODE_REQ_OPCODE           = 15 ,
    LMP_ENC_KEY_SIZE_REQ_OPCODE       = 16 ,
    LMP_START_ENC_REQ_OPCODE          = 17 ,
    LMP_STOP_ENC_REQ_OPCODE           = 18 ,
    LMP_SWITCH_REQ_OPCODE             = 19 ,
    LMP_HOLD_OPCODE                   = 20 ,
    LMP_HOLD_REQ_OPCODE               = 21 ,
    LMP_SNIFF_REQ_OPCODE              = 23 ,
    LMP_UNSNIFF_REQ_OPCODE            = 24 ,
    LMP_PARK_REQ_OPCODE               = 25 ,
    LMP_SET_BSWIN_OPCODE              = 27 ,
    LMP_MODIF_BEACON_OPCODE           = 28 ,
    LMP_UNPARK_BD_REQ_OPCODE          = 29 ,
    LMP_UNPARK_PM_REQ_OPCODE          = 30 ,
    LMP_INCR_PWR_REQ_OPCODE           = 31 ,
    LMP_DECR_PWR_REQ_OPCODE           = 32 ,
    LMP_MAX_PWR_OPCODE                = 33 ,
    LMP_MIN_PWR_OPCODE                = 34 ,
    LMP_AUTO_RATE_OPCODE              = 35 ,
    LMP_PREF_RATE_OPCODE              = 36 ,
    LMP_VER_REQ_OPCODE                = 37 ,
    LMP_VER_RES_OPCODE                = 38 ,
    LMP_FEATS_REQ_OPCODE              = 39 ,
    LMP_FEATS_RES_OPCODE              = 40 ,
    LMP_QOS_OPCODE                    = 41 ,
    LMP_QOS_REQ_OPCODE                = 42 ,
    LMP_SCO_LINK_REQ_OPCODE           = 43 ,
    LMP_RMV_SCO_LINK_REQ_OPCODE       = 44 ,
    LMP_MAX_SLOT_OPCODE               = 45 ,
    LMP_MAX_SLOT_REQ_OPCODE           = 46 ,
    LMP_TIMING_ACCU_REQ_OPCODE        = 47 ,
    LMP_TIMING_ACCU_RES_OPCODE        = 48 ,
    LMP_SETUP_CMP_OPCODE              = 49 ,
    LMP_USE_SEMI_PERM_KEY_OPCODE      = 50 ,
    LMP_HOST_CON_REQ_OPCODE           = 51 ,
    LMP_SLOT_OFF_OPCODE               = 52 ,
    LMP_PAGE_MODE_REQ_OPCODE          = 53 ,
    LMP_PAGE_SCAN_MODE_REQ_OPCODE     = 54 ,
    LMP_SUPV_TO_OPCODE                = 55 ,
    LMP_TEST_ACTIVATE_OPCODE          = 56 ,
    LMP_TEST_CTRL_OPCODE              = 57 ,
    LMP_ENC_KEY_SIZE_MASK_REQ_OPCODE  = 58 ,
    LMP_ENC_KEY_SIZE_MASK_RES_OPCODE  = 59 ,
    LMP_SET_AFH_OPCODE                = 60 ,
    LMP_ENCAPS_HDR_OPCODE             = 61 ,
    LMP_ENCAPS_PAYL_OPCODE            = 62 ,
    LMP_SP_CFM_OPCODE                 = 63 ,
    LMP_SP_NB_OPCODE                  = 64 ,
    LMP_DHKEY_CHK_OPCODE              = 65 ,
    LMP_PAUSE_ENC_AES_REQ_OPCODE      = 66 ,
    LMP_ESC1_OPCODE                   = 124,
    LMP_ESC2_OPCODE                   = 125,
    LMP_ESC3_OPCODE                   = 126,
    LMP_ESC4_OPCODE                   = 127,
};

/// LMP Escape 4 Extended Opcodes
enum co_lmp_ext_opcode
{
    LMP_ACCEPTED_EXT_EXTOPCODE        =  1,
    LMP_NOT_ACCEPTED_EXT_EXTOPCODE    =  2,
    LMP_FEATS_REQ_EXT_EXTOPCODE       =  3,
    LMP_FEATS_RES_EXT_EXTOPCODE       =  4,
    LMP_CLK_ADJ_EXTOPCODE             =  5,
    LMP_CLK_ADJ_ACK_EXTOPCODE         =  6,
    LMP_CLK_ADJ_REQ_EXTOPCODE         =  7,
    LMP_PKT_TYPE_TBL_REQ_EXTOPCODE    = 11,
    LMP_ESCO_LINK_REQ_EXTOPCODE       = 12,
    LMP_RMV_ESCO_LINK_REQ_EXTOPCODE   = 13,
    LMP_CH_CLASS_REQ_EXTOPCODE        = 16,
    LMP_CH_CLASS_EXTOPCODE            = 17,
    LMP_SSR_REQ_EXTOPCODE             = 21,
    LMP_SSR_RES_EXTOPCODE             = 22,
    LMP_PAUSE_ENC_REQ_EXTOPCODE       = 23,
    LMP_RESUME_ENC_REQ_EXTOPCODE      = 24,
    LMP_IO_CAP_REQ_EXTOPCODE          = 25,
    LMP_IO_CAP_RES_EXTOPCODE          = 26,
    LMP_NUM_COMPARISON_FAIL_EXTOPCODE = 27,
    LMP_PASSKEY_FAIL_EXTOPCODE        = 28,
    LMP_OOB_FAIL_EXTOPCODE            = 29,
    LMP_KEYPRESS_NOTIF_EXTOPCODE      = 30,
    LMP_PWR_CTRL_REQ_EXTOPCODE        = 31,
    LMP_PWR_CTRL_RES_EXTOPCODE        = 32,
    LMP_PING_REQ_EXTOPCODE            = 33,
    LMP_PING_RES_EXTOPCODE            = 34,
    LMP_SAM_SET_TYPE0_EXTOPCODE       = 35,
    LMP_SAM_DEFINE_MAP_EXTOPCODE      = 36,
    LMP_SAM_SWITCH_EXTOPCODE          = 37,
};

/// PDU lengths (including opcode)
enum co_lmp_pdu_length
{
    LMP_NAME_REQ_LEN              = 2 ,
    LMP_NAME_RES_LEN              = 17,
    LMP_ACCEPTED_LEN              = 2 ,
    LMP_NOT_ACCEPTED_LEN          = 3 ,
    LMP_CLK_OFF_REQ_LEN           = 1 ,
    LMP_CLK_OFF_RES_LEN           = 3 ,
    LMP_DETACH_LEN                = 2 ,
    LMP_INRAND_LEN                = 17,
    LMP_COMBKEY_LEN               = 17,
    LMP_UNITKEY_LEN               = 17,
    LMP_AURAND_LEN                = 17,
    LMP_SRES_LEN                  = 5 ,
    LMP_TEMPRAND_LEN              = 17,
    LMP_TEMPKEY_LEN               = 17,
    LMP_ENC_MODE_REQ_LEN          = 2 ,
    LMP_ENC_KEY_SIZE_REQ_LEN      = 2 ,
    LMP_START_ENC_REQ_LEN         = 17,
    LMP_STOP_ENC_REQ_LEN          = 1 ,
    LMP_SWITCH_REQ_LEN            = 5 ,
    LMP_HOLD_LEN                  = 7 ,
    LMP_HOLD_REQ_LEN              = 7 ,
    LMP_SNIFF_REQ_LEN             = 10,
    LMP_UNSNIFF_REQ_LEN           = 1 ,
    LMP_PARK_REQ_LEN              = 17,
    LMP_INCR_PWR_REQ_LEN          = 2 ,
    LMP_DECR_PWR_REQ_LEN          = 2 ,
    LMP_MAX_PWR_LEN               = 1 ,
    LMP_MIN_PWR_LEN               = 1 ,
    LMP_AUTO_RATE_LEN             = 1 ,
    LMP_PREF_RATE_LEN             = 2 ,
    LMP_VER_REQ_LEN               = 6 ,
    LMP_VER_RES_LEN               = 6 ,
    LMP_FEATS_REQ_LEN             = 9 ,
    LMP_FEATS_RES_LEN             = 9 ,
    LMP_QOS_LEN                   = 4 ,
    LMP_QOS_REQ_LEN               = 4 ,
    LMP_SCO_LINK_REQ_LEN          = 7 ,
    LMP_RMV_SCO_LINK_REQ_LEN      = 3 ,
    LMP_MAX_SLOT_LEN              = 2 ,
    LMP_MAX_SLOT_REQ_LEN          = 2 ,
    LMP_TIMING_ACCU_REQ_LEN       = 1 ,
    LMP_TIMING_ACCU_RES_LEN       = 3 ,
    LMP_SETUP_CMP_LEN             = 1 ,
    LMP_USE_SEMI_PERM_KEY_LEN     = 1 ,
    LMP_HOST_CON_REQ_LEN          = 1 ,
    LMP_SLOT_OFF_LEN              = 9 ,
    LMP_PAGE_MODE_REQ_LEN         = 3 ,
    LMP_PAGE_SCAN_MODE_REQ_LEN    = 3 ,
    LMP_SUPV_TO_LEN               = 3 ,
    LMP_TEST_ACTIVATE_LEN         = 1 ,
    LMP_TEST_CTRL_LEN             = 10,
    LMP_ENC_KEY_SIZE_MASK_REQ_LEN = 1 ,
    LMP_ENC_KEY_SIZE_MASK_RES_LEN = 3 ,
    LMP_SET_AFH_LEN               = 16,
    LMP_ENCAPS_HDR_LEN            = 4 ,
    LMP_ENCAPS_PAYL_LEN           = 17,
    LMP_SP_CFM_LEN                = 17,
    LMP_SP_NB_LEN                 = 17,
    LMP_DHKEY_CHK_LEN             = 17,
    LMP_PAUSE_ENC_AES_REQ_LEN     = 17,
};

/// LMP Escape 4 Extended PDU length (including opcode and ext opcode)
enum co_lmp_ext_pdu_length
{
    LMP_ACCEPTED_EXT_LEN        = 4 ,
    LMP_NOT_ACCEPTED_EXT_LEN    = 5 ,
    LMP_FEATS_REQ_EXT_LEN       = 12,
    LMP_FEATS_RES_EXT_LEN       = 12,
    LMP_CLK_ADJ_LEN             = 15,
    LMP_CLK_ADJ_ACK_LEN         = 3 ,
    LMP_CLK_ADJ_REQ_LEN         = 6 ,
    LMP_PKT_TYPE_TBL_REQ_LEN    = 3 ,
    LMP_ESCO_LINK_REQ_LEN       = 16,
    LMP_RMV_ESCO_LINK_REQ_LEN   = 4 ,
    LMP_CH_CLASS_REQ_LEN        = 7 ,
    LMP_CH_CLASS_LEN            = 12,
    LMP_SSR_REQ_LEN             = 9 ,
    LMP_SSR_RES_LEN             = 9 ,
    LMP_PAUSE_ENC_REQ_LEN       = 2 ,
    LMP_RESUME_ENC_REQ_LEN      = 2 ,
    LMP_IO_CAP_REQ_LEN          = 5 ,
    LMP_IO_CAP_RES_LEN          = 5 ,
    LMP_NUM_COMPARISON_FAIL_LEN = 2 ,
    LMP_PASSKEY_FAIL_LEN        = 2 ,
    LMP_OOB_FAIL_LEN            = 2 ,
    LMP_KEYPRESS_NOTIF_LEN      = 3 ,
    LMP_PWR_CTRL_REQ_LEN        = 3 ,
    LMP_PWR_CTRL_RES_LEN        = 3 ,
    LMP_PING_REQ_LEN            = 2 ,
    LMP_PING_RES_LEN            = 2 ,
    LMP_SAM_SET_TYPE0_LEN       = 17,
    LMP_SAM_DEFINE_MAP_LEN      = 17,
    LMP_SAN_SWITCH_LEN          = 9,
};

/// Maximum LMP PDU size (including opcode and ext opcode)
#define LMP_MAX_PDU_SIZE         DM1_PACKET_SIZE

/// Position of transaction ID in 1st byte
#define LMP_TR_ID_POS        0
#define LMP_TR_ID_MASK       0x01
/// Position of opcode in 1st byte
#define LMP_OPCODE_POS       1
#define LMP_OPCODE_MASK      0xFE

#define LMP_OPCODE(opcode, tr_id) (((opcode << LMP_OPCODE_POS) & LMP_OPCODE_MASK) | ((tr_id << LMP_TR_ID_POS) & LMP_TR_ID_MASK))
/*
 * MESSAGES
 ****************************************************************************************
 */

///LMP_name_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_name_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Offset
    uint8_t  offset;
};

///LMP_name_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_name_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Offset
    uint8_t  offset;
    ///Name Length
    uint8_t  length;
    ///Name Fragment
    struct name_vect name_frag;
};

///LMP_accepted PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_accepted
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Opcode of the original LMP
    uint8_t  orig_opcode;
};

///LMP_not_accepted PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_not_accepted
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Opcode of the original LMP
    uint8_t  orig_opcode;
    ///Reason for not accepting the PDU (error code)
    uint8_t  reason;
};

///LMP_clkoffset_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_clk_off_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_clkoffset_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_clk_off_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Clock Offset value
    uint16_t clk_offset ;
};

///LMP_detach PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_detach
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Reason to detach
    uint8_t  reason;
};

///LMP_in_rand PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_inrand
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Random number
    struct ltk random;
};

///LMP_comb_key PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_combkey
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Random number
    struct ltk random;
};

///LMP_unit_key PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_unitkey
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Key
    struct ltk key;
};

///LMP_au_rand PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_aurand
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Random number
    struct ltk random;
};

///LMP_sres PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_sres
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Authentication Response
    struct sres_nb Sres;
};

///LMP_temp_rand PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_temprand
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Random number
    struct ltk random;
};

///LMP_temp_key PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_tempkey
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Key
    struct ltk key;
};

///LMP_encryption_mode_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_enc_mode_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Encryption Mode
    uint8_t  enc_mode;
};

///LMP_encryption_key_size_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_enc_key_size_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Key Size
    uint8_t  key_size;
};

///LMP_start_encryption_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_start_enc_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Random number
    struct ltk random;
};

///LMP_stop_encryption_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_stop_enc_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_switch_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_switch_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Switch Instant
    uint32_t switch_inst;
};

///LMP_sniff_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_sniff_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    /// Timing Control Flags (bit 1: initialization method 1 or 2)
    uint8_t  flags;
    /// Offset (in slots)
    uint16_t d_sniff;
    /// Interval (in slots)
    uint16_t t_sniff;
    /// Attempts (number of receive slots) (in slots)
    uint16_t sniff_attempt;
    /// Timeout (number of receive slots) (in slots)
    uint16_t sniff_to;
};

///LMP_unsniff_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_unsniff_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_incr_power_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_incr_pwr_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///For future use
    uint8_t  reserved;
};

///LMP_decr_power_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_decr_pwr_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///For future use
    uint8_t  reserved;
};

///LMP_max_power PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_max_pwr
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_min_power PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_min_pwr
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_auto_rate PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_auto_rate
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_preferred_rate PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pref_rate
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Data Rate
    uint8_t  rate;
};

///LMP_version_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ver_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Version number
    uint8_t  ver;
    ///Company ID
    uint16_t co_id;
    ///Subversion number
    uint16_t subver;
};

///LMP_version_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ver_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Version number
    uint8_t  ver;
    ///Company ID
    uint16_t co_id;
    ///Subversion number
    uint16_t subver;
};

///LMP_features_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_feats_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Features
    struct features feats;
};

///LMP_features_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_feats_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Features
    struct features feats;
};

///LMP_quality_of_service PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_qos
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Poll interval
    uint16_t poll_intv;
    ///Nbc
    uint8_t  nbc;
};


///LMP_quality_of_service_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_qos_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Poll interval
    uint16_t poll_intv;
    ///Nbc
    uint8_t  nbc;
};

///LMP_SCO_link_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_sco_link_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///SCO handle
    uint8_t  sco_hdl;
    ///timing control flags
    uint8_t  flags;
    ///Dsco
    uint8_t  d_sco;
    ///Tsco
    uint8_t  t_sco;
    ///SCO packet
    uint8_t  sco_pkt;
    ///Air mode
    uint8_t  air_mode;
};

///LMP_remove_SCO_link_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_rmv_sco_link_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///SCO handle
    uint8_t  sco_hdl;
    ///Reason for its removal(error code)
    uint8_t  reason;
};

///LMP_max_slot PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_max_slot
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Max slots
    uint8_t  max_slots;
};


///LMP_max_slot_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_max_slot_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Max slots
    uint8_t  max_slots;
};

///LMP_timing_accuracy_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_timing_accu_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_timing_accuracy_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_timing_accu_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Drift
    uint8_t  drift;
    ///Jitter
    uint8_t  jitter;
};

///LMP_setup_complete PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_setup_cmp
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_use_semi_permanent_key PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_use_semi_perm_key
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_host_connection_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_host_con_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_slot_offset PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_slot_off
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Slot Offset
    uint16_t       slot_off;
    ///BD Address
    struct bd_addr addr;
};

///LMP_page_mode_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_page_mode_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Paging scheme
    uint8_t  page_scheme;
    ///Paging scheme settings
    uint8_t  page_stg;
};

///LMP_page_scan_mode_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_page_scan_mode_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Paging scheme
    uint8_t  page_scheme;
    ///Paging scheme settings
    uint8_t  page_stg;
};

///LMP_supervision_timeout PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_supv_to
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    /// Supervision Timeout (in slots, 0 means infinite timeout)
    uint16_t supv_to;
};

///LMP_test_activate PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_test_activate
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_test_control PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_test_ctrl
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Test Scenario
    uint8_t  scenario;
    ///Hopping Mode
    uint8_t  hop;
    ///Tx frequency
    uint8_t  tx_freq;
    ///Rx Frequency
    uint8_t  rx_freq;
    ///Power Control Mode
    uint8_t  pwr_ctrl;
    ///Poll period
    uint8_t  poll_period;
    ///Packet type
    uint8_t  pkt_type;
    ///length of test data
    uint16_t data_len;
};

///LMP_encryption_key_size_mask_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_enc_key_size_mask_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
};

///LMP_encryption_key_size_mask_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_enc_key_size_mask_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Encryption Key Size Mask
    uint16_t mask;
};

///LMP_set_AFH PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_set_afh
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///AFH Instant
    uint32_t        instant;
    ///AFH Mode
    uint8_t         mode;
    ///AFH channel map
    struct chnl_map map;
};

///LMP_encapsulated_header PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_encaps_hdr
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Encapsulated major type
    uint8_t  maj_type;
    ///Encapsulated minor type
    uint8_t  min_type;
    ///Encapsulated Payload Length
    uint8_t  payl_len;
};

///LMP_encapsulated_payload PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_encaps_payl
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Encapsulated data
    struct byte16 data;
};

///LMP_Simple_Pairing_Confirm PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_sp_cfm
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Commitment Value
    struct byte16 commitment_val ;
};

///LMP_Simple_Pairing_Number PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_sp_nb
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///nonce Value
    struct byte16 nonce;
};

///LMP_DHkey_check PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_dhkey_chk
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Confirmation Value
    struct ltk cfm_val;
};

///LMP_pause_encryption_aes_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pause_enc_aes_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    /// Random Number
    struct ltk rand;
};

/*
 * Extended PDUs parameter structures - Escape 4
 ****************************************************************************************/

///LMP_accepted_ext PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_accepted_ext
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Escape opcode of the original LMP
    uint8_t  orig_esc_opcode;
    ///Extended opcode of the original LMP
    uint8_t  orig_ext_opcode;
};

///LMP_not_accepted_ext PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_not_accepted_ext
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Escape opcode of the original LMP
    uint8_t  orig_esc_opcode;
    ///Extended opcode of the original LMP
    uint8_t  orig_ext_opcode;
    ///Reason
    uint8_t  reason;
};

///LMP_features_req_ext PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_feats_req_ext
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Features page
    uint8_t        page;
    ///Max supported page
    uint8_t        max_page;
    ///Extended features
    struct features ext_feats;
};

///LMP_features_res_ext PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_feats_res_ext
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Features page
    uint8_t        page;
    ///Max supported page
    uint8_t        max_page;
    ///Extended features
    struct features ext_feats;
};

///LMP_clk_adj PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_clk_adj
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Coarse clock adjustment Event ID
    uint8_t  clk_adj_id;
    ///Coarse clock adjustment instant
    uint32_t clk_adj_instant;
    ///Coarse clock adjustment intraslot alignment offset
    int16_t clk_adj_us;
    ///Coarse clock adjustment slot offset
    uint8_t  clk_adj_slots;
    ///Coarse clock adjustment mode (before/after instant)
    uint8_t  clk_adj_mode;
    ///Coarse clock adjustment PDU CLK instant
    uint32_t clk_adj_clk;
};

///LMP_clk_adj_ack PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_clk_adj_ack
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Coarse clock adjustment Event ID
    uint8_t  clk_adj_id;
};

///LMP_clk_adj_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_clk_adj_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Coarse clock adjustment intraslot alignment offset
    int16_t clk_adj_us;
    ///Coarse clock adjustment slot offset
    uint8_t  clk_adj_slots;
    ///Corase clock adjustment period
    uint8_t  clk_adj_period;
};

///LMP_packet_type_table_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pkt_type_tbl_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Packet Type table
    uint8_t  pkt_type_tbl;
};

///LMP_SAM_define_map PDU structure
struct lmp_sam_define_map
{
    ///Opcode (including transaction ID)
    uint8_t opcode;
    ///Extended opcode
    uint8_t ext_opcode;
    ///SAM Index
    uint8_t index;
    ///Tsam-sm
    uint8_t t_sam_sm;
    ///Nsam-sm
    uint8_t n_sam_sm;
    ///SAM Submaps
    struct sam_submaps submaps;
};

///LMP_SAM_set_type0 PDU structure
struct lmp_sam_set_type0
{
    ///Opcode (including transaction ID)
    uint8_t opcode;
    ///Extended opcode
    uint8_t ext_opcode;
    ///Update mode
    uint8_t update_mode;
    ///SAM Type0 submap
    struct sam_type0_submap submap;
};

///LMP_SAM_switch PDU structure
struct lmp_sam_switch
{
    ///Opcode (including transaction ID)
    uint8_t opcode;
    ///Extended opcode
    uint8_t ext_opcode;
    ///SAM Index
    uint8_t index;
    ///timing control flags
    uint8_t flags;
    ///Dsam
    uint8_t d_sam;
    ///SAM instant
    uint32_t instant;
};

///LMP_eSCO_link_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_esco_link_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///eSCO handle
    uint8_t  esco_hdl;
    ///eSCo LT Address
    uint8_t  esco_lt_addr;
    ///timing control flags
    uint8_t  flags;
    ///Desco
    uint8_t  d_esco;
    ///t_esco
    uint8_t  t_esco;
    ///Wesco
    uint8_t  w_esco;
    ///eSCO packet type M2S
    uint8_t  m2s_pkt_type;
    ///eSCO packet type S2M
    uint8_t  s2m_pkt_type;
    ///Packet Length M2S
    uint16_t m2s_pkt_len;
    ///Packet Length S2m
    uint16_t s2m_pkt_len;
    ///Air Mode
    uint8_t  air_mode;
    ///Negotiation state
    uint8_t  negt_st;
};

///LMP_remove_eSCO_link_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_rmv_esco_link_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///eSCO handle
    uint8_t  esco_hdl;
    ///Reason
    uint8_t  reason;
};

///LMP_channel_classification_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ch_class_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///AFH reporting mode
    uint8_t  rep_mode;
    ///AFH min interval
    uint16_t min_intv;
    ///AFH max interval
    uint16_t max_intv;
};

///LMP_channel_classification PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ch_class
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///AFh channel classification
    struct chnl_map ch_class;
};

///LMP_sniff_subrating_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ssr_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    /// Maximum sniff sub-rate (in number of sniff events)
    uint8_t  max_subrate;
    /// Minimum sniff mode timeout (in slots)
    uint16_t min_to;
    /// Sniff sub-rating instant (in slots, master clock value)
    uint32_t instant;
};

///LMP_sniff_subrating_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ssr_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    /// Maximum sniff sub-rate (in number of sniff events)
    uint8_t  max_subrate;
    /// Minimum sniff mode timeout (in slots)
    uint16_t min_to;
    /// Sniff sub-rating instant (in slots, master clock value)
    uint32_t instant;
};

///LMP_pause_encryption_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pause_enc_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

///LMP_resume_encryption_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_resume_enc_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

///LMP_IO_capability_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_io_cap_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///IO Capabilities
    uint8_t  io_cap;
    /// OOB Authentication data
    uint8_t  oob_auth_data;
    ///Authentication requirements
    uint8_t  auth_req;
};


///LMP_IO_capability_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_io_cap_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///IO Capabilities
    uint8_t  io_cap;
    /// OOB Authentication data
    uint8_t  oob_auth_data;
    ///Authentication requirements
    uint8_t  auth_req;
};

///LMP_numeric_comparison_failed PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_num_comparison_fail
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

///LMP_passkey_failed PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_passkey_fail
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

///LMP_oob_failed PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_oob_fail
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

///LMP_keypress_notification PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_keypress_notif
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Notification Type
    uint8_t  type;
};

///LMP_power_control_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pwr_ctrl_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Power adjustment request
    uint8_t pwr_adj;

};

///LMP_power_control_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_pwr_ctrl_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
    ///Power adjustment response
    uint8_t pwr_adj;
};

/// LMP_ping_req PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ping_req
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

/// LMP_ping_res PDU structure
/*@TRACE
 * @NO_PAD
*/
struct lmp_ping_res
{
    ///Opcode (including transaction ID)
    uint8_t  opcode;
    ///Extended opcode
    uint8_t  ext_opcode;
};

/// Union of all the LMP message structures
union lmp_pdu
{
    struct lmp_name_req                name_req              ;
    struct lmp_name_res                name_res              ;
    struct lmp_accepted                accepted              ;
    struct lmp_not_accepted            not_accepted          ;
    struct lmp_clk_off_req             clk_off_req           ;
    struct lmp_clk_off_res             clk_off_res           ;
    struct lmp_detach                  detach                ;
    struct lmp_inrand                  inrand                ;
    struct lmp_combkey                 combkey               ;
    struct lmp_unitkey                 unitkey               ;
    struct lmp_aurand                  aurand                ;
    struct lmp_sres                    sres                  ;
    struct lmp_temprand                temprand              ;
    struct lmp_tempkey                 tempkey               ;
    struct lmp_enc_mode_req            enc_mode_req          ;
    struct lmp_enc_key_size_req        enc_key_size_req      ;
    struct lmp_start_enc_req           start_enc_req         ;
    struct lmp_stop_enc_req            stop_enc_req          ;
    struct lmp_switch_req              switch_req            ;
    struct lmp_sniff_req               sniff_req             ;
    struct lmp_unsniff_req             unsniff_req           ;
    struct lmp_incr_pwr_req            incr_pwr_req          ;
    struct lmp_decr_pwr_req            decr_pwr_req          ;
    struct lmp_max_pwr                 max_pwr               ;
    struct lmp_min_pwr                 min_pwr               ;
    struct lmp_auto_rate               auto_rate             ;
    struct lmp_pref_rate               pref_rate             ;
    struct lmp_ver_req                 ver_req               ;
    struct lmp_ver_res                 ver_res               ;
    struct lmp_feats_req               feats_req             ;
    struct lmp_feats_res               feats_res             ;
    struct lmp_clk_adj                 clk_adj               ;
    struct lmp_clk_adj_ack             clk_adj_ack           ;
    struct lmp_clk_adj_req             clk_adj_req           ;
    struct lmp_qos                     qos                   ;
    struct lmp_qos_req                 qos_req               ;
    struct lmp_sco_link_req            sco_link_req          ;
    struct lmp_rmv_sco_link_req        rmv_sco_link_req      ;
    struct lmp_max_slot                max_slot              ;
    struct lmp_max_slot_req            max_slot_req          ;
    struct lmp_timing_accu_req         timing_accu_req       ;
    struct lmp_timing_accu_res         timing_accu_res       ;
    struct lmp_setup_cmp               setup_cmp             ;
    struct lmp_use_semi_perm_key       use_semi_perm_key     ;
    struct lmp_host_con_req            host_con_req          ;
    struct lmp_slot_off                slot_off              ;
    struct lmp_page_mode_req           page_mode_req         ;
    struct lmp_page_scan_mode_req      page_scan_mode_req    ;
    struct lmp_supv_to                 supv_to               ;
    struct lmp_test_activate           test_activate         ;
    struct lmp_test_ctrl               test_ctrl             ;
    struct lmp_enc_key_size_mask_req   enc_key_size_mask_req ;
    struct lmp_enc_key_size_mask_res   enc_key_size_mask_res ;
    struct lmp_set_afh                 set_afh               ;
    struct lmp_encaps_hdr              encaps_hdr            ;
    struct lmp_encaps_payl             encaps_payl           ;
    struct lmp_sp_cfm                  sp_cfm                ;
    struct lmp_sp_nb                   sp_nb                 ;
    struct lmp_dhkey_chk               dhkey_chk             ;
    struct lmp_accepted_ext            accepted_ext          ;
    struct lmp_not_accepted_ext        not_accepted_ext      ;
    struct lmp_feats_req_ext           feats_req_ext         ;
    struct lmp_feats_res_ext           feats_res_ext         ;
    struct lmp_pkt_type_tbl_req        pkt_type_tbl_req      ;
    struct lmp_sam_define_map          sam_define_map        ;
    struct lmp_sam_set_type0           sam_set_type0         ;
    struct lmp_sam_switch              sam_switch            ;
    struct lmp_esco_link_req           esco_link_req         ;
    struct lmp_rmv_esco_link_req       rmv_esco_link_req     ;
    struct lmp_ch_class_req            ch_class_req          ;
    struct lmp_ch_class                ch_class              ;
    struct lmp_ssr_req                 ssr_req               ;
    struct lmp_ssr_res                 ssr_res               ;
    struct lmp_pause_enc_req           pause_enc_req         ;
    struct lmp_resume_enc_req          resume_enc_req        ;
    struct lmp_io_cap_req              io_cap_req            ;
    struct lmp_io_cap_res              io_cap_res            ;
    struct lmp_num_comparison_fail     num_comparison_fail   ;
    struct lmp_passkey_fail            passkey_fail          ;
    struct lmp_oob_fail                oob_fail              ;
    struct lmp_keypress_notif          keypress_notif        ;
    struct lmp_pwr_ctrl_req            pwr_ctrl_req          ;
    struct lmp_pwr_ctrl_res            pwr_ctrl_res          ;
    struct lmp_ping_req                ping_req              ;
    struct lmp_ping_res                ping_res              ;
};


/// @} CO_BT
#endif // CO_LMP_H_