-
Notifications
You must be signed in to change notification settings - Fork 30
/
call.cpp
334 lines (294 loc) · 12.5 KB
/
call.cpp
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
#include "call.h"
/**********************************************************
Method checks status of call
return:
CALL_NONE - no call activity
CALL_INCOM_VOICE - incoming voice
CALL_ACTIVE_VOICE - active voice
CALL_NO_RESPONSE - no response to the AT command
CALL_COMM_LINE_BUSY - comm line is not free
**********************************************************/
byte CallGSM::CallStatus(void)
{
byte ret_val = CALL_NONE;
if (CLS_FREE != gsm.GetCommLineStatus()) return (CALL_COMM_LINE_BUSY);
gsm.SetCommLineStatus(CLS_ATCMD);
gsm.SimpleWriteln(F("AT+CPAS"));
// 5 sec. for initial comm tmout
// 50 msec. for inter character timeout
if (RX_TMOUT_ERR == gsm.WaitResp(5000, 50)) {
// nothing was received (RX_TMOUT_ERR)
// -----------------------------------
ret_val = CALL_NO_RESPONSE;
} else {
// something was received but what was received?
// ---------------------------------------------
// ready (device allows commands from TA/TE)
// <CR><LF>+CPAS: 0<CR><LF> <CR><LF>OK<CR><LF>
// unavailable (device does not allow commands from TA/TE)
// <CR><LF>+CPAS: 1<CR><LF> <CR><LF>OK<CR><LF>
// unknown (device is not guaranteed to respond to instructions)
// <CR><LF>+CPAS: 2<CR><LF> <CR><LF>OK<CR><LF> - NO CALL
// ringing
// <CR><LF>+CPAS: 3<CR><LF> <CR><LF>OK<CR><LF> - NO CALL
// call in progress
// <CR><LF>+CPAS: 4<CR><LF> <CR><LF>OK<CR><LF> - NO CALL
if(gsm.IsStringReceived("+CPAS: 0")) {
// ready - there is no call
// ------------------------
ret_val = CALL_NONE;
} else if(gsm.IsStringReceived("+CPAS: 3")) {
// incoming call
// --------------
ret_val = CALL_INCOM_VOICE;
} else if(gsm.IsStringReceived("+CPAS: 4")) {
// active call
// -----------
ret_val = CALL_ACTIVE_VOICE;
}
}
gsm.SetCommLineStatus(CLS_FREE);
return (ret_val);
}
/**********************************************************
Method checks status of call(incoming or active)
and makes authorization with specified SIM positions range
phone_number: a pointer where the tel. number string of current call will be placed
so the space for the phone number string must be reserved - see example
first_authorized_pos: initial SIM phonebook position where the authorization process
starts
last_authorized_pos: last SIM phonebook position where the authorization process
finishes
Note(important):
================
In case first_authorized_pos=0 and also last_authorized_pos=0
the received incoming phone number is NOT authorized at all, so every
incoming is considered as authorized (CALL_INCOM_VOICE_NOT_AUTH is returned)
return:
CALL_NONE - no call activity
CALL_INCOM_VOICE_AUTH - incoming voice - authorized
CALL_INCOM_VOICE_NOT_AUTH - incoming voice - not authorized
CALL_ACTIVE_VOICE - active voice
CALL_INCOM_DATA_AUTH - incoming data call - authorized
CALL_INCOM_DATA_NOT_AUTH - incoming data call - not authorized
CALL_ACTIVE_DATA - active data call
CALL_NO_RESPONSE - no response to the AT command
CALL_COMM_LINE_BUSY - comm line is not free
**********************************************************/
byte CallGSM::CallStatusWithAuth(char *phone_number,
byte first_authorized_pos, byte last_authorized_pos)
{
byte ret_val = CALL_NONE;
byte search_phone_num = 0;
byte i;
byte status;
char *p_char;
char *p_char1;
phone_number[0] = 0x00; // no phonr number so far
if (CLS_FREE != gsm.GetCommLineStatus()) return (CALL_COMM_LINE_BUSY);
gsm.SetCommLineStatus(CLS_ATCMD);
gsm.SimpleWriteln(F("AT+CLCC"));
// 5 sec. for initial comm tmout
// and max. 1500 msec. for inter character timeout
gsm.RxInit(5000, 1500);
// wait response is finished
do {
if (gsm.IsStringReceived("OK\r\n")) {
// perfect - we have some response, but what:
// there is either NO call:
// <CR><LF>OK<CR><LF>
// or there is at least 1 call
// +CLCC: 1,1,4,0,0,"+420XXXXXXXXX",145<CR><LF>
// <CR><LF>OK<CR><LF>
status = RX_FINISHED;
break; // so finish receiving immediately and let's go to
// to check response
}
status = gsm.IsRxFinished();
} while (status == RX_NOT_FINISHED);
// generate tmout 30msec. before next AT command
delay(30);
if (status == RX_FINISHED) {
// something was received but what was received?
// example: //+CLCC: 1,1,4,0,0,"+420XXXXXXXXX",145
// ---------------------------------------------
if(gsm.IsStringReceived("+CLCC: 1,1,4,0,0")) {
// incoming VOICE call - not authorized so far
// -------------------------------------------
search_phone_num = 1;
ret_val = CALL_INCOM_VOICE_NOT_AUTH;
} else if(gsm.IsStringReceived("+CLCC: 1,1,4,1,0")) {
// incoming DATA call - not authorized so far
// ------------------------------------------
search_phone_num = 1;
ret_val = CALL_INCOM_DATA_NOT_AUTH;
} else if(gsm.IsStringReceived("+CLCC: 1,0,0,0,0")) {
// active VOICE call - GSM is caller
// ----------------------------------
search_phone_num = 1;
ret_val = CALL_ACTIVE_VOICE;
} else if(gsm.IsStringReceived("+CLCC: 1,1,0,0,0")) {
// active VOICE call - GSM is listener
// -----------------------------------
search_phone_num = 1;
ret_val = CALL_ACTIVE_VOICE;
} else if(gsm.IsStringReceived("+CLCC: 1,1,0,1,0")) {
// active DATA call - GSM is listener
// ----------------------------------
search_phone_num = 1;
ret_val = CALL_ACTIVE_DATA;
} else if(gsm.IsStringReceived("+CLCC:")) {
// other string is not important for us - e.g. GSM module activate call
// etc.
// IMPORTANT - each +CLCC:xx response has also at the end
// string <CR><LF>OK<CR><LF>
ret_val = CALL_OTHERS;
} else if(gsm.IsStringReceived("OK")) {
// only "OK" => there is NO call activity
// --------------------------------------
ret_val = CALL_NONE;
}
// now we will search phone num string
if (search_phone_num) {
// extract phone number string
// ---------------------------
p_char = strchr((char *)(gsm.comm_buf),'"');
p_char1 = p_char+1; // we are on the first phone number character
p_char = strchr((char *)(p_char1),'"');
if (p_char != NULL) {
*p_char = 0; // end of string
strcpy(phone_number, (char *)(p_char1));
Serial.print("ATTESO: ");
Serial.println(phone_number);
} else
//Serial.println(gsm.comm_buf);
Serial.println("NULL");
if ( (ret_val == CALL_INCOM_VOICE_NOT_AUTH)
|| (ret_val == CALL_INCOM_DATA_NOT_AUTH)) {
if ((first_authorized_pos == 0) && (last_authorized_pos == 0)) {
// authorization is not required => it means authorization is OK
// -------------------------------------------------------------
if (ret_val == CALL_INCOM_VOICE_NOT_AUTH) ret_val = CALL_INCOM_VOICE_AUTH;
else ret_val = CALL_INCOM_DATA_AUTH;
} else {
// make authorization
// ------------------
gsm.SetCommLineStatus(CLS_FREE);
for (i = first_authorized_pos; i <= last_authorized_pos; i++) {
if (gsm.ComparePhoneNumber(i, phone_number)) {
// phone numbers are identical
// authorization is OK
// ---------------------------
if (ret_val == CALL_INCOM_VOICE_NOT_AUTH) ret_val = CALL_INCOM_VOICE_AUTH;
else ret_val = CALL_INCOM_DATA_AUTH;
break; // and finish authorization
}
}
}
}
}
} else {
// nothing was received (RX_TMOUT_ERR)
// -----------------------------------
ret_val = CALL_NO_RESPONSE;
}
gsm.SetCommLineStatus(CLS_FREE);
return (ret_val);
}
/**********************************************************
Method picks up an incoming call
return:
**********************************************************/
void CallGSM::PickUp(void)
{
//if (CLS_FREE != gsm.GetCommLineStatus()) return;
//gsm.SetCommLineStatus(CLS_ATCMD);
gsm.SendATCmdWaitResp("ATA", 10, 10, "OK", 3);
gsm.SimpleWriteln("ATA");
//gsm.SetCommLineStatus(CLS_FREE);
}
/**********************************************************
Method hangs up incoming or active call
return:
**********************************************************/
void CallGSM::HangUp(void)
{
//if (CLS_FREE != gsm.GetCommLineStatus()) return;
//gsm.SetCommLineStatus(CLS_ATCMD);
gsm.SendATCmdWaitResp("ATH", 500, 100, "OK", 5);
//gsm.SetCommLineStatus(CLS_FREE);
}
/**********************************************************
Method calls the specific number
number_string: pointer to the phone number string
e.g. gsm.Call("+420123456789");
**********************************************************/
void CallGSM::Call(char *number_string)
{
if (CLS_FREE != gsm.GetCommLineStatus()) return;
gsm.SetCommLineStatus(CLS_ATCMD);
// ATDxxxxxx;<CR>
gsm.SimpleWrite(F("ATD"));
gsm.SimpleWrite(number_string);
gsm.SimpleWriteln(F(";"));
// 10 sec. for initial comm tmout
// 50 msec. for inter character timeout
gsm.WaitResp(10000, 50);
gsm.SetCommLineStatus(CLS_FREE);
}
/**********************************************************
Method calls the number stored at the specified SIM position
sim_position: position in the SIM <1...>
e.g. gsm.Call(1);
**********************************************************/
void CallGSM::Call(int sim_position)
{
if (CLS_FREE != gsm.GetCommLineStatus()) return;
gsm.SetCommLineStatus(CLS_ATCMD);
// ATD>"SM" 1;<CR>
gsm.SimpleWrite(F("ATD>\"SM\" "));
gsm.SimpleWrite(sim_position);
gsm.SimpleWriteln(F(";"));
// 10 sec. for initial comm tmout
// 50 msec. for inter character timeout
gsm.WaitResp(10000, 50);
gsm.SetCommLineStatus(CLS_FREE);
}
void CallGSM::SendDTMF(char *number_string, int time)
{
if (CLS_FREE != gsm.GetCommLineStatus()) return;
gsm.SetCommLineStatus(CLS_ATCMD);
gsm.SimpleWrite(F("AT+VTD="));
gsm.SimpleWriteln(time);
gsm.WaitResp(1000, 100, "OK");
gsm.SimpleWrite(F("AT+VTS=\""));
gsm.SimpleWrite(number_string);
gsm.SimpleWriteln(F("\""));
gsm.WaitResp(5000, 100, "OK");
gsm.SetCommLineStatus(CLS_FREE);
}
void CallGSM::SetDTMF(int DTMF_status)
{
if(DTMF_status==1)
gsm.SendATCmdWaitResp("AT+DDET=1", 500, 50, "OK", 5);
else
gsm.SendATCmdWaitResp("AT+DDET=0", 500, 50, "OK", 5);
}
char CallGSM::DetDTMF()
{
char *p_char;
char *p_char1;
char dtmf_char='-';
gsm.WaitResp(1000, 500);
{
//Serial.print("BUF: ");
//Serial.println((char *)gsm.comm_buf);
//Serial.println("end");
p_char = strstr((char *)(gsm.comm_buf),"+DTMF:");
if (p_char != NULL) {
p_char1 = p_char+6; //we are on the first char of BCS
dtmf_char = *p_char1;
}
}
return dtmf_char;
}