1 // Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies). |
|
2 // All rights reserved. |
|
3 // This component and the accompanying materials are made available |
|
4 // under the terms of the License "Symbian Foundation License v1.0" to Symbian Foundation members and "Symbian Foundation End User License Agreement v1.0" to non-members |
|
5 // which accompanies this distribution, and is available |
|
6 // at the URL "http://www.symbianfoundation.org/legal/licencesv10.html". |
|
7 // |
|
8 // Initial Contributors: |
|
9 // Nokia Corporation - initial contribution. |
|
10 // |
|
11 // Contributors: |
|
12 // |
|
13 // Description: |
|
14 // |
|
15 |
|
16 |
|
17 |
|
18 /** |
|
19 @file |
|
20 @publishedPartner |
|
21 */ |
|
22 |
|
23 #ifndef BASEBANDPACKETCONSTS_H |
|
24 #define BASEBANDPACKETCONSTS_H |
|
25 |
|
26 #include <e32def.h> |
|
27 |
|
28 // Common packet types |
|
29 const TUint16 KDM1Packet = 0x0008; /*!< DM1 Packet */ |
|
30 |
|
31 // ACL only packet types |
|
32 const TUint16 K2DH1Packet = 0x0002; /*!< 2-DH1 Packet */ |
|
33 const TUint16 K3DH1Packet = 0x0004; /*!< 3-DH1 Packet */ |
|
34 const TUint16 KDH1Packet = 0x0010; /*!< DH1 Packet */ |
|
35 const TUint16 K2DH3Packet = 0x0100; /*!< 2-DH3 Packet */ |
|
36 const TUint16 K3DH3Packet = 0x0200; /*!< 3-DH3 Packet */ |
|
37 const TUint16 KAUX1Packet = 0x0200; /*!< AUX1 Packet */ |
|
38 const TUint16 KDM3Packet = 0x0400; /*!< DM3 Packet */ |
|
39 const TUint16 KDH3Packet = 0x0800; /*!< DH3 Packet */ |
|
40 const TUint16 K2DH5Packet = 0x1000; /*!< 2-DH5 Packet */ |
|
41 const TUint16 K3DH5Packet = 0x2000; /*!< 3-DH5 Packet */ |
|
42 const TUint16 KDM5Packet = 0x4000; /*!< DM5 Packet */ |
|
43 const TUint16 KDH5Packet = 0x8000; /*!< DH5 Packet */ |
|
44 |
|
45 // SCO only packet types |
|
46 const TUint16 KHV1Packet = 0x0020; /*!< HV1 Packet */ |
|
47 const TUint16 KHV2Packet = 0x0040; /*!< HV2 Packet */ |
|
48 const TUint16 KHV3Packet = 0x0080; /*!< HV3 Packet */ |
|
49 const TUint16 KDVPacket = 0x0100; /*!< DV Packet */ |
|
50 |
|
51 // eSCO only packet types |
|
52 const TUint16 KEV3Packet = 0x0008; /*!< EV3 Packet */ |
|
53 const TUint16 KEV4Packet = 0x0010; /*!< EV4 Packet */ |
|
54 const TUint16 KEV5Packet = 0x0020; /*!< EV5 Packet */ |
|
55 const TUint16 K2EV3Packet = 0x0040; /*!< 2-EV3 Packet */ |
|
56 const TUint16 K3EV3Packet = 0x0080; /*!< 3-EV3 Packet */ |
|
57 const TUint16 K2EV5Packet = 0x0100; /*!< 2-EV5 Packet */ |
|
58 const TUint16 K3EV5Packet = 0x0200; /*!< 3-EV5 Packet */ |
|
59 |
|
60 #endif // BASEBANDPACKETCONSTS_H |
|