BTDialerSrvGprot.h
36.5 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
/*****************************************************************************
* Copyright Statement:
* --------------------
* This software is protected by Copyright and the information contained
* herein is confidential. The software may not be copied and the information
* contained herein may not be used or disclosed except with the written
* permission of MediaTek Inc. (C) 2005
*
* BY OPENING THIS FILE, BUYER HEREBY UNEQUIVOCALLY ACKNOWLEDGES AND AGREES
* THAT THE SOFTWARE/FIRMWARE AND ITS DOCUMENTATIONS ("MEDIATEK SOFTWARE")
* RECEIVED FROM MEDIATEK AND/OR ITS REPRESENTATIVES ARE PROVIDED TO BUYER ON
* AN "AS-IS" BASIS ONLY. MEDIATEK EXPRESSLY DISCLAIMS ANY AND ALL WARRANTIES,
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE OR NONINFRINGEMENT.
* NEITHER DOES MEDIATEK PROVIDE ANY WARRANTY WHATSOEVER WITH RESPECT TO THE
* SOFTWARE OF ANY THIRD PARTY WHICH MAY BE USED BY, INCORPORATED IN, OR
* SUPPLIED WITH THE MEDIATEK SOFTWARE, AND BUYER AGREES TO LOOK ONLY TO SUCH
* THIRD PARTY FOR ANY WARRANTY CLAIM RELATING THERETO. MEDIATEK SHALL ALSO
* NOT BE RESPONSIBLE FOR ANY MEDIATEK SOFTWARE RELEASES MADE TO BUYER'S
* SPECIFICATION OR TO CONFORM TO A PARTICULAR STANDARD OR OPEN FORUM.
*
* BUYER'S SOLE AND EXCLUSIVE REMEDY AND MEDIATEK'S ENTIRE AND CUMULATIVE
* LIABILITY WITH RESPECT TO THE MEDIATEK SOFTWARE RELEASED HEREUNDER WILL BE,
* AT MEDIATEK'S OPTION, TO REVISE OR REPLACE THE MEDIATEK SOFTWARE AT ISSUE,
* OR REFUND ANY SOFTWARE LICENSE FEES OR SERVICE CHARGE PAID BY BUYER TO
* MEDIATEK FOR SUCH MEDIATEK SOFTWARE AT ISSUE.
*
* THE TRANSACTION CONTEMPLATED HEREUNDER SHALL BE CONSTRUED IN ACCORDANCE
* WITH THE LAWS OF THE STATE OF CALIFORNIA, USA, EXCLUDING ITS CONFLICT OF
* LAWS PRINCIPLES. ANY DISPUTES, CONTROVERSIES OR CLAIMS ARISING THEREOF AND
* RELATED THERETO SHALL BE SETTLED BY ARBITRATION IN SAN FRANCISCO, CA, UNDER
* THE RULES OF THE INTERNATIONAL CHAMBER OF COMMERCE (ICC).
*
*****************************************************************************/
/*******************************************************************************
* Filename:
* ---------
* BTDialerSrvGprot.h
*
* Project:
* --------
* MAUI
*
* Description:
* ------------
* Interface file to let user use inet service functionality
*
* Author:
* -------
* -------
*
*==============================================================================*/
#ifndef __BTDIALER_SRV_GPROT_H__
#define __BTDIALER_SRV_GPROT_H__
#ifdef __BT_DIALER_SUPPORT__
#include "bluetooth_bm_struct.h"
#include "bluetooth_struct.h"
#include "BtcmSrvGprot.h"
/*Max number of CIEV AT indications*/
#define SRV_BT_DIALER_AT_MAX_INDICATORS 9
/*Bt Dialer result -SUCCESS/FAILURE*/
#define SRV_BT_DIALER_SUCCESS 1
#define SRV_BT_DIALER_FAILURE 0
/*Bt Dialer error code*/
#define SRV_BT_DIALER_SERVICE_UNAVAILABLE 400
/* AtHandsfreeResult Indicator Events
* Description:
* For event_id:SRV_BT_DIALER_EVT_ID_AT_INDICATOR_EVENT ,
* APP further need to handle following "event.indicator" value.
* For All CIEV indicators, we send the result to APP with this event_id.
* APP need to distinguish based upon following event indicator value.*/
/*Utility indicators for Application layer*/
/*Signal Indication*/
#define SRV_BT_DIALER_UNMASK_CIEV_SIGNAL_INDICATION 0x0001
/*Roaming status Indicator*/
#define SRV_BT_DIALER_UNMASK_ROAM_INDICATION 0x0002
/*AG registration status - Serive indication*/
#define SRV_BT_DIALER_UNMASK_CIEV_SERVICE_INDICATION 0x0004
/*Battery Charge level Indication*/
#define SRV_BT_DIALER_UNMASK_BATTCHG_INDICATION 0x0008
/*call indication*/
#define SRV_BT_DIALER_CIEV_CALL_INDICATION 0x0010
/*Call setup indication*/
#define SRV_BT_DIALER_CIEV_CALL_SETUP_INDICATION 0x0020
/* AtHoldFlag type */
typedef enum _srv_bt_dialer_AtHoldFlag{
/** Releases all held calls or sets User Determined User Busy
* (UDUB) for a waiting call.
*/
SRV_BT_DIALER_AT_FLAG_HOLD_RELEASE_HELD_CALLS = 0x01,
/** Releases all active calls (if any exist) and accepts the other
* (held or waiting) call.
*/
SRV_BT_DIALER_AT_FLAG_HOLD_RELEASE_ACTIVE_CALLS =0x02,
/** Releases a specific call. */
SRV_BT_DIALER_AT_FLAG_HOLD_RELEASE_SPECIFIC_CALL =0x04,
/** Places all active calls (if any exist) on hold and accepts the
* other (held or waiting) call.
*/
SRV_BT_DIALER_AT_FLAG_HOLD_HOLD_ACTIVE_CALLS =0x08,
/** Places a specific call on hold. */
SRV_BT_DIALER_AT_FLAG_HOLD_HOLD_SPECIFIC_CALL =0x10,
/** Adds a held call to the conversation. */
SRV_BT_DIALER_AT_FLAG_HOLD_ADD_HELD_CALL =0x20,
/** Connects the two calls and disconnects the AG from
* both calls (Explicit Call Transfer).
*/
SRV_BT_DIALER_AT_FLAG_HOLD_EXPLICIT_TRANSFER =0x40
/* End of AtHoldFlag */
}srv_bt_dialer_AtHoldFlag_enum;
/* AT CALL HELD INDICATION */
typedef enum _srv_bt_dialer_AtHeldInd_enum
{
/*0= No calls held*/
SRV_BT_DIALER_NO_CALL_HELD,
/*1=Call is placed on hold or active/held calls swapped
(The AG has both and active AND a held call)*/
SRV_BT_DIALER_CALL_PLACED_ON_HOLD,
/*2=Call on hold, no active call*/
SRV_BT_DIALER_CALL_ON_HOLD
}srv_bt_dialer_AtHeldInd_enum;
/* AT CallState */
typedef enum _srv_bt_dialer_AtCallState{
/** Active */
SRV_BT_DIALER_ATCS_ACTIVE ,
/** Held */
SRV_BT_DIALER_ATCS_HELD,
/** Dialing (Mobile Originated only) */
SRV_BT_DIALER_ATCS_DIALING,
/** Alerting (Mobile Originated only) */
SRV_BT_DIALER_ATCS_ALERTING,
/** Incoming (Mobile Terminated only) */
SRV_BT_DIALER_ATCS_INCOMING,
/** Waiting (Mobile Terminated only) */
SRV_BT_DIALER_ATCS_WAITING
/* End of AtCallState */
}srv_bt_dialer_AtCallState_enum;
/* ATResponseHold */
typedef enum _srv_bt_dialer_AtResponseHold {
/** Put the incoming call on hold (or the incoming call was put on hold).
*/
SRV_BT_DIALER_ATRH_ON_HOLD,
/** Accept the incoming held call (or the call on hold was accepted).
*/
SRV_BT_DIALER_ATRH_ACCEPT_HELD,
/** Reject the incoming held call (or the call on hold was rejected).
*/
SRV_BT_DIALER_ATRH_REJECT_HELD
/* End of AtResponseHold */
}srv_bt_dialer_AtResponseHold_enum;
/* AtResponseHold AT TYPE */
typedef enum _srv_bt_dialer_AtResponseHold_type {
/*Bluetooth Response hold feature
+BTRH: <n>
<n>: 0,1,2 entered as integer value, where
0 = Incoming call is put on hold in the AG
1 = Held incoming call is accepted in the AG
2 = Held incoming call is rejected in the AG
*/
SRV_BT_DIALER_ATRESHOLD_READ,
/*Bluetooth Response hold feature
AT+BTRH=<n>
<n>: 0, 1, 2 entered as integer values, where
0 = Put Incoming call on hold
1 = Accept a held incoming call
2 = Reject a held incoming call
*/
SRV_BT_DIALER_ATRESHOLD_SET,
/* End of AtResponseHold */
}srv_bt_dialer_AtResponseHoldtype_enum;
/* AtOperFormat */
typedef enum _srv_bt_dialer_AtOperFormat{
/** */
SRV_BT_DIALER_ATOF_LONG_ALPHANUM,
/** */
SRV_BT_DIALER_ATOF_SHORT_ALPHANUM,
/** */
SRV_BT_DIALER_ATOF_NUMERIC
/* End of AtOperFormat */
}srv_bt_dialer_AtOperFormat_enum;
/* End of AtError */
/* Number format */
typedef enum _srv_bt_dialer_AtNumberFormat{
SRV_BT_DIALER_ATNUM_TYPE_UNKNOWN = 0x80,
SRV_BT_DIALER_ATNUM_TYPE_INTERNATIONAL = 0x90,
SRV_BT_DIALER_ATNUM_TYPE_NATIONAL = 0xA0,
SRV_BT_DIALER_ATNUM_TYPE_NETWORK_SPEC =0xB0,
SRV_BT_DIALER_ATNUM_TYPE_DEDICATED_ACC =0xC0,
SRV_BT_DIALER_ATNUM_PLAN_UNKNOWN =0x00,
SRV_BT_DIALER_ATNUM_PLAN_ISDN_TELEPHONY =0x01,
SRV_BT_DIALER_ATNUM_PLAN_DATA_NUMBERING =0x03,
SRV_BT_DIALER_ATNUM_PLAN_TELEX_NUMBERING =0x04,
SRV_BT_DIALER_ATNUM_PLAN_NATIONAL =0x08,
SRV_BT_DIALER_ATNUM_PLAN_PRIVATE =0x09,
/* Commonly used formats */
SRV_BT_DIALER_ATNUM_INTERNATIONAL_ISDN =(SRV_BT_DIALER_ATNUM_TYPE_INTERNATIONAL|SRV_BT_DIALER_ATNUM_PLAN_ISDN_TELEPHONY),
SRV_BT_DIALER_ATNUM_ISDN_TELEPHONY =(SRV_BT_DIALER_ATNUM_TYPE_UNKNOWN|SRV_BT_DIALER_ATNUM_PLAN_ISDN_TELEPHONY),
SRV_BT_DIALER_ATNUM_NATIONAL_ISDN =(SRV_BT_DIALER_ATNUM_TYPE_NATIONAL|SRV_BT_DIALER_ATNUM_PLAN_ISDN_TELEPHONY)
}srv_bt_dialer_AtNumberFormat_enum;
/* Call state - Check this if call is active or not */
typedef enum _srv_bt_dialer_call_ind_enum
{
/*state if call no call is made or call is rejected successfully*/
SRV_BT_DIALER_CALL_NOT_ACTIVE,
/*if call is answered successfully*/
SRV_BT_DIALER_CALL_ACTIVE
}srv_bt_dialer_call_ind_enum;
/* Call setup indication to identify call type[ incoming/outgoing]
* and inbetween call states [e.g. remote party being alerted] */
typedef enum _srv_bt_dialer_call_setup_ind_enum
{
/*call setup [inclimg/outgoing] complete
in both case if 1)Call is successfully active
OR 2) Calll is rejected*/
SRV_BT_DIALER_CALL_SETUP_COMPLETE,
/*Incoming call indication - Call setup process is ongoing*/
SRV_BT_DIALER_CALL_INCOMING_CALL,
/*Outgoing call intitiated successfully - Call setup process is ongoing*/
SRV_BT_DIALER_CALL_OUTGOING_CALL_INITIATED,
/*Remote party being alerted in case of outgoing call
Call setup process is ongoing*/
SRV_BT_DIALER_CALL_REMOTE_ALERT
}srv_bt_dialer_call_setup_ind_enum;
/* Roaming state */
typedef enum _srv_bt_dialer_roaming_state_enum
{
/*Sim not is roaming*/
SRV_BT_DIALER_DEVICE_NOT_IN_ROAMING,
/*Sim is in roaming*/
SRV_BT_DIALER_DEVICE_IN_ROAMING
}srv_bt_dialer_roaming_state_enum;
/* AG registration state [Service availability indicator]
* Whenever AG(smartphone) chanegs its registration state ,it notifies Application */
typedef enum _srv_bt_dialer_service_availability_state_enum
{
/*AG doesn't have sim module ready*/
SRV_BT_DIALER_SERVICE_NOT_AVAILABLE,
/*Sim module is ready*/
SRV_BT_DIALER_SERVICE_AVAILABLE
}srv_bt_dialer_service_availability_state_enum;
/* AtError type
* Error types used with AT_EXTENEDED_ERROR result.*/
/*AT command SUCCES code*/
#define SRV_BT_DIALER_ATCME_SUCCESS 255
/*AT command internal error code*/
#define SRV_BT_DIALER_INTERNAL_ERROR 100
typedef U8 srv_bt_dialer_AtError;
/*AT command standard error enum*/
typedef enum _srv_bt_dialer_AtError_enum
{
SRV_BT_DIALER_ATCME_AG_FAILURE = 0,
SRV_BT_DIALER_ATCME_NO_CONNECTION = 1,
SRV_BT_DIALER_ATCME_OP_NOT_ALLOWED = 2,
SRV_BT_DIALER_ATCME_OP_NOT_SUPPORTED = 3,
SRV_BT_DIALER_ATCME_PH_SIM_PIN_REQUIRED = 4,
SRV_BT_DIALER_ATCME_PHSIM_PIN_REQUIRED = 5,
SRV_BT_DIALER_ATCME_SIM_NOT_INSERTED = 10,
SRV_BT_DIALER_ATCME_SIM_PIN_REQUIRED = 11,
SRV_BT_DIALER_ATCME_SIM_PUK_REQUIRED = 12,
SRV_BT_DIALER_ATCME_SIM_FAILURE = 13,
SRV_BT_DIALER_ATCME_SIM_BUSY = 14,
SRV_BT_DIALER_ATCME_INCORRECT_PASSWORD = 16,
SRV_BT_DIALER_ATCME_SIM_PIN2_REQUIRED = 17,
SRV_BT_DIALER_ATCME_SIM_PUK2_REQUIRED = 18,
SRV_BT_DIALER_ATCME_MEMORY_FULL = 20,
SRV_BT_DIALER_ATCME_INVALID_INDEX = 21,
SRV_BT_DIALER_ATCME_MEMORY_FAILURE = 23,
SRV_BT_DIALER_ATCME_TEXT_STRING_TOO_LONG = 24,
SRV_BT_DIALER_ATCME_INVALID_CHARS_IN_TEXT_STRING = 25,
SRV_BT_DIALER_ATCME_DIAL_STRING_TOO_LONG = 26,
SRV_BT_DIALER_ATCME_INVALID_CHARS_IN_DIAL_STRING = 27,
SRV_BT_DIALER_ATCME_NO_NETWORK_SERVICE = 30,
SRV_BT_DIALER_ATCME_NETWORK_NOT_ALLOWED_EMER_CALL_ONLY =32 // ONLY EMERGENCY CALL ALLOWED
}srv_bt_dialer_AtError_enum;
/* Parsing handsfree command response
* Application will receive these events */
typedef enum _srv_bt_dialer_event_enum
{
/*Automatic answer command response*/
SRV_BT_DIALER_EVT_ID_ATA_CMD_RSP,
/*Dial Command Response*/
SRV_BT_DIALER_EVT_ID_AT_DIAL_CMD_RSP,
/*Memory dial command response*/
SRV_BT_DIALER_EVT_ID_AT_MEM_DIAL_RSP,
/*Last Dialer number command response*/
SRV_BT_DIALER_EVT_ID_AT_BLDN_RSP,
/*Enable/Disable call wait notification request*/
SRV_BT_DIALER_EVT_ID_AT_CALL_WAIT_RSP,
/*Call waiting notification*/
SRV_BT_DIALER_EVT_ID_AT_CALL_WAIT_NOTIFY,
/*call hold notification
*This indication will come if any call is put on hold*/
SRV_BT_DIALER_EVT_ID_AT_CALL_HOLD,
/*call id e.g CLIP notification ,for incoming call number*/
SRV_BT_DIALER_EVT_ID_AT_CALL_ID,
/*various indicators like roam, battery charge, call ind, etc
APP may need to further handle following indicators for this event id.
SRV_BT_DIALER_CIEV_CALL_INDICATION,
SRV_BT_DIALER_CIEV_CALL_SETUP_INDICATION,
SRV_BT_DIALER_UNMASK_CIEV_SIGNAL_INDICATION,
SRV_BT_DIALER_UNMASK_ROAM_INDICATION,
SRV_BT_DIALER_UNMASK_CIEV_SERVICE_INDICATION,
SRV_BT_DIALER_UNMASK_BATTCHG_INDICATION ,
*/
SRV_BT_DIALER_EVT_ID_AT_INDICATOR_EVENT,
/*Voice Tag Notification*/
SRV_BT_DIALER_EVT_ID_AT_VOICE_TAG,
/*Voice Recognition notification*/
SRV_BT_DIALER_EVT_ID_AT_VOICE_RECOGNITION,
/*SUpported feature of HF unit*/
SRV_BT_DIALER_EVT_ID_AT_SUPPORTED_FEATURES,
/*In-band ring tone settings notification*/
SRV_BT_DIALER_EVT_ID_AT_IN_BAND_RING_TONE,
/*Response and HOLD notificaiton +BTRH command*/
SRV_BT_DIALER_EVT_ID_AT_RESPONSE_AND_HOLD,
/*Subscriber number notification*/
SRV_BT_DIALER_EVT_ID_AT_SUBSCRIBER_NUM,
/*List current calls notification*/
SRV_BT_DIALER_EVT_ID_AT_LIST_CURRENT_CALLS,
/*Network operator information notification*/
SRV_BT_DIALER_EVT_ID_AT_NETWORK_OPERATOR,
/*Hangup active calls response*/
SRV_BT_DIALER_EVT_ID_AT_HANGUP_ACTIVE_CALLS_RSP,
/* Hold action response
* This is the response to CHLD command.
* This is to release or hold all calls or specific call <idx>
* or to swap two calls.
*/
SRV_BT_DIALER_EVT_ID_AT_HOLD_ACTION_RSP,
/* Hold action response */
SRV_BT_DIALER_EVT_ID_AT_DTMF_CMD_RSP,
/*AT Voice Recognition response*/
SRV_BT_DIALER_EVT_ID_AT_BVRA_RSP,
/*Volume gain response*/
SRV_BT_DIALER_EVT_ID_AT_VGS_RSP,
/*Volume gain ind*/
SRV_BT_DIALER_EVT_ID_AT_VGS_IND,
/*Microphone gainr request*/
SRV_BT_DIALER_EVT_ID_AT_VGM_RSP,
/*Noice reduction response*/
SRV_BT_DIALER_EVT_ID_AT_NREC_RSP,
/*Event reporting command response*/
SRV_BT_DIALER_EVT_ID_AT_CMEE_RSP,
}srv_bt_dialer_event_enum;
/* Parsing handsfree command response */
/* AtHandsfreeResult
* This structure is used to specify the parameters associated with
* Handsfree results. Handsfree results are sent from the Audio Gateway
* to the Handsfree unit. As such, this structure is used by the Audio
* Gateway encoder, and the Handsfree unit decoder functions.
*/
typedef union SRV_BT_DIALER_AtHandsfreeResult {
/* AT_CALL_WAIT_NOTIFY */
struct {
const char *number;
U8 classmap;
srv_bt_dialer_AtNumberFormat_enum type;
} wait;
/* AT_CALL_HOLD | AT_TEST */
struct {
srv_bt_dialer_AtHoldFlag_enum flags;
} hold_test;
/*Call Hold Indication*/
struct
{
srv_bt_dialer_AtHeldInd_enum held;
}held_ind;
/* AT_CALL_ID (AT+CLIP) */
struct {
const char *number;
srv_bt_dialer_AtNumberFormat_enum type;
} callId;
/* AT_INDICATOR_EVENT */
struct {
/* One based indicator index. */
U32 indicator;
/* Current value of this indicator. */
U32 value;
} event;
/* AT_VOICE_TAG */
struct {
const char *number;
} voiceTag;
/* AT_VOICE_RECOGNITION AT+VREC*/
struct {
BOOL enabled;
} vrec;
/* AT_IN_BAND_RING_TONE AT+BSIR*/
struct {
BOOL enabled;
} inBandRing;
/* AT_RESPONSE_AND_HOLD (AT+BTRH) */
struct {
srv_bt_dialer_AtResponseHold_enum setting;
} btrh;
/* AT_SUBSCRIBER_NUM AT+CNUM*/
struct {
/* String phone number of format specified by "type". */
const char *number;
/* Phone number format */
srv_bt_dialer_AtNumberFormat_enum type;
/* Service related to the phone number. */
U8 service;
} subscribeNum;
/* AT_LIST_CURRENT_CALLS */
struct {
U8 final;
/* The numbering (starting with 1) of the call given by the sequence
* of setting up or receiving the calls (active, held or waiting) as
* seen by the served subscriber. Calls hold their number until they
* are released. New calls take the lowest available number.
*/
U8 index;
/* Direction: 0 (Mobile Originated), 1 (Mobile Terminated),
* 0xFF (Value not present)
*/
U8 dir;
/* Call State */
srv_bt_dialer_AtCallState_enum state;
/* Mode: 0=Voice, 1=Data, 2=FAX */
U8 mode;
/* Multiparty 0=Not Multiparty, 1=Multiparty. */
U8 multiParty;
/* Phone number */
const char *number;
/* Phone number type */
srv_bt_dialer_AtNumberFormat_enum type;
srv_bt_dialer_AtError error;
} currentCalls;
/* AT_NETWORK_OPERATOR AT+COPS*/
struct {
/* 0 = automatic, 1 = manual, 2 = deregister, 3 = set format only,
* 4 = manual/automatic.
*/
U8 mode;
/* Format of "oper" parameter (0-3) */
srv_bt_dialer_AtOperFormat_enum format;
/* Numeric or long or short alphanumeric name of operator */
const char *oper;
} networkOper_read;
struct {
U8 gain;
} vgs;
struct
{
srv_bt_dialer_AtError error;
} error_code;
} srv_bt_dialer_AtHfResult_struct;
/* AtHandsfreeResult Structure to notify APP about events. */
typedef struct
{
/*AT command result*/
srv_bt_dialer_AtHfResult_struct result;
/*At command event type*/
srv_bt_dialer_event_enum event_id;
}srv_bt_dialer_notify_event_struct;
/* Event info structure */
typedef struct
{
MMI_EVT_PARAM_HEADER
void *event_info; /* Event information data. For each event's event infomation structure,
* refer the discription of each event in enum srv_sms_event_enum. */
} srv_bt_dialer_app_notify_event_struct;
/*****************************************************************************
* <GROUP CallBackFunctions>
* FUNCTION
* srv_bt_dialer_notify_hf_event
* DESCRIPTION:
* This function is used to receive notification event
* Application should register this callback function
* which would be called when BT dialer recieves AT command response
* from the BT stack layer.
* In this callback funtion, application needs to identify the event,
* Based on that event, it needs to typecast the structure to valid one.
* PARAMETERS
* param1 : Application service handle
* param2 : Result structure
* RETURNS
* void
*****************************************************************************/
typedef void(*srv_bt_dialer_notify_hf_event)(int srv_hd, srv_bt_dialer_notify_event_struct result);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_open
* DESCRIPTION:
* Application should first open the BT dialer service by calling this API.
* In return, BT dialer will provide the Service handle,
* which should be used for all subsequent interaction with BT dialer service
* PARAMETERS
* param1 : void
* RETURNS
* Service handler
* RETURN VALUES :
* ReturnValue1 : Applciation Service Handle
* *****************************************************************************/
int srv_bt_dialer_open(void);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_close
* DESCRIPTION:
* Application should close the BT dialer service by calling this API.
* BT dialer will clean up all the resources after invoking this API by Application.
* PARAMETERS
* param1 : Service handle
* RETURNS
* void
* *****************************************************************************/
void srv_bt_dialer_close(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_register_hf_notifier
* DESCRIPTION:
* Application should register the above callback function using this interface
* The application should register the callback function before using the service of
* BT dialer, otherwise BT dialer won't be able to send back the response to APP.
* PARAMETERS
* param1 : Service handle
* param2 : application function callback
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_register_hf_notifier(int srv_hd, srv_bt_dialer_notify_hf_event cb_ptr);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_register_indicators
* DESCRIPTION:
* Application can register for certain indicators if reqired like roaming status of AG
* battery charge status, voice recognition etc.
* its not mandatory to register it but incase app wants to know about certain indicator
* If application don't register for these indicator, Dialor service won't notify them to apps at all
* PARAMETERS
* param1 : Service handle
* param2 : CIEV indication events
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_register_indicators(int srv_hd, U16 ind_event);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_ata_req
* DESCRIPTION:
* Command to answer a incoming call.
* This command can also be used to swap the active and hold calls.
* If this api is called to answer the hold call, active call will be put on hold.
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_ata_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_dial_req
* DESCRIPTION:
* Command to dial a phone number or dial from memory.
* PARAMETERS
* param1 : Service handle
* param2 : Phone number string/memory location.
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_dial_req(int srv_hd, const char *number);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_call_wait_notify_req
* DESCRIPTION:
* This command allows control of the Call Waiting supplementary service.
* "wait" parameter is used with this command.
* Enable/Disable the presentation of the AT_CALL_WAIT_NOTIFY unsolicited result code
* MMI_TRUE: Enable the call wait
* MMI_FALSE: Disable the call wait
* PARAMETERS
* param1 : Service handle
* param2 : Enable/disable boolean value
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_call_wait_notify_req(int srv_hd, MMI_BOOL wait);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_set_clip_req
* DESCRIPTION:
* This command allows control of the Call Identification supplementary service.
* MMI_TRUE: Enable the call Identification unsolicited result code
* MMI_FALSE: Disable the call Identification unsolicited result code
* PARAMETERS
* param1 : Service handle
* param2 : Enable/disable boolean value to enable/diable incoming call indication
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_set_clip_req(int srv_hd, MMI_BOOL enable_callId);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_generate_dtmf_tone_req
* DESCRIPTION:
* This command allows control of the Generating dtmf tone supplementary service.
* PARAMETERS
* param1 : Service handle
* param2 : DTMF tone code
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_generate_dtmf_tone_req(int srv_hd, U8 tone);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_voice_recognition_req
* DESCRIPTION:
* This command allows control of the voice recognition supplementary service.
* MMI_TRUE: Enable the VR unsolicited result code
* MMI_FALSE: Disable the VR unsolicited result code
* PARAMETERS
* param1 : Service handle
* param2 : Enable/disable voice recognition
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_voice_recognition_req(int srv_hd, MMI_BOOL enabled_vr);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_redial_req
* DESCRIPTION:
* This command allows user to redial the last number
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_redial_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_set_network_operator_format
* DESCRIPTION:
* Network operator format should be set before retrieving netwrok operator name
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_set_network_operator_format(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_get_network_operator_info_req
* DESCRIPTION:
* This command allows to fetch network operator info supplementary service.
* Some Audio gateway don't send Network op. info until asked them to send
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_get_network_operator_info_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_hold_response_set_req
* DESCRIPTION:
* This command allow user to control the behavior of active and hold call
* PARAMETERS
* param1 : Service handle
* param2 : index value to pass hold settings
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_hold_response_set_req(int srv_hd,srv_bt_dialer_AtResponseHold_enum index);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_response_hold_read_req
* DESCRIPTION:
* This command allow user to read the behavior of active and hold call
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_send_response_hold_read_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_get_network_operator_info_req
* DESCRIPTION:
* This command allows to fetch network operator info supplementary service.
* Some Audio gateway don't send Network op. info until asked them to send
* PARAMETERS
* param1 : Service handle
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_get_network_operator_info_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_hangup_current_call
* DESCRIPTION:
* Hangup all currently active calls. It will also end any incoming call.
* So when there is any call waiting, and give this command, it will
* release the waiting call. Also it will release the outgoing call which is
* not still active.
* PARAMETERS
* param1 : application service handler
* RETURNS
* SUCCES/FAILURE
*****************************************************************************/
int srv_bt_dialer_hangup_current_call(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_speaker_vol_gain_req
* DESCRIPTION:
* This function is used to set volume gain from feature phone side.
* PARAMETERS
* param1 : Application Service handler
* param2 : Speaker volume gain from feature phone side
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_speaker_vol_gain_req(int srv_hd,int gain);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_mic_vol_gain_req
* DESCRIPTION:
* Mic volume gain
* PARAMETERS
* param1 : Application Service handler
* param2 : Mic volume gain from feature phone side
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_mic_vol_gain_req(int srv_hd,int gain);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_voice_tag_req
* DESCRIPTION:
* Tag phone number with voice
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_send_voice_tag_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_noise_red_req
* DESCRIPTION:
* Noice reduction request
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_noise_red_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_list_current_calls
* DESCRIPTION:
* List current calls status
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_list_current_calls(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_event_reporting
* DESCRIPTION:
* Error event reporting
* PARAMETERS
* param1 : Application Service handler
* param2 : Event
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_event_reporting(int srv_hd, U8 event);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_subscriber_num_req
* DESCRIPTION:
* Subscriber number info
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_subscriber_num_req(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_release_all_held_calls
* DESCRIPTION:
* Release all held calls
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_release_all_held_calls(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_voice_tag_req
* DESCRIPTION:
* Releases all active calls (if any exist) and accepts the other
* (held or waiting) call. If "call" is specified, will release the
* specific call.
* Note -In case of no index, pass '-1' as defualt for 'Call'.
* The new arguments for this command include an index of a specific call as indicated in the +CLCC response.
* PARAMETERS
* param1 : Application Service handler
* param2 : Call index
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_release_all_active_calls(int srv_hd,S8 Call);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_hold_all_active_calls
* DESCRIPTION:
* Places all active calls (if any exist) on hold and accepts the other
* (held or waiting) call. If "call" is specified, places all active calls
* on hold except the specified call.
* IF the 'index' is not specified , IT will swap the two calls( i.e. put on hold the active call and vice versa)
* IF there is single call only, it will put on hold the same.
* Note -In case of no index, pass '-1' as defualt for 'Call'.
* The new arguments for this command include an index of a specific call as indicated in the +CLCC response.
* PARAMETERS
* param1 : Application Service handler
* param2 : Call index
* RETURNS
* SUCCESS/FAILURE
* *****************************************************************************/
int srv_bt_dialer_hold_all_active_calls(int srv_hd,S8 Call);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_add_held_call_to_conversation
* DESCRIPTION:
* Add Held Call to Conversation
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_add_held_call_to_conversation(int srv_hd);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_send_call_retrieve_req
* DESCRIPTION:
* If a single call is on hold, this API is to answer the same call.
* PARAMETERS
* param1 : Application Service handler
* RETURNS
* SUCCESS/FAILURE
*****************************************************************************/
int srv_bt_dialer_send_call_retrieve_req(int srv_hd);
/*****************************************************************************
* <GROUP CallBackFunctions>
* FUNCTION
* srv_bt_dialer_cm_connect_notify
* DESCRIPTION:
* CM notify callback
* PARAMETERS
* param1 : Connection type
* param2 : result (TRUE/FALSE)
* param3 : connect/disconnect request(TRUE/FALSE)
* RETURNS
* void
*****************************************************************************/
typedef void(*srv_bt_dialer_cm_connect_notify)(srv_bt_cm_connection_type conn_type,MMI_BOOL result,MMI_BOOL is_connect);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_cm_connect_req
* DESCRIPTION:
* Connect Request from CM
* PARAMETERS
* param1 : Device address
* param2 : CM callback to notify back
* RETURNS
* void
*****************************************************************************/
void srv_bt_dialer_cm_connect_req(srv_bt_cm_bt_addr *dev_addr,srv_bt_dialer_cm_connect_notify srv_cm_cb);
/*****************************************************************************
* FUNCTION
* srv_bt_dialer_cm_disconnect_req
* DESCRIPTION:
* Disconnect request from CM
* PARAMETERS
* param1 : CM callback to notify back
* RETURNS
* void
*****************************************************************************/
void srv_bt_dialer_cm_disconnect_req(srv_bt_dialer_cm_connect_notify srv_cm_cb);
srv_bt_cm_bt_addr* srv_bt_get_dialor_addr(void);
U8 srv_bt_dialer_get_call_setup_state();
MMI_BOOL srv_bt_dialer_is_any_call(void);
MMI_BOOL srv_bt_dialer_is_in_call(void);
MMI_BOOL srv_bt_dialer_is_atd_pending(void);
void srv_bt_dialer_switch_audio_path_bt(void);
void srv_bt_dialer_post_evt_to_a2dp(void);
U8 srv_bt_dialer_get_bqb_bsir_enable(void);
void srv_bt_dialer_reset_bqb_bsir_enable(void);
/*code snippet to send AT command
UCM will request to open the BT dialer service and register the callback
This should be done only once before closing the BT dialer service.
int srv_hd;
int ind_event;
srv_hd = srv_bt_dialer_open();
srv_bt_dialer_register_hf_notifier(srv_hd, (void *)callback_ptr);
ind_event = SRV_BT_DIALER_UNMASK_BSIR_IND | SRV_BT_DIALER_UNMASK_CIEV_SIGNAL_IND |
SRV_BT_DIALER_UNMASK_ROAM_IND | SRV_BT_DIALER_UNMASK_BATTCHG_IND ;
srv_bt_dialer_register_indicators(srv_hd, U16 ind_event);
--> to dial a number:
srv_bt_dialer_send_dial_req(srv_hd, "9999999999");
*/
/*code snippet to receive Notification from BT Dialer service
((srv_bt_dialer_register_hf_event)inst->notify)(ptr); //at caller's end
When BT dialer receives any notification from the BT stack, it will kick off the callback
registered by UCM.
UCM needs to write the definition of this callback something like below.
UCM module should not close the BT dialer service inside the callback definition.
Since the current callback execution is being done in BT dialer service,
its better to post a event (using Framework service and do the action after receiving the control)
void srv_bt_dialer_register_hf_event(srv_bt_dialer_notify_event_struct notify)
{
switch(notify.event_id)
{
case SRV_BT_DIALER_EVT_ID_AT_CALL_HOLD:
something = notify.hold_test.flags;
uxm_xxx_hdlr();
break;
default:
case SRV_BT_DIALER_AT_INDICATOR_EVENT:
something = notify.event.indicator;
something = notify.event.value;
uxm_xxx_hdlr();
break;
default:
}
mmi_frm_post_event((mmi_event_struct *)&evnt, proc_func,user_data);
}
*/
MMI_BOOL srv_bt_dialer_get_incoming_call_ans_status(void);
void srv_bt_dialer_set_incoming_call_ans_status(MMI_BOOL flag);
#endif /*__BT_DIALER_SUPPORT__*/
#endif /*__BTDIALER_SRV_GPROT_H__*/