-
Notifications
You must be signed in to change notification settings - Fork 3
/
Gprs.h
126 lines (114 loc) · 2.83 KB
/
Gprs.h
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
#ifndef __GPRS_H__
#define __GPRS_H__
#include <Arduino.h>
#include <Coroutine.h>
#define ASSERT(a, b) b
template<typename T, uint16_t BUFFER_SIZE>
class GPRS {
public:
GPRS(T& serial) :
_atcmd(serial) {
}
typedef T Serial;
// enum at_cmd_result set_serial_ok() {
// uint8_t attempt = 3;
// auto result = AT_OK;
// while (attempt--) {
// auto result = AT_OK<T, BUFFER_SIZE>::test(_atcmd);
// if (result != EXEC_PENDING) {
// continue;
// }
// // wait for answer
// while (result == EXEC_PENDING) {
// result = _atcmd.check_status();
// if (AT_IS_EVENT(result)) {
// YIELD(result);
// }
// }
// // if got another event or error, exit
// if (result != AT_OK)
// continue;
// return AT_OK;
// }
// return result;
// }
//
// enum at_cmd_result set_pin_code(const char* pin) {
// // make sure modem can communicate
// auto result;
// while (true) {
// result = set_serial_ok();
// if (AT_IS_EVENT(result)) {
// YIELD(result);
// } else {
// break;
// }
// }
// if (result != AT_OK)
// return result;
// // exec at cmd
// result = AT_CPIN<T, BUFFER_SIZE>::read(_atcmd);
// // if cmd failed, exit
// if (result != EXEC_PENDING)
// return result;
// // wait for answer
// while (result == EXEC_PENDING)
// result = _atcmd.check_status();
// // if got another event or error, exit
// if (result != EVT_CPIN)
// return result;
// // parse CPIN message
// enum AT_CPIN<T, BUFFER_SIZE>::status status;
// count = AT_CPIN<T, BUFFER_SIZE>::parse(_atcmd.buffer, &status);
// Assert(count == 1);
// // if no pin required, exit
// if (result == AT_CPIN_READY)
// return AT_OK;
// // if not pin request event, ie error, exit
// if (result != AT_CPIN_SIM_PIN)
// return result;
//
// result = _atcmd.check_status();
// while (result == EXEC_PENDING)
// result = _atcmd.check_status();
// if (result != AT_OK)
// return result;
//
// // exec cmd to set pin
// result = _atcmd.exec("AT+CPIN=%s\r\n", pin);
// // if cmd failed, exit
// if (result != EXEC_PENDING)
// return result;
// // wait for answer
// while (result == EXEC_PENDING)
// result = _atcmd.check_status();
// // check if cmd succeded
// result = _atcmd.check_status();
// return result;
// }
//
//
// enum at_cmd_result set_echo_mode(bool echo) {
// // make sure modem can communicate
// auto result = set_serial_ok();
// return result;
// }
//
// enum at_cmd_result set_auto_awswer(uint8_t rings) {
// // make sure modem can communicate
// auto result = set_serial_ok();
// return result;
// }
//
//// { "+CFUN:", AT_CFUN, &at_cfun},
//// {"+CGREG:", AT_CGREG, &at_cgreg},
//// {"+CLCC:", AT_CLCC, &at_clcc},
//// {"+CMGF:", AT_CMGF, &at_cmgf},
//// {"+CMGL:", AT_CMGL, &at_cmgl},
//// {"+CPIN:", AT_CPIN, &at_cpin},
//// {"+DDET:", AT_DDET, &at_ddet},
//// {"+DTMF:", AT_DTMF, &at_dtmf},
private:
T _atcmd;
};
#endif