btconfig.h
60 KB
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
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
#ifndef __BTCONFIG_H
#define __BTCONFIG_H
/****************************************************************************
*
* File:
* $Workfile:btconfig.h$ for iAnywhere Blue SDK, Version 2.1.1
* $Revision:167$
*
* Description:
* Default constants for configuring the Bluetooth protocol stack.
*
* Copyright 1999-2005 Extended Systems, Inc.
* Portions copyright 2005 iAnywhere Solutions, Inc.
* All rights reserved. All unpublished rights reserved.
*
* Unpublished Confidential Information of iAnywhere Solutions, Inc.
* Do Not Disclose.
*
* No part of this work may be used or reproduced in any form or by any
* means, or stored in a database or retrieval system, without prior written
* permission of iAnywhere Solutions, Inc.
*
* Use of this work is governed by a license granted by iAnywhere Solutions,
* Inc. This work contains confidential and proprietary information of
* iAnywhere Solutions, Inc. which is protected by copyright, trade secret,
* trademark and other intellectual property rights.
*
****************************************************************************/
#include "config.h"
#include "bt_common_config.h"
#include "bt_jsr82_setting.h"
#include "bt_feature.h"
#include "btdrv_config.h"
#if !defined(BT_STACK) || BT_STACK == XA_DISABLED
#error "Bluetooth Stack must be enabled!"
#endif
/*---------------------------------------------------------------------------
* Bluetooth Configuration API layer
*
* The constants in this layer configure the layers of the Bluetooth
* stack. To change a constant, simply #define it in your overide.h
* include file.
*
* Configuration constants here and in the General Configuration API
* (config.h) are used to make the stack more appropriate for a
* particular environment. Constants can be modified to allow tradeoffs
* between code size, RAM usage, functionality, and throughput.
*
* Some constants are numeric, and others indicate whether a feature
* is enabled (defined as XA_ENABLED) or disabled (defined as
* XA_DISABLED).
*/
/****************************************************************************
*
* Section: General Constants
*
****************************************************************************/
#ifndef BT_CHIP_VERSION_INFO
#define BT_CHIP_VERSION_INFO
#define BT_CHIP_VERSION_RFMD 0
#define BT_CHIP_VERSION_MT6601_E1 1
#define BT_CHIP_VERSION_MT6601_E2 2
#define BT_CHIP_VERSION_MT6601_E3 3
#define BT_CHIP_VERSION_MT6601_E5 5
#define BT_CHIP_VERSION_MT6611_E1 11
#define BT_CHIP_VERSION_MT6611_E2 12
#define BT_CHIP_VERSION_MT6611_E3 13
#define BT_CHIP_VERSION_MT6611_E4 14
#define BT_CHIP_VERSION_MT6611_E5 15
#define BT_CHIP_VERSION_MT6611B_E1 21
#define BT_CHIP_VERSION_MT6611B_E2 22
#define BT_CHIP_VERSION_MT6611B_E3 23
#define BT_CHIP_VERSION_MT6611B_E4 24
#define BT_CHIP_VERSION_MT6611B_E5 25
#endif /* BT_CHIP_VERSION_INFO */
#if 0
/* under construction !*/
#endif /* 0 */
#if 0
/* under construction !*/
#ifndef __BQE_TESTER_
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
#endif /* 0 */
#if 0
/* under construction !*/
#endif /* 0 */
/*
* Usage of two compile options:
* 1) It is not allowed to turn on both MTK_BB_TESTING and MTK_BB_LOOPBACK_MODE at same time manually
* 2) If MTK_BB_LOOPBACK_MODE is turned on, the MTK_BB_TESTING will be turned on automatically
* -> But if MTK_BB_TESTING is turned on, MTK_BB_LOOPBACK_MODE will not be allowed to turned on
*/
#if defined(MTK_BB_TESTING) && defined(MTK_BB_LOOPBACK_MODE)
#error "MTK_BB_TESTING should not turn on manually with MTK_BB_LOOPBACK_MODE at the same time"
#endif
#ifdef MTK_BB_LOOPBACK_MODE
#ifndef MTK_BB_TESTING
#define MTK_BB_TESTING
#endif
#ifndef __BQE_TESTER_
#define __BQE_TESTER_
#define __L2CAP_TESTER_
#define __GAP_TESTER_
#define __SDP_TESTER_
#define __RFCOMM_TESTER_
#endif /* __BQE_TESTER_ */
#endif /* MTK_BB_LOOPBACK_MODE */
#define BT_MT66XX_SW_RETRANSMISSION_TIMEOUT 1000
#define MTK_BB_SPP_TEST_MAXTXSIZE 329
#define BT_RFTEST_WHITEN_NOT_ENABLED (0x00)
#define BT_RFTEST_WHITEN_ENABLED (0x01)
#define BT_RFTEST_TXRX_NOT_ENABLED (0x02)
#define BT_RFTEST_TXRX_ENABLED (0x04)
#define BT_RFTEST_OP_NONE (0x00)
#define BT_RFTEST_OP_ENABLED_WHITEN (0x01)
#define BT_RFTEST_OP_TXRX_TEST (0x02)
#define BT_RFTEST_OP_POWER_TEST (0x04)
#define BT_RFTEST_OP_ENTER_NSR_TEST (0x08) /*NON_SIGNALING_RX_TEST LCH, 20110808*/
#define BT_RFTEST_OP_EXIT_NSR_TEST (0x10) /*NON_SIGNALING_RX_TEST LCH, 20110808*/
#define BT_RFTEST_OP_EXIT_TXRX_TEST (0x20)
#if 0
#ifndef BT_FOR_NONE_MP_ONLY
/* under construction !*/
#endif
#endif /* 0 */
//Move to \mcu\interface\hal\bluetooth\btdrv_config.h
#if 0
#if 1
/* under construction !*/
#endif
#endif
/*---------------------------------------------------------------------------
* NUM_BT_DEVICES constant
*
* The number of devices with which we can connect. This value
* represents the maximum size of the piconet in which this device is
* the master, plus any master devices for which we are concurrently a
* slave. This value includes devices which may be parked, holding,
* or sniffing as well any active devices.
*
* The default value is 2.
*/
#ifndef NUM_BT_DEVICES
#ifdef __BT_VER_PRE21_SINGLE_LINK__
#define NUM_BT_DEVICES 1
#else /* __BT_VER_PRE21_SINGLE_LINK__ */
#define NUM_BT_DEVICES 3
#endif /* __BT_VER_PRE21_SINGLE_LINK__ */
#endif
#if NUM_BT_DEVICES < 1
#error NUM_BT_DEVICES must be greater than 0
#endif
#if NUM_BT_DEVICES > 255
#error NUM_BT_DEVICES must be less than 256
#endif
/*---------------------------------------------------------------------------
* NUM_SCO_CONNS constant
*
* Defines the number of SCO connections supported by this device.
* When NUM_SCO_CONNS is set to 0, SCO capabilities are disabled
* to save code size.
*
* The default value is 0, and the maximum is 3.
*/
#ifndef NUM_SCO_CONNS
#define NUM_SCO_CONNS (1)
#endif
#if NUM_SCO_CONNS > 3
#error NUM_SCO_CONNS must be 3 or less
#endif
#ifndef BT_ESI_DEBUG
#define BT_ESI_DEBUG
#endif
#ifndef BT_SEC_LEVEL2_SETTING_ENABLED
#define BT_SEC_LEVEL2_SETTING_ENABLED XA_ENABLED
#endif
/****************************************************************************
*
* Section: Management Entity Constants
*
****************************************************************************/
#if defined (__BT_2_1_SNIFF_SUBRATING__)
#ifndef MTK_SNIFF_SUBRATING_SUPPORTED
#define MTK_SNIFF_SUBRATING_SUPPORTED
#define MTK_SNIFF_SUBRATING_CMD_NONE 0x00
#define MTK_SNIFF_SUBRATING_CMD_MAKE 0x01
#define MTK_SNIFF_SUBRATING_PARAM_CHANGED 0x02
#endif /* MTK_SNIFF_SUBRATING_SUPPORTED */
#endif /* defined (__BT_2_1_SNIFF_SUBRATING__) */
#if defined (__BT_2_1_ENTENDED_INQUIRY_RESPONSE__)
#ifndef MTK_EXTENDED_INQUIRY_RESPONSE_MAX_NAME_SIZE
#define MTK_EXTENDED_INQUIRY_RESPONSE_MAX_NAME_SIZE 60 /* MAX value is 0x60 */
#endif
#if MTK_EXTENDED_INQUIRY_RESPONSE_MAX_NAME_SIZE > 60
#error THE_Inquiry_Response_max name size must be 60 or less
#endif
#endif /* defined (__BT_2_1_ENTENDED_INQUIRY_RESPONSE__) */
/*---------------------------------------------------------------------------
* BT_SCO_HCI_DATA constant
*
* Determines whether code to send and receive SCO is included. This
* constant should be defined only when SCO audio data is sent through
* the HCI interface. SCO connections are always supported when
* NUM_SCO_CONNS is greater than zero.
*
* By default, this constant is disabled.
*/
#ifndef BT_SCO_HCI_DATA
#define BT_SCO_HCI_DATA XA_DISABLED
#endif
#if BT_SCO_HCI_DATA == XA_ENABLED && NUM_SCO_CONNS == 0
#error NUM_SCO_CONNS must be > 0 when BT_SCO_HCI_DATA is enabled
#endif
/*---------------------------------------------------------------------------
* BT_SECURITY constant
*
* Determines whether code to handle BT security features is included.
* This constant is typically enabled, but may be disabled for minimal
* applications that don't need security.
*
* By default, this constant is enabled.
*/
#ifndef BT_SECURITY
#define BT_SECURITY XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_SECURITY constant
*
* Determines the security model that applies to new connections.
* The Bluetooth Security Architecture White Paper defines a default
* security setting that is to be used if no registration exists for
* a protocol/channel. The default security is defined as follows:
*
* Incoming Connection: Authorization and authentication required.
*
* Outgoing Connection: Authentication required.
*
* If the BT_DEFAULT_SECURITY is set to XA_ENABLED then default security
* as defined above is used for protocol/channel access requests that
* have no registered security record. In this case a default
* authorization handler must also be registered.
*
* If BT_DEFAULT_SECURITY is set to XA_DISABLED then protocol/channel
* access requests that have no security record are granted access
* (no security).
*
* By default, this constant is disabled.
*/
#ifndef BT_DEFAULT_SECURITY
#define BT_DEFAULT_SECURITY XA_DISABLED
#endif
#if BT_DEFAULT_SECURITY == XA_ENABLED && BT_SECURITY == XA_DISABLED
#error BT_SECURITY must be enabled if BT_DEFAULT_SECURITY is enabled.
#endif
/*---------------------------------------------------------------------------
* BT_SECURITY_TIMEOUT constant
*
* Specifies the number of seconds to elapse before a service-specific
* access request (see SEC_AccessRequest) is automatically cancelled.
* The stack's security manager will cancel the request regardless of
* what is causing the delay. Cancelling the request will cause the
* security request to fail, which in most cases will prevent the
* requesting service from connecting.
*
* This value does not affect authentication or encryption operations
* requested directly through APIs such as SEC_AuthenticateLink or
* SEC_SetLinkEncryption; it only affects operations initated through
* SEC_AccessRequest.
*
* Set this value to 0 to disable security timeouts. When disabled, it
* may be necessary to drop the ACL connection in order to safely cancel
* the security requeest.
*
* By default, this value is set to 80 seconds. Although any time value
* may be used, sufficient time should be allowed for the user of both
* the local and remote devices to enter PIN codes and select
* authorization settings if required.
*/
#ifndef BT_SECURITY_TIMEOUT
#define BT_SECURITY_TIMEOUT 80
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_PAGE_SCAN_WINDOW constant
*
* The following are used as the default values for settings in the radio
* module and must be 0 or match the radio defaults. When an application
* sets specific values for radio settings then returns to the default
* settings of the radio it is necessary to set the radio defaults. When
* setting the radio defaults these macros are used. Therefore, these
* values must be set appropriately for the given radio. If the values
* are set to 0 then that implies that these values cannot be changed
* for the given radio. If the values are set to 0 the API will prevent
* a application from attempting to change the values.
*/
#ifndef BT_DEFAULT_PAGE_SCAN_WINDOW
#define BT_DEFAULT_PAGE_SCAN_WINDOW 0
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_PAGE_SCAN_INTERVAL constant
*
* See BT_DEFAULT_PAGE_SCAN_WINDOW.
*/
#ifndef BT_DEFAULT_PAGE_SCAN_INTERVAL
#define BT_DEFAULT_PAGE_SCAN_INTERVAL 0
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_INQ_SCAN_WINDOW constant
*
* See BT_DEFAULT_PAGE_SCAN_WINDOW.
*/
#ifndef BT_DEFAULT_INQ_SCAN_WINDOW
#define BT_DEFAULT_INQ_SCAN_WINDOW 0
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_INQ_SCAN_INTERVAL constant
*
* See BT_DEFAULT_PAGE_SCAN_WINDOW.
*/
#ifndef BT_DEFAULT_INQ_SCAN_INTERVAL
#define BT_DEFAULT_INQ_SCAN_INTERVAL 0
#endif
/* Verify that the values are in the legal range */
#define BT_PSW_TEST \
((BT_DEFAULT_PAGE_SCAN_WINDOW != 0) && \
((BT_DEFAULT_PAGE_SCAN_WINDOW < 0x0012) || \
(BT_DEFAULT_PAGE_SCAN_WINDOW > 0x1000)))
#if BT_PSW_TEST
#error BT_DEFAULT_PAGE_SCAN_WINDOW is not legal
#endif
#define BT_PSI_TEST \
((BT_DEFAULT_PAGE_SCAN_INTERVAL != 0) && \
((BT_DEFAULT_PAGE_SCAN_INTERVAL < 0x0012) || \
(BT_DEFAULT_PAGE_SCAN_INTERVAL > 0x1000)))
#if BT_PSI_TEST
#error BT_DEFAULT_PAGE_SCAN_INTERVAL is not legal
#endif
#define BT_ISW_TEST \
((BT_DEFAULT_INQ_SCAN_WINDOW != 0) && \
((BT_DEFAULT_INQ_SCAN_WINDOW < 0x0012) || \
(BT_DEFAULT_INQ_SCAN_WINDOW > 0x1000)))
#if BT_ISW_TEST
#error BT_DEFAULT_INQ_SCAN_WINDOW is not legal
#endif
#define BT_ISI_TEST \
((BT_DEFAULT_INQ_SCAN_INTERVAL != 0) && \
((BT_DEFAULT_INQ_SCAN_INTERVAL < 0x0012) || \
(BT_DEFAULT_INQ_SCAN_INTERVAL > 0x1000)))
#if BT_ISI_TEST
#error BT_DEFAULT_INQ_SCAN_INTERVAL is not legal
#endif
/*---------------------------------------------------------------------------
* BT_HCI_NUM_INIT_RETRIES constant
*
* Specifies the number of times the Radio Manager should retry the
* initialization of HCI when it fails to initialize.
*/
#ifndef BT_HCI_NUM_INIT_RETRIES
#define BT_HCI_NUM_INIT_RETRIES 0x0A //Maybe reset many times,re-init 0 when power on succesfully
#endif
/*---------------------------------------------------------------------------
* BT_DEFAULT_PAGE_TIMEOUT constant
*
* The BT_DEFAULT_PAGE_TIMEOUT constant is the maximum time the
* local Link Manager will wait for a response from the remote
* device on a connection attempt. The default is 0x2000 = 5.12 sec.
* <2011/03/11, Stryker Modified>
* change default into 0x3800 = 8.96 sec.
* 5.12s is only the theoric value without interference.
*/
#ifndef BT_DEFAULT_PAGE_TIMEOUT
#define BT_DEFAULT_PAGE_TIMEOUT 0x3800
#endif
//Move to \mcu\interface\hal\bluetooth\btdrv_config.h
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#ifndef BT_PACKET_HEADER_LEN
/* under construction !*/
#endif
/* under construction !*/
#if BT_PACKET_HEADER_LEN < 14 || BT_PACKET_HEADER_LEN > 255
/* under construction !*/
#endif
#endif
/*---------------------------------------------------------------------------
* NUM_KNOWN_DEVICES constant
*
* Defines the maximum number of devices that the ME Device Selection
* manager can track. If this value is zero, the MEDEV component is
* disabled, resulting in a code size savings.
*/
#ifndef NUM_KNOWN_DEVICES
#define NUM_KNOWN_DEVICES 30
#endif
/*---------------------------------------------------------------------------
* DS_NUM_SERVICES constant
*
* This constant represents the maximum number of services that can
* be tracked within a BtDeviceContext. Each time a successful service
* search attribute request is performed, the UUID of the found service
* is stored in the device context. This list of services is used for
* for selecting the best device for a specific service type. If this
* constant is defined to 0, service tracking is disabled and the
* supporting code is eliminated from the build.
*/
#ifndef DS_NUM_SERVICES
#define DS_NUM_SERVICES 0
#endif
/****************************************************************************
*
* Section: HCI Constants
*
****************************************************************************/
/*---------------------------------------------------------------------------
* HCI_RESET_TIMEOUT constant
*
* Specifies the amount of time that the HCI will wait for a response
* to the RESET command before indicating an error to the Radio Manager.
* When the Radio Manager detects the error, it will attempt to reset
* the transports and the HCI again.
*
* The default is 10 seconds.
*/
#ifndef HCI_RESET_TIMEOUT
#define HCI_RESET_TIMEOUT 10000
#endif
/*---------------------------------------------------------------------------
* HCI_NUM_PACKETS constant
*
* Represents the number of HCI packets allocated for sending data to
* the Host Controller. These packets are used for ACL data and
* SCO data. If the HCI layer runs out of packets, no more data or
* commands will be sent until the transport layer returns one.
*
* The default number of packets is 2.
*/
#ifndef HCI_NUM_PACKETS
#define HCI_NUM_PACKETS 20
#endif
/*---------------------------------------------------------------------------
* HCI_NUM_COMMANDS constant
*
* Represents the number of HCI packets allocated for sending commands
* to the host controller.
*
* The default number of packets is 1.
*/
#ifndef HCI_NUM_COMMANDS
#define HCI_NUM_COMMANDS 1
#endif
/*---------------------------------------------------------------------------
* HCI_NUM_EVENTS constant
*
* Represents the number of HCI buffers allocated for handling events
* from the host controller.
*
* The default number of packets is 2.
*/
#ifndef HCI_NUM_EVENTS
#define HCI_NUM_EVENTS 8
#endif
//Move to \mcu\interface\hal\bluetooth\btdrv_config.h
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#ifndef HCI_CMD_PARM_LEN
/* under construction !*/
#endif
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#if HCI_CMD_PARM_LEN < 248
/* under construction !*/
#endif
#endif
#define BT_SSP_IO_CAPABILITY (0x01) /* DisplayYesNo */
#define BT_SSP_OOB_PRESENT_STATE (0x00) /* OOB authentication data not present */
/*---------------------------------------------------------------------------
* HCI_HOST_FLOW_CONTROL constant
*
* Controls whether HCI applies flow control to data received from the
* host controller.
*
* When HCI_HOST_FLOW_CONTROL is enabled, the HCI layer uses
* HCC_HOST_NUM_COMPLETED_PACKET commands to periodically tell the
* radio hardware how many receive packets it can accept. This is
* necessary if the HCI driver's receive buffers could overflow
* with incoming data.
*
* When HCI_HOST_FLOW_CONTROL is disabled, the HCI driver assumes
* that it can process data faster than the radio hardware can generate
* it.
*
* By default, host-side flow control is disabled.
*/
#ifndef HCI_HOST_FLOW_CONTROL
#define HCI_HOST_FLOW_CONTROL XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* HCI_SCO_FLOW_CONTROL constant
*
* Controls whether the host controller applies flow control to SCO data
* sent by the host.
*
* When HCI_SCO_FLOW_CONTROL is enabled, flow control is applied to SCO
* data transmitted to the host controller.
*
* When HCI_SCO_FLOW_CONTROL is disabled, no flow control mechanism is
* used when transmitting data to the host controller.
*
* By default, SCO flow control is disabled.
*/
#ifndef HCI_SCO_FLOW_CONTROL
#define HCI_SCO_FLOW_CONTROL XA_DISABLED
#endif
/*---------------------------------------------------------------------------
* HCI_ALLOW_PRESCAN constant
*
* Controls whether prescan handlers can be registered with HCI. Prescan
* handlers allow receive and transmit data to be viewed or modified
* before being sent or received by the stack.
*
* When HCI_ALLOW_PRESCAN is enabled, the functions for registering
* prescan handlers are included in the code.
*
* When HCI_ALLOW_PRESCAN is disabled, the functions for registering
* prescan handlers are not included in the code.
*/
#ifndef HCI_ALLOW_PRESCAN
#define HCI_ALLOW_PRESCAN XA_DISABLED
#endif
/*-------------------------------------------------------------------------
* HCI_ACL_DATA_SIZE constant
*
* Defines the maximum data size of a received ACL packet in the HCI
* layer. This value affects the size of receive buffers allocated
* by the HCI driver.
*
* This value must be at least 255 and no more than 65531. The default
* is 800 bytes.
*/
#ifndef HCI_ACL_DATA_SIZE
#ifdef __BT_VER_PRE21_SINGLE_LINK__
#define HCI_ACL_DATA_SIZE 339
#else /* __BT_VER_PRE21_SINGLE_LINK__ */
#if defined (__BT_CHIP_VERSION_1__)
#define HCI_ACL_DATA_SIZE 1021
#else
#define HCI_ACL_DATA_SIZE 339
#endif
#endif /* __BT_VER_PRE21_SINGLE_LINK__ */
#endif /* HCI_ACL_DATA_SIZE */
#if HCI_ACL_DATA_SIZE > 65531
#error HCI_ACL_DATA_SIZE cannot be greater than 65531
#endif
#if HCI_ACL_DATA_SIZE < 255
#error HCI_ACL_DATA_SIZE cannot be less than 255
#endif
/*-------------------------------------------------------------------------
* HCI_SCO_DATA_SIZE constant
*
* Defines the maximum data size of a received SCO packet in the HCI
* layer. This value affects the size of receive buffers allocated by
* the HCI driver.
*
* The SCO data size must be less than 256 bytes. The default size is
* 255 bytes.
*/
#ifndef HCI_SCO_DATA_SIZE
#define HCI_SCO_DATA_SIZE 255
#endif
#if HCI_SCO_DATA_SIZE > 255
#error HCI_SCO_DATA_SIZE must be less than 256
#endif
/*-------------------------------------------------------------------------
* HCI_NUM_RX_ACL_BUFFERS constant
*
* Defines the number of buffers allocated by the HCI driver
* for receiving ACL data.
*
* By default, 8 ACL data buffers are allocated.
*/
#ifndef HCI_NUM_RX_ACL_BUFFERS
#if defined (__MTK_STP_SUPPORTED__)
#define HCI_NUM_RX_ACL_BUFFERS 4
#else
#define HCI_NUM_RX_ACL_BUFFERS 2
#endif
#endif /* HCI_NUM_RX_ACL_BUFFERS */
/*-------------------------------------------------------------------------
* HCI_NUM_TX_ACL_BUFFERS constant
*
* Defines the number of buffers allocated by the HCI firmware
* for receiving ACL data.
*
* By default, 2 ACL data buffers are allocated.
*/
#ifndef HCI_NUM_TX_ACL_BUFFERS
#if defined (__BT_CHIP_VERSION_1__)
#define HCI_NUM_TX_ACL_BUFFERS 2
#else
#define HCI_NUM_TX_ACL_BUFFERS 2
#endif
#endif /* HCI_NUM_TX_ACL_BUFFERS */
/*-------------------------------------------------------------------------
* HCI_NUM_SCO_BUFFERS constant
*
* Defines the number of buffers allocated by the HCI driver
* for receiving SCO data. If the number of SCO connections allowed
* (NUM_SCO_CONNS) is zero, the HCI does not need to
* allocate any SCO buffers.
*
* By default, 8 SCO data buffers are allocated.
*/
#ifndef HCI_NUM_SCO_BUFFERS
#define HCI_NUM_SCO_BUFFERS 8
#endif
/*-------------------------------------------------------------------------
* HCI_USB_TX_BUFFER_SIZE constant
*
* Defines the buffer size in the HCI transport for sending ACL and
* SCO packets. When a USB transport is used, packets must be written
* as one contiguous buffer; therefore, BtPacket header and data must
* be concatenated before calling USB_Write. This constant determines
* the size of the receiving buffer.
*
* Optimally, this value is the same as the value the radio controller
* returns in response to the Read_Buffer_Size HCI command + 4, or
* 251 (the size of the largest HCI Command), whichever is greater.
* Read_Buffer_Size returns the length of the buffer available in
* the radio controller and is used for flow control from the host to
* the radio.
*
* By default, zero indicates the no USB transport is being used.
*
* IMPORTANT: Do NOT change the default value unless you are using a
* USB transport.
*/
#ifndef HCI_USB_TX_BUFFER_SIZE
// #define HCI_USB_TX_BUFFER_SIZE 0
#define HCI_USB_TX_BUFFER_SIZE 260
#endif /* HCI_USB_TX_BUFFER_SIZE */
/****************************************************************************
*
* Section: L2CAP Constants
*
****************************************************************************/
/*---------------------------------------------------------------------------
* L2CAP_NUM_PROTOCOLS constant
*
* Defines the number of protocol services that may be layered above
* L2CAP.
*
* Between 1 and 255 L2CAP protocol services are allowed. The default
* is three: one for the SDP client, one for the SDP server,
* and one for RFCOMM.
*/
#ifndef L2CAP_NUM_PROTOCOLS
#if BT_JSR82_ENABLED
#define L2CAP_NUM_PROTOCOLS (9+5)
#else
#define L2CAP_NUM_PROTOCOLS 9
#endif
#endif /* L2CAP_NUM_PROTOCOLS */
#if L2CAP_NUM_PROTOCOLS < 1 || L2CAP_NUM_PROTOCOLS > 255
#error L2CAP_NUM_PROTOCOLS must be between 1 and 255
#endif
/*---------------------------------------------------------------------------
* L2CAP_NUM_GROUPS constant
*
* Defines the number of broadcast groups supported by L2CAP. When
* this value is zero, support for groups is removed from the stack,
* reducing code size.
*
* Between 0 and 255 L2CAP groups are allowed. The default number of
* groups is zero.
*/
#ifndef L2CAP_NUM_GROUPS
#define L2CAP_NUM_GROUPS 0
#endif
#if L2CAP_NUM_GROUPS > 255
#error L2CAP_NUM_GROUPS must be no greater than 255
#endif
/*---------------------------------------------------------------------------
* L2CAP_PING_SUPPORT constant
*
* Controls whether the Ping operation (L2CAP_Ping) is supported.
* When disabled, the L2CAP_Ping() API is not included in the stack,
* resulting in code size savings.
*
* By default, Ping support is enabled.
*/
#ifndef L2CAP_PING_SUPPORT
#define L2CAP_PING_SUPPORT XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* L2CAP_GET_INFO_SUPPORT constant
*
* Controls whether the GetInfo operation (L2CAP_GetInfo) is supported.
* When disabled, the L2CAP_GetInfo() API is not included in the stack,
* resulting in code size savings.
*
* By default, GetInfo support is disabled.
*/
#ifndef L2CAP_GET_INFO_SUPPORT
#define L2CAP_GET_INFO_SUPPORT XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* L2CAP_FLEXIBLE_CONFIG constant
*
* Controls whether a L2CAP user is allowed to manage channel
* configuration options.
*
* When L2CAP_FLEXIBLE_CONFIG is enabled, the application will receive
* events have access to functions which enable it to control the
* flow of configuration requests and responses.
*
* When L2CAP_FLEXIBLE_CONFIG is disabled, configuration messages are
* handled internally by the protocol. The associated APIs are not
* included in the stack, resulting in code size savings.
*
* By default, L2CAP flexible configuration is disabled.
*/
#ifndef L2CAP_FLEXIBLE_CONFIG
#define L2CAP_FLEXIBLE_CONFIG XA_DISABLED
#endif
/*---------------------------------------------------------------------------
* L2CAP_RTX_TIMEOUT constant
*
* Defines the response timeout value for signaling commands, in
* seconds. If the timer elapses without a response from the remote
* device, the channel is disconnected.
*
* The timeout value may range from 1 to 60 seconds. The default value
* is 30 seconds.
*/
#ifndef L2CAP_RTX_TIMEOUT
#define L2CAP_RTX_TIMEOUT 20 /* W0933: from 10 to 20 */
#endif
#if L2CAP_RTX_TIMEOUT < 1 || L2CAP_RTX_TIMEOUT > 60
#error L2CAP_RTX_TIMEOUT must be between 1 and 60 seconds.
#endif
/*---------------------------------------------------------------------------
* L2CAP_ERTX_TIMEOUT constant
*
* Defines the extended response timeout value for signaling commands,
* in seconds. Certain signaling commands (such as a Connect Response
* Pending) allow for a longer timeout period than the L2CAP_RTX_TIMEOUT
* value. When the ERTX timer elapses without a response, the channel
* is disconnected.
*
* The extended timeout value may range from 60 to 300 seconds. The
* default value is 150 seconds.
*/
#ifndef L2CAP_ERTX_TIMEOUT
#define L2CAP_ERTX_TIMEOUT 150
#endif
#if L2CAP_ERTX_TIMEOUT < 60 || L2CAP_ERTX_TIMEOUT > 300
#error L2CAP_ERTX_TIMEOUT must be between 60 and 300 seconds.
#endif
//Move to \mcu\interface\hal\bluetooth\btdrv_config.h
#if 0
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#ifndef L2CAP_FLOW_CONTROL
/* under construction !*/
#endif
#endif
/*---------------------------------------------------------------------------
* L2CAP_MTU constant
*
* Defines the largest receivable L2CAP data packet payload, in bytes.
* This limitation applies only to packets received from the remote device.
* When L2CAP_FLOW_CONTROL is enabled, channels requesting Flow & Error
* Control mode are not limited by this constant.
*
* This constant also affects the L2CAP Connectionless MTU. Some profiles
* require a minimum Connectionless MTU that is greater than the L2CAP
* minimum of 48 bytes. When implementing such a profile it is important
* that the L2CAP_MTU constant be at least as large as the specified
* Connectionless MTU size.
*
* This value may range from 48 to 65529. The default value is 672 bytes.
*/
#ifndef L2CAP_MTU
#ifdef __BT_VER_PRE21_SINGLE_LINK__
#define L2CAP_MTU 339
#else /* __BT_VER_PRE21_SINGLE_LINK__ */
#if defined (__BT_CHIP_VERSION_1__)
#define L2CAP_MTU 1021
#else
#define L2CAP_MTU 672
#endif
#endif /* __BT_VER_PRE21_SINGLE_LINK__ */
#endif /* L2CAP_MTU */
#if L2CAP_MTU < 48 || L2CAP_MTU > 65529
#error L2CAP_MTU must be between 48 and 65529.
#endif
/*---------------------------------------------------------------------------
* L2CAP_NUM_CHANNELS constant
*
* Defines the number of L2CAP Channels, based on number of protocols and
* devices. This constant must be large enough to support all the channels
* that are needed by the upper layer protocols. There is typically one
* channel per protocol per supported device.
*/
#ifndef L2CAP_NUM_CHANNELS
/*
* First calculate the number of L2CAP Auxiliary Channels. Auxiliary channels
* are used to support the Echo (Ping) and Info (GetInfo) signalling procedures.
*/
#if (L2CAP_PING_SUPPORT == XA_ENABLED) && (L2CAP_GET_INFO_SUPPORT == XA_ENABLED)
#define AUX_CHANNELS 2
#elif (L2CAP_PING_SUPPORT == XA_ENABLED) || (L2CAP_GET_INFO_SUPPORT == XA_ENABLED)
#define AUX_CHANNELS 1
#else
#define AUX_CHANNELS 0
#endif
#define L2CAP_NUM_CHANNELS ((L2CAP_NUM_PROTOCOLS * NUM_BT_DEVICES) + AUX_CHANNELS)
#endif /* L2CAP_NUM_CHANNELS */
#if L2CAP_NUM_CHANNELS < 1
#error L2CAP_NUM_CHANNELS must be at least 1
#endif
/*---------------------------------------------------------------------------
* L2CAP_DEREGISTER_FUNC constant
*
* Controls whether the L2CAP_DeregisterPsm function is allowed. In
* cases where L2CAP services will be dynamically loaded or unloaded,
* this constant must be enabled.
*
* By default, L2CAP service deregistration is disabled. Disabling this
* option results in code size savings.
*/
#ifndef L2CAP_DEREGISTER_FUNC
#define L2CAP_DEREGISTER_FUNC XA_ENABLED
#endif
/*---------------------------------------------------------------------------
* L2CAP_NUM_SIGNAL_PACKETS constant
*
* Defines the number of signaling packets allocated by L2CAP.
*
* By default, L2CAP allocates two packets per device.
*/
#ifndef L2CAP_NUM_SIGNAL_PACKETS
// #define L2CAP_NUM_SIGNAL_PACKETS (NUM_BT_DEVICES * 2)
#define L2CAP_NUM_SIGNAL_PACKETS ((L2CAP_NUM_PROTOCOLS * NUM_BT_DEVICES) + AUX_CHANNELS)
#endif /* L2CAP_NUM_SIGNAL_PACKETS */
#if L2CAP_NUM_SIGNAL_PACKETS < 1
#error L2CAP_NUM_SIGNAL_PACKETS must be at least 1
#endif
/*---------------------------------------------------------------------------
* L2CAP_PRELUDE_SIZE constant
*
* Defines the number of bytes that are appended to the front of the
* L2CAP reassembly buffer. This is only recommended for use by
* protocols which are layered directly above L2CAP.
*
* By default, L2CAP allocates zero extra space.
*/
#ifndef L2CAP_PRELUDE_SIZE
#define L2CAP_PRELUDE_SIZE 0
#endif
#if L2CAP_PRELUDE_SIZE+L2CAP_MTU > 65529
#error L2CAP_PRELUDE_SIZE plus L2CAP_MTU must be less than 65529.
#endif
/****************************************************************************
*
* Section: SDP Constants
*
****************************************************************************/
/*-------------------------------------------------------------------------
* SDP_CLIENT_SUPPORT constant
*
* Controls whether the SDP client is included in the SDP protocol. Set
* this constant to XA_ENABLED when it is necessary to have the SDP client
* compiled into your system.
*
* By default, the SDP client is enabled.
*/
#ifndef SDP_CLIENT_SUPPORT
#define SDP_CLIENT_SUPPORT XA_ENABLED
#endif
/*-------------------------------------------------------------------------
* SDP_SERVER_SUPPORT constant
*
* Controls whether the SDP server is included in the SDP protocol. Set
* this constant to XA_ENABLED when it is necessary to have the SDP server
* compiled into your system.
*
* By default, the SDP server is enabled.
*/
#ifndef SDP_SERVER_SUPPORT
#define SDP_SERVER_SUPPORT XA_ENABLED
#endif
#if (SDP_SERVER_SUPPORT == XA_DISABLED) && (SDP_CLIENT_SUPPORT == XA_DISABLED)
#error SDP_CLIENT_SUPPORT and/or SDP_SERVER_SUPPORT must be enabled.
#endif
#if SDP_CLIENT_SUPPORT == XA_ENABLED
/*-------------------------------------------------------------------------
* SDP_CLIENT_LOCAL_MTU constant
*
* Defines the maximum L2CAP MTU used for the local SDP client.
*
* This value may range from 48 to the L2CAP MTU size (L2CAP_MTU).
* By default, this value is equal to the L2CAP_MTU size.
*/
#ifndef SDP_CLIENT_LOCAL_MTU
#define SDP_CLIENT_LOCAL_MTU L2CAP_MTU
#endif
#if SDP_CLIENT_LOCAL_MTU < 48 || SDP_CLIENT_LOCAL_MTU > L2CAP_MTU
#error SDP_CLIENT_LOCAL_MTU must be between 48 and L2CAP_MTU.
#endif
/*-------------------------------------------------------------------------
* SDP_CLIENT_MIN_REMOTE_MTU constant
*
* Defines the minimum remote MTU size acceptable to the local
* SDP client. If the remote SDP server cannot support the specified
* MTU size, the connection attempt will fail and SDP operations will
* not occur.
*
* This value may range from 48 to the L2CAP MTU size (L2CAP_MTU).
* By default, this value is 48.
*/
#ifndef SDP_CLIENT_MIN_REMOTE_MTU
#define SDP_CLIENT_MIN_REMOTE_MTU 48
#endif
#if SDP_CLIENT_MIN_REMOTE_MTU < 48 || SDP_CLIENT_MIN_REMOTE_MTU > L2CAP_MTU
#error SDP_CLIENT_MIN_REMOTE_MTU must be between 48 and L2CAP_MTU.
#endif
/*-------------------------------------------------------------------------
* SDP_PARSING_FUNCS constant
*
* Controls whether the SDP response parsing is included and made
* available to the application. Set this constant to XA_ENABLED
* when it is necessary to have SDP response parsing available.
*
* By default, SDP parsing is enabled.
*
*/
#ifndef SDP_PARSING_FUNCS
#define SDP_PARSING_FUNCS XA_ENABLED
#endif
#endif /* SDP_CLIENT_SUPPORT == XA_ENABLED */
#if SDP_SERVER_SUPPORT == XA_ENABLED
/*-------------------------------------------------------------------------
* SDP_NUM_CLIENTS constant
*
* Defines the maximum number of clients that can connect
* simultaneously to the SDP server.
*
* This value may range from 1 to the number of possible devices
* (NUM_BT_DEVICES). The default is NUM_BT_DEVICES.
*/
#ifndef SDP_NUM_CLIENTS
#define SDP_NUM_CLIENTS NUM_BT_DEVICES
#endif
#if (SDP_NUM_CLIENTS < 1) || (SDP_NUM_CLIENTS > NUM_BT_DEVICES)
#error SDP_NUM_CLIENTS must be greater than 0 and less than or equal to NUM_BT_DEVICES
#endif
/*-------------------------------------------------------------------------
* SDP_ACTIVE_CLIENTS constant
*
* Defines the maximum number of active clients that can connect
* simultaneously to the SDP server. Active clients are those that
* are not in park.
*
* This value may range from 1 to the number of possible active devices
* (16). The default value is NUM_BT_DEVICES.
*/
#ifndef SDP_ACTIVE_CLIENTS
#if NUM_BT_DEVICES < 16
#define SDP_ACTIVE_CLIENTS (NUM_BT_DEVICES)
#else
#define SDP_ACTIVE_CLIENTS 16
#endif
#endif /* SDP_ACTIVE_CLIENTS */
#if (SDP_ACTIVE_CLIENTS < 1) || (SDP_ACTIVE_CLIENTS > NUM_BT_DEVICES) || (SDP_ACTIVE_CLIENTS > 16)
#error SDP_ACTIVE_CLIENTS must be greater than 0 and less than or equal to NUM_BT_DEVICES and 16.
#endif
/*-------------------------------------------------------------------------
* SDP_SERVER_SEND_SIZE constant
*
* Defines the maximum number of bytes that the server can send in a
* single response.
*
* This value may range from 48 to the L2CAP MTU size (L2CAP_MTU). The
* default is 128.
*/
#ifndef SDP_SERVER_SEND_SIZE
#define SDP_SERVER_SEND_SIZE 128
#endif
#if (SDP_SERVER_SEND_SIZE < 48) || (SDP_SERVER_SEND_SIZE > 255)
#error SDP_SERVER_SEND_SIZE must be between 48 and 255
#endif
/*-------------------------------------------------------------------------
* SDP_SERVER_MAX_LEVEL constant
*
* Defines the maximum number of nested data element sequences in
* an SDP attribute. SDP uses this value internally when examining
* attributes. If the number of nested data elements exceeds
* SDP_SERVER_MAX_LEVEL, certain SDP functions will return errors.
*
* The default value is four, which allows for typical attributes.
*/
#ifndef SDP_SERVER_MAX_LEVEL
#define SDP_SERVER_MAX_LEVEL 4
#endif
#if SDP_SERVER_MAX_LEVEL < 4
#error SDP_SERVER_MAX_LEVEL must be at least 4
#endif
/*-------------------------------------------------------------------------
* SDP_SERVER_LOCAL_MTU constant
*
* Defines the maximum L2CAP MTU used for the local SDP server.
*
* This value may range from 48 to the L2CAP MTU size (L2CAP_MTU).
* By default, this value is equal to the L2CAP_MTU size.
*/
#ifndef SDP_SERVER_LOCAL_MTU
#define SDP_SERVER_LOCAL_MTU L2CAP_MTU
#endif
#if SDP_SERVER_LOCAL_MTU < 48 || SDP_SERVER_LOCAL_MTU > L2CAP_MTU
#error SDP_SERVER_LOCAL_MTU must be between 48 and L2CAP_MTU.
#endif
/*-------------------------------------------------------------------------
* SDP_SERVER_MIN_REMOTE_MTU constant
*
* Defines the minimum remote MTU size acceptable to the local
* SDP server. If the remote SDP client cannot support the specified
* MTU size, the connection attempt will fail and SDP operations will
* not occur.
*
* This value may range from 48 to the L2CAP MTU size (L2CAP_MTU).
* By default, this value is 48.
*/
#ifndef SDP_SERVER_MIN_REMOTE_MTU
#define SDP_SERVER_MIN_REMOTE_MTU 48
#endif
#if SDP_SERVER_MIN_REMOTE_MTU < 48 || SDP_SERVER_MIN_REMOTE_MTU > L2CAP_MTU
#error SDP_SERVER_MIN_REMOTE_MTU must be between 48 and L2CAP_MTU.
#endif
#endif /* SDP_SERVER_SUPPORT == XA_ENABLED */
/****************************************************************************
*
* Section: RFCOMM Constants
*
****************************************************************************/
/*-------------------------------------------------------------------------
* RFCOMM_PROTOCOL constant
*
* Controls whether the RFCOMM protocol layer will be included. Set
* this constant to XA_ENABLED when it is necessary to have RFCOMM
* compiled into your system. This is necessary for all profiles based on
* the serial profile.
*
* By default, RFCOMM is enabled.
*/
#ifndef RFCOMM_PROTOCOL
#define RFCOMM_PROTOCOL XA_ENABLED
#endif
#if RFCOMM_PROTOCOL == XA_ENABLED
/*-------------------------------------------------------------------------
* RF_SECURITY constant
*
* Controls whether RFCOMM protocol layer security is enabled.
* This operates in conjunction with BT_SECURITY. If BT_SECURITY is
* enabled, then an application can enforce different levels of
* security from the Bluetooth stack. Level 2 security includes
* the ability to trigger security on an RFCOMM service ID. If
* RF_SECURITY is disabled, then code to perform RFCOMM security
* checks is excluded. It is possible to enable BT_SECURITY but
* disable RF_SECURITY. For example, if an application wishes to use
* security (BT_SECURITY), but will not use RFCOMM level security,
* then it should enable BT_SECURITY and disable RF_SECURITY to
* minimize code size. If BT_SECURITY is disabled, then RF_SECURITY will
* be disabled as well.
*
* By default, RF_SECURITY inherits the state of BT_SECURITY.
*/
#ifndef RF_SECURITY
#define RF_SECURITY BT_SECURITY
#endif
#if BT_SECURITY != XA_ENABLED
#if RF_SECURITY == XA_ENABLED
#error RF_SECURITY requires BT_SECURITY
#endif /* RF_SECURITY */
#endif /* BT_SECURITY != XA_ENABLED */
/*-------------------------------------------------------------------------
* RF_SEND_TEST constant
*
* Controls whether the stack offers support for sending an RFCOMM
* test. When enabled, the RF_SendTest API can be used to test
* the connection with the remote device.
*
* By default, sending RF tests is disabled.
*/
#ifndef RF_SEND_TEST
#define RF_SEND_TEST XA_DISABLED
#endif
/*-------------------------------------------------------------------------
* RF_SEND_CONTROL constant
*
* Controls whether RFCOMM can be used to send control channel
* information. This includes modem status, line status, and negotiation
* of remote port settings.
*
* If RF_SEND_CONTROL is enabled, control channel information can
* be sent and processed by the application. This includes support for
* the following events and APIs.
*
* Events: RFEVENT_MODEM_STATUS_IND, RFEVENT_MODEM_STATUS_CNF,
* RFEVENT_LINE_STATUS_IND, RFEVENT_LINE_STATUS_CNF,
* RFEVENT_PORT_STATUS_CNF, RFEVENT_PORT_NEG_CNF.
*
* APIs: RF_SetModemStatus, RF_SetLineStatus, RF_RequestPortSettings,
* RF_AcceptPortSettings, RF_RequestPortStatus, and RF_SendPortStatus.
*
* If RF_SEND_CONTROL is disabled, RFCOMM will handle control channel
* requests received from the remote device, but will not send control
* channel requests to the remote device. The APIs and Events listed
* above are disabled, resulting in significant code size savings.
*
* By default, sending control channel information is enabled.
*/
#ifndef RF_SEND_CONTROL
#define RF_SEND_CONTROL XA_ENABLED
#endif
/*-------------------------------------------------------------------------
* NUM_RF_SERVERS constant
*
* Defines the number of RFCOMM services that can be registered with
* RFCOMM_RegisterServerChannel.
*
* This value may range from 0 to 30. The default is 4.
*/
#ifndef NUM_RF_SERVERS
#define NUM_RF_SERVERS 29
#endif
#if L2CAP_FLOW_CONTROL == XA_ENABLED
#define RF_NUM_RETRANSMISSION_WINDOW_SIZE 10
#endif
#if NUM_RF_SERVERS >= 0
#if NUM_RF_SERVERS > 30
#error NUM_RF_SERVERS must not exceed 30
#endif
#else /* NUM_RF_SERVERS >= 0 */
#error NUM_RF_SERVERS must be 0 or more
#endif /* NUM_RF_SERVERS >= 0 */
/*-------------------------------------------------------------------------
* NUM_RF_CHANNELS constant
*
* Defines the maximum number of RFCOMM channels that can be
* established to each device. This includes both server and client
* channels.
*
* The default number of channels is twice the number of local
* servers.
*/
#ifdef NUM_RF_CHANNELS
#if (NUM_RF_CHANNELS < NUM_RF_SERVERS) || (NUM_RF_CHANNELS > 60)
#error NUM_RF_CHANNELS value is invalid
#endif
#else /* NUM_RF_CHANNELS */
#if NUM_RF_SERVERS > 0
#define NUM_RF_CHANNELS (NUM_RF_SERVERS * 2)
#else
#define NUM_RF_CHANNELS 1
#endif
#endif /* NUM_RF_CHANNELS */
#if !(NUM_RF_CHANNELS > 0)
#error NUM_RF_CHANNELS must be greater than 0
#endif
/*-------------------------------------------------------------------------
* RF_MAX_FRAME_SIZE constant
*
* Defines the maximum frame size for an RFCOMM channel. All registered
* RfChannel structures must have a "maxFrameSize" equal to or less
* than this value.
*
* This value may range between 127 bytes and 32767 bytes (or the
* L2CAP_MTU size minus 5, whichever is lower). The default maximum
* frame size is the L2CAP_MTU size, minus five bytes for RFCOMM
* protocol information.
*/
#ifndef RF_MAX_FRAME_SIZE
#if defined (__BT_CHIP_VERSION_1__)
#define RF_MAX_FRAME_SIZE (((L2CAP_MTU - 5) > 990) ? 990 : L2CAP_MTU - 5)
#else
#define RF_MAX_FRAME_SIZE (((L2CAP_MTU - 5) > 330) ? 330 : L2CAP_MTU - 5)
#endif
#endif /* RF_MAX_FRAME_SIZE */
#if RF_MAX_FRAME_SIZE > (L2CAP_MTU - 5)
#error RF_MAX_FRAME_SIZE cannot exceed the L2CAP_MTU - 5
#endif
#if RF_MAX_FRAME_SIZE < 127
#error RF_MAX_FRAME_SIZE cannot be less than 127
#endif
#if RF_MAX_FRAME_SIZE > 32767
#error RF_MAX_FRAME_SIZE cannot exceed 32767
#endif
/*-------------------------------------------------------------------------
* RF_CONNECT_TIMEOUT constant
*
* Defines the amount of time to wait for a response to a connect
* request for an RFCOMM channel. Because it is not possible to know
* whether authentication is required, this value must allow time for
* user interaction.
*
* This value may range between 60000 and 300000 (60 sec and 300 sec).
* The default time is 60 seconds.
*/
#ifndef RF_CONNECT_TIMEOUT
#define RF_CONNECT_TIMEOUT 60000
#endif
#if RF_CONNECT_TIMEOUT < 60000
#error RF_CONNECT_TIMEOUT cannot be less than 60000
#endif
#if RF_CONNECT_TIMEOUT > 300000
#error RF_CONNECT_TIMEOUT cannot be greater than 300000
#endif
/*-------------------------------------------------------------------------
* RF_T1_TIMEOUT constant
*
* Defines the amount of time to wait for a response to an RFCOMM command.
* If a response is not received within the allotted time, the RFCOMM
* multiplexer session will be torn down.
*
* This value may range between 10000 and 60000 (10 sec and 60 sec).
* The default time is 20 seconds.
*/
#ifndef RF_T1_TIMEOUT
#define RF_T1_TIMEOUT 20000
#endif
#if RF_T1_TIMEOUT < 10000
#error RF_T1_TIMEOUT cannot be less than 10000
#endif
#if RF_T1_TIMEOUT > 60000
#error RF_T1_TIMEOUT cannot be greater than 60000
#endif
/*-------------------------------------------------------------------------
* RF_T2_TIMEOUT constant
*
* Defines the amount of time to wait for a response to an RFCOMM
* control channel command. If a response is not received within the
* allotted time, the RFCOMM multiplexer session will be torn down.
*
* This value may range between 1000 and 60000 (1 sec and 60 sec).
* The default time is 20 seconds.
*/
#ifndef RF_T2_TIMEOUT
#define RF_T2_TIMEOUT 20000
#endif
#ifndef RF_CREDIT_SLOW_TIMEOUT
#define RF_CREDIT_SLOW_TIMEOUT 10
#endif
#ifndef RF_CREDIT_SLOW_TIMEOUT1
#define RF_CREDIT_SLOW_TIMEOUT1 10
#endif
#if RF_T2_TIMEOUT < 1000
#error RF_T2_TIMEOUT cannot be less than 1000
#endif
#if RF_T2_TIMEOUT > 60000
#error RF_T2_TIMEOUT cannot be greater than 60000
#endif
#ifdef __BT_CHIP_VERSION_0__
#define MAX_CHIP_ACCEPTABLE_NUMBER 0x03
#else
#define MAX_CHIP_ACCEPTABLE_NUMBER 0x04
#endif
#endif /* RFCOMM_PROTOCOL == XA_ENABLED */
/* Internal flag for enable/disable of low level tests */
#ifndef JETTEST
#define JETTEST XA_DISABLED
#endif
/****************************************************************************
*
* Section: UnplugFest Testing
*
****************************************************************************/
/*---------------------------------------------------------------------------
* UPF_TWEAKS constant
*
* This value controls the inclusion of code which enables certain
* behaviors for UnplugFest interoperability testing. Certain UnplugFest
* tests require functionality or behaviors that may not be included in
* the Blue SDK. Set this value to XA_ENABLED to include this code.
*
* This constant should always be set to XA_DISABLED, except when
* performing UnplugFest tests.
*/
#ifndef UPF_TWEAKS
#define UPF_TWEAKS XA_DISABLED
#endif
/*---------------------------------------------------------------------------
* SPP_SERVER constant
* Configuration constant to enable code for Serial Port Profile
* server. If the device is client-only, this should be defined as
* XA_DISABLED in overide.h.
*/
#if 0
#if defined(__BT_SPP_PROFILE__)
#ifndef SPP_SERVER
/* under construction !*/
#endif
#else
#ifndef SPP_SERVER
/* under construction !*/
#endif
#endif
#endif /* 0 */
#if defined(__BT_SPP_SRV_WITH_SCO__)
#define SPP_SCO_SERVER XA_ENABLED
#define SPP_SERVER XA_ENABLED
#elif defined(__BT_SPP_SRV_NO_SCO__)
#define SPP_SCO_SERVER XA_DISABLED
#define SPP_SERVER XA_ENABLED
#else
#define SPP_SCO_SERVER XA_DISABLED
/* for first time check-in,if the compile option is added, set this XA_DISABLED */
#if defined (__BTMODULE_RFMD3500__) && defined(__BT_SPP_PROFILE__)
#define SPP_SERVER XA_ENABLED
#else
#define SPP_SERVER XA_DISABLED
#endif
#endif
#if (SPP_SERVER == XA_ENABLED) && defined(__BT_FAX_PROFILE__) && defined(__CSD_FAX__)
#ifndef FAX_SERVER
#define FAX_SERVER XA_ENABLED
#endif
#else /* (SPP_SERVER == XA_ENABLED) && defined(__BT_FAX_PROFILE__) && defined(__CSD_FAX__) */
#ifndef FAX_SERVER
#define FAX_SERVER XA_DISABLED
#endif
#endif /* (SPP_SERVER == XA_ENABLED) && defined(__BT_FAX_PROFILE__) && defined(__CSD_FAX__) */
#if (SPP_SERVER == XA_ENABLED) && defined(__BT_DUN_PROFILE__)
#ifndef DUN_SERVER
/*
* For Testing, Disable DUN: Let one general SPP Server, one SPP SCO Server, one general SPP Client and one SPP SCO Client
* Then, in bt_common_config.h: #define NUM_SPP_SERVERS 2 and #define NUM_SPP_CLIENTS 2
*/
#define DUN_SERVER XA_ENABLED
#endif /* DUN_SERVER */
#else /* (SPP_SERVER == XA_ENABLED) && defined(__BT_DUN_PROFILE__) */
#ifndef DUN_SERVER
#define DUN_SERVER XA_DISABLED
#endif
#endif /* (SPP_SERVER == XA_ENABLED) && defined(__BT_DUN_PROFILE__) */
/*---------------------------------------------------------------------------
* SPP_CLIENT constant
* Configuration constant to enable code for Serial Port Profile
* client. If the device is server-only, this should be defined as
* XA_DISABLED in overide.h.
*/
#if defined(__BT_SPP_CLI_WITH_SCO__)
#define SPP_SCO_CLIENT XA_ENABLED
#define SPP_CLIENT XA_ENABLED
#elif defined(__BT_SPP_CLI_NO_SCO__)
#define SPP_SCO_CLIENT XA_DISABLED
#define SPP_CLIENT XA_ENABLED
#else
#define SPP_SCO_CLIENT XA_DISABLED
#define SPP_CLIENT XA_DISABLED
#endif
/* Add 2007-0912 */
#if ((SPP_SCO_CLIENT == XA_ENABLED) || (SPP_SCO_SERVER == XA_ENABLED))
#define SPP_SCO_SUPPORT XA_ENABLED
#else
#define SPP_SCO_SUPPORT XA_DISABLED
#endif
/*
* Because no FAX Client, LAN Client and DUN Client setting in make file: set their value as XA_DISABLED currently
*/
#ifndef FAX_CLIENT
#define FAX_CLIENT XA_DISABLED
#endif
#ifndef LAN_CLIENT
#define LAN_CLIENT XA_DISABLED
#endif
#ifndef DUN_CLIENT
#define DUN_CLIENT XA_DISABLED
#endif
#if DUN_CLIENT == XA_ENABLED && SPP_CLIENT == XA_DISABLED
#error We can not enalbe dun client without SPP client
#endif
/* NUM_SPP_SRVS will depend on the value NUM_SPP_SERVERS defined in customer folder */
#if 0
/* under construction !*/
#if SPP_SCO_SERVER == XA_ENABLED
/* under construction !*/
#if SPP_SERVER == XA_ENABLED
/* under construction !*/
#else
/* under construction !*/
#endif
#else
/* under construction !*/
#if SPP_SERVER == XA_ENABLED
/* under construction !*/
#else
/* under construction !*/
#endif
#endif /* end #if SPP_SCO_SERVER == XA_ENABLED */
/* under construction !*/
#endif /* 0 */
#if SPP_SERVER == XA_ENABLED
#if SPP_SCO_SERVER == XA_ENABLED
#define NUM_SPP_SCO_SRVS 1
#else
#define NUM_SPP_SCO_SRVS 0
#endif
#ifdef MULTI_RF_CHANNEL
#define NUM_SPP_SRVS (TOTAL_NUM_SPP_SERVERS - NUM_SPP_SCO_SRVS)
#else
#define NUM_SPP_SRVS (NUM_SPP_SERVERS - NUM_SPP_SCO_SRVS)
#endif
#else /* SPP_SERVER == XA_ENABLED */
/* case: SPP_SERVER = XA_DISABLED */
#define NUM_SPP_SRVS 0
#define NUM_SPP_SCO_SRVS 0
#endif /* SPP_SERVER == XA_ENABLED */ /* end #if SPP_SERVER == XA_ENABLED */
/* Check the NUM_SPP_SRVS, it must be large or equal to 0 */
#if (NUM_SPP_SRVS <0)
#error The number of SPP Servers must be at least zero
#endif
#if DUN_SERVER == XA_ENABLED
#define NUM_DUN_SRVS 1
#else
#define NUM_DUN_SRVS 0
#endif
#if FAX_SERVER == XA_ENABLED
#define NUM_FAX_SRVS 1
#else
#define NUM_FAX_SRVS 0
#endif
#if SPP_CLIENT == XA_ENABLED
/* NUM_SPP_CLIS will depend on the value NUM_SPP_CLIENTS defined in customer folder */
#if SPP_SCO_CLIENT == XA_ENABLED
#define NUM_SPP_SCO_CLIS 1
#define NUM_SPP_CLIS (NUM_SPP_CLIENTS -1)
#else /* SPP_SCO_CLIENT == XA_ENABLED */
#define NUM_SPP_SCO_CLIS 0
#define NUM_SPP_CLIS NUM_SPP_CLIENTS
#endif /* SPP_SCO_CLIENT == XA_ENABLED */
#else /* SPP_CLIENT == XA_ENABLED */
/* case: SPP_CLIENT = XA_DISABLED */
#define NUM_SPP_CLIS 0
#define NUM_SPP_SCO_CLIS 0
#endif /* SPP_CLIENT == XA_ENABLED */
/* Check the NUM_SPP_CLIS, it must be large or equal to 0 */
#if (NUM_SPP_CLIS < 0)
#error The number of SPP Clients must be at least zero
#endif
#if DUN_CLIENT == XA_ENABLED
#define NUM_DUN_CLIS 1 /* We only support one DUN client now */
#else
#define NUM_DUN_CLIS 0
#endif
#if FAX_CLIENT == XA_ENABLED
#define NUM_FAX_CLIS 1
#else
#define NUM_FAX_CLIS 0
#endif
#define SPP_CLIENT_CONNECT_DO_SDP XA_ENABLED
//(The following number should be fixed un our current implementation) : 2007-0412
//The number of the following must be larger than 0, at least is 1
#define NUM_HS_AG_SRVS 1
#define NUM_HF_GW_SRVS 2
#define NUM_FTP_SRVS 1
#define NUM_OPP_SRVS 1
#define NUM_SIMAP_SRVS 1
#define NUM_BIP_RESPONDER_SRVS 1
#define NUM_BIP_REFOBJ_SRVS 1
#define NUM_PBAP_SRVS 1
#define NUM_SYNCML_SRVS 1
#define NUM_SYNCML_CLIS 1
#define NUM_MAP_CLIS 1
#define NUM_NONSPP_SRVS (NUM_HS_AG_SRVS+NUM_HF_GW_SRVS+NUM_FTP_SRVS+NUM_OPP_SRVS+NUM_SIMAP_SRVS+NUM_BIP_RESPONDER_SRVS+NUM_BIP_REFOBJ_SRVS)
#define CURRENT_NUM_SRVS (NUM_NONSPP_SRVS + NUM_DUN_SRVS + NUM_FAX_SRVS + NUM_SPP_SRVS + NUM_SPP_SCO_SRVS)
/* All Servers will occupy one RF Server Channel */
#if (CURRENT_NUM_SRVS > NUM_RF_SERVERS)
#error Current number of Total Servers exceeds the NUM_RF_SERVERS
#endif
/* Add the assert check for VIRTUAL_PORTS_NUM */
#if (VIRTUAL_PORTS_NUM >9)
#error The number of VIRTUAL_PORTS should not be larger than 9
#endif
//MAX_AVAILABLE_NUM_VPS_FOR_SPP is the maximun number of virtual ports
//This valuse is defined as follows (1: HF will use one virtual port)
#define MAX_AVAILABLE_NUM_VPS_FOR_SPP (VIRTUAL_PORTS_NUM - NUM_DUN_SRVS - NUM_FAX_SRVS - NUM_DUN_CLIS - NUM_FAX_CLIS -1)
/* Check the NUM_SPP_SRVS + NUM_SPP_CLIS are not larger the maximun available number of virtual ports */
//#if ((NUM_SPP_SRVS+NUM_SPP_CLIS+NUM_SPP_SCO_SRVS+NUM_SPP_SCO_CLIS) > MAX_AVAILABLE_NUM_VPS_FOR_SPP)
//#error The number of SPP Servers and SPP Clients should not exceed the MAX_AVAILABLE_NUM_VPS_FOR_SPP
//#endif
//New defined Server Channel for each profile: 2007-0412
//(1)The following is Non-SPP related Service
/* HS_AG_SRV_CHN (0x01) */
#define HS_AG_CHNL_NUM_START 1
#define HS_AG_CHNL_NUM_END (HS_AG_CHNL_NUM_START + NUM_HS_AG_SRVS -1)
/* HF_GW_SRV_CHN (0x02) */
#define HF_GW_CHNL_NUM_START (HS_AG_CHNL_NUM_END + 1)
#define HF_GW_CHNL_NUM_END (HF_GW_CHNL_NUM_START + NUM_HF_GW_SRVS -1)
/* FTP_RFCOMM_SRV_CHN (0x03) */
#define FTP_CHNL_NUM_START (HF_GW_CHNL_NUM_END + 1)
#define FTP_CHNL_NUM_END (FTP_CHNL_NUM_START + NUM_FTP_SRVS -1)
/* OPP_RFCOMM_SRV_CHN (0x04) */
#define OPP_CHNL_NUM_START (FTP_CHNL_NUM_END + 1)
#define OPP_CHNL_NUM_END (OPP_CHNL_NUM_START + NUM_OPP_SRVS -1)
/* SIMAP_RFCOMM_SRV_CHN (0x05) */
#define SIMAP_CHNL_NUM_START (OPP_CHNL_NUM_END + 1)
#define SIMAP_CHNL_NUM_END (SIMAP_CHNL_NUM_START + NUM_SIMAP_SRVS -1)
/* BIP_RESPONDER_RFCOMM_SRV_CHN (0x06) */
#define BIP_RESPONDER_CHNL_NUM_START (SIMAP_CHNL_NUM_END + 1)
#define BTP_RESPONDER_CHNL_NUM_END (BIP_RESPONDER_CHNL_NUM_START + NUM_BIP_RESPONDER_SRVS -1)
/* BIP_REFOBJ_RFCOMM_SRV_CHN (0x07) */
#define BIP_REFOBJ_CHNL_NUM_START (BTP_RESPONDER_CHNL_NUM_END + 1)
#define BTP_REFOBJ_CHNL_NUM_END (BIP_REFOBJ_CHNL_NUM_START + NUM_BIP_REFOBJ_SRVS -1)
/* PBAP_RFCOMM_SRV_CHN (0x08) */
#define PBAP_CHNL_NUM_START (BTP_REFOBJ_CHNL_NUM_END + 1)
#define PBAP_CHNL_NUM_END (PBAP_CHNL_NUM_START + NUM_PBAP_SRVS -1)
/* SyncML_SRV_CHN (0x09) */
#define SyncML_SRV_CHNL_START (PBAP_CHNL_NUM_END + 1)
#define SyncML_SRV_CHNL_END (SyncML_SRV_CHNL_START + NUM_SYNCML_SRVS -1)
/* SyncML_CLI_CHN (0x0A) */
#define SyncML_CLI_CHNL_START (SyncML_SRV_CHNL_END + 1)
#define SyncML_CLI_CHNL_END (SyncML_CLI_CHNL_START + NUM_SYNCML_CLIS - 1)
/* MAP_CLI_CHN (0x0F) */
#define MAP_CLI_CHNL_NUM_START (SyncML_CLI_CHNL_END + 1)
#define MAP_CLI_CHNL_NUM_END (MAP_CLI_CHNL_NUM_START + NUM_MAP_CLIS -1)
#define BT_L2CAP_DISCONNECT_TIMEOUT_500MS (0x00)
#define BT_L2CAP_DISCONNECT_TIMEOUT_50S (0x01)
#define BT_L2CAP_DISCONNECT_TIMEOUT_3S (0x02)
/* (2)The following are SPP-related Service */
/* DUN_RFCOMM_SRV_CHN (0x0B) */
//#define DUN_CHNL_NUM_START (PBAP_CHNL_NUM_END + 1)
#define DUN_CHNL_NUM_START (MAP_CLI_CHNL_NUM_END + 1)
#if DUN_SERVER == XA_ENABLED
#define DUN_CHNL_NUM_END (DUN_CHNL_NUM_START + NUM_DUN_SRVS -1)
#else
#define DUN_CHNL_NUM_END DUN_CHNL_NUM_START
#endif
/* FAX_RFCOMM_SRV_CHN (0x0C) */
#define FAX_CHNL_NUM_START (DUN_CHNL_NUM_END + 1)
#if FAX_SERVER == XA_ENABLED
#define FAX_CHNL_NUM_END (FAX_CHNL_NUM_START + NUM_FAX_SRVS -1)
#else
#define FAX_CHNL_NUM_END FAX_CHNL_NUM_START
#endif
/* SPP_RFCOMM_SRV_CHN (0x0D- :variable, not fixed) */
#define SPP_CHNL_NUM_START (FAX_CHNL_NUM_END + 1)
#if SPP_SERVER == XA_ENABLED
#define SPP_CHNL_NUM_END (SPP_CHNL_NUM_START + NUM_SPP_SRVS -1)
#else
#define SPP_CHNL_NUM_END SPP_CHNL_NUM_START
#endif
/* LAN_RFCOMM_SRV_CHN (variable, not fixed) */
#define SPP_SCO_CHNL_NUM_START (SPP_CHNL_NUM_END + 1)
#if SPP_SCO_SERVER == XA_ENABLED
#define SPP_SCO_CHNL_NUM_END (SPP_SCO_CHNL_NUM_START + NUM_SPP_SCO_SRVS -1)
#else
#define SPP_SCO_CHNL_NUM_END SPP_SCO_CHNL_NUM_START
#endif
#define RFCOMMTESTER_RFCOMM_SRV_CHN (SPP_SCO_CHNL_NUM_END + 1)
#if 0
#ifndef __BQE_TESTER_
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
#endif /* 0 */
#ifdef __BT_SIM_PROFILE__
#if 0
#ifndef __SIMAP_UT_
/* under construction !*/
#endif
#endif /* 0 */
#endif /* __BT_SIM_PROFILE__ */
#define BM_SCAN_MODE_SET_UNPAGEABLE 0x00
#define BM_SCAN_MODE_SET_NORMAL 0x01
#define BM_SET_UNSCANABLE_UNPAGEABLE 0x02
#define BT_SEC_LOW 0x00
#define BT_SEC_MED 0x01
#define BT_SEC_HIGH 0x02
/* Compile Option of READ RSSI FEATURE: depends on CUSTOM_MMI_BT_READ_RSSI defined in customer folder bt_common_config.h */
#define BT_READ_RSSI CUSTOM_MMI_BT_READ_RSSI
#if 0
#ifndef __AVDTP_TESTER_
/* under construction !*/
#endif
/* under construction !*/
#ifndef __AVCTP_TESTER_
/* under construction !*/
#endif
/* under construction !*/
#ifndef __SDP_TESTER_
/* under construction !*/
#endif
/* under construction !*/
#ifndef __RFCOMM_TESTER_
/* under construction !*/
#endif
/* under construction !*/
/* under construction !*/
#ifndef __L2CAP_TESTER_
/* under construction !*/
/* under construction !*/
/* under construction !*/
#endif
/* under construction !*/
#endif /* 0 */
#ifndef UART_DUMP
//#define UART_DUMP
#endif /* UART_DUMP */
#endif /* __BTCONFIG_H */