-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathTYPE1SC.h
More file actions
396 lines (316 loc) · 7.93 KB
/
TYPE1SC.h
File metadata and controls
396 lines (316 loc) · 7.93 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
/*
* A library for controlling TYPE1SC LTE CAT.M1
*
* @Author Rooney.Jang [CodeZoo]
* @Date 05/06/2021
*
*/
#ifndef TYPE1SC_h
#define TYPE1SC_h
#include "Countdown.h"
class TYPE1SC {
public:
/*
* A simplified constructor taking only a Stream ({Software/Hardware}Serial)
* object. The serial port should already be initialised when initialising
* this library.
*/
TYPE1SC(Stream &serial, Stream &debug);
TYPE1SC(Stream &serial, Stream &debug, uint8_t pwr_pin, uint8_t reset_pin,
uint8_t wakeup_pin);
/*
* Power on the module.
*/
void pwrON(void);
/*
* Power off the module.
*/
void pwrOFF(void);
/*
* ext Antenna Enable.
*/
void extAntON(uint8_t extAnt_pin);
/*
* Initialization the module.
*/
int init(void);
/*
* Return current date & time.
*/
int getCCLK(char *szCCLK, int nBufferSize);
/*
* Request Manufacturer Revision.
*/
int getCGMR(char *szCGMR, int nBufferSize);
/*
* Request Product Serial Number (returns the IMEI).
*/
int getIMEI(char *szIMEI, int nBufferSize);
/*
* Request ICCID from the SIM (returns the ICCID).
*/
int getICCID(char *szICCID, int nBufferSize);
/*
* Request Change device functionality status. (0-1)
*/
int getCFUN(int *value);
/*
* Set Change device functionality. (0-1)
*/
int setCFUN(int value);
/*
* Set Change HTTP Event functionality. (0-1)
*/
int setSocket_EV(int value);
/*
* Set Change HTTP Event functionality. (0-1)
*/
int setHTTP_EV(int value);
/*
* Set HTTP Profile ID & Connection Address.
*/
int setHTTP_NODES(int profile_id, char *http_addr);
/*
* Set HTTP TLS.
*/
int setHTTP_TLS(int profile_id, int nProfile);
/*
* HTTP Get.
*/
int HTTP_GET(int profile_id, char *http_get_addr, int *readSize);
/*
* HTTP Get.
*/
int HTTP_GET(int profile_id, char *http_get_addr, int *readSize, bool secure);
/*
* HTTP Data Read.
*/
int HTTP_READ(int profile_id, int readSize, char* httpData, int nBufferSize);
/*
* Set Change MQTT Event functionality. (0-1)
*/
int setMQTT_EV(int value);
/*
* Set MQTT Client ID & Connection Address.
*/
int setMQTT_NODES(char *client_id, char *mqtt_addr);
/*
* Set MQTT Client ID & Connection Address & User ID & Password
*/
int setMQTT_NODES(char *client_id, char *mqtt_addr, char *mqtt_user, char *mqtt_pass);
/*
* Set MQTT Client ID & Connection Address & User ID & Password
*/
int setMQTT_NODES(char *client_id, char *mqtt_addr, char *mqtt_user);
/*
* Set MQTT Session Timeout. (1 - 65535, Default 600 sec)
*/
int setMQTT_TIMEOUT(uint32_t value);
/*
* MQTT Server Connect
*/
int MQTT_Connect(void);
/*
* MQTT Server DisConnect
*/
int MQTT_DisConnect(void);
/*
* MQTT Subscribe Topic
* qos : 0 - at most one delivery (default)
* 1 - Delivered at least once
* 2 - Exactly one delivery
*/
int MQTT_SUBSCRIBE(int qos, char *topic);
/*
* MQTT UnSubscribe Topic
*/
int MQTT_UnSUBSCRIBE(char *topic);
/*
* MQTT Publish Topic
* qos : 0 - at most one delivery (default)
* 1 - Delivered at least once
* 2 - Exactly one delivery
*/
int MQTT_Publish(int qos, char *topic, int szData, char *Data);
/*
* Set Change AWS_IOT Event functionality. (0-1)
*/
int setAWSIOT_EV(int value);
/*
* Set AWS_IOT Connection Property
*/
int setAWSIOT_CONN(char *client_id, char *aws_addr, int tlsProfileNo);
/*
* Set AWS_IOT Timeout. (1 - 1200, Defalut 1200 sec)
*/
int setAWSIOT_TIMEOUT(int value);
/*
* AWS_IOT Connect
*/
int AWSIOT_Connect(void);
/*
* AWS_IOT DisConnect
*/
int AWSIOT_DisConnect(void);
/*
* AWS_IOT Subscribe Topic
*/
int AWSIOT_SUBSCRIBE(char *topic);
/*
* AWS_IOT UnSubscribe Topic
*/
int AWSIOT_UnSUBSCRIBE(char *topic);
/*
* AWS_IOT Publish Topic
*/
int AWSIOT_Publish(char *topic, char *Data);
/*
* Set Change device APN.
*/
int setAPN(char *apn);
/*
* Get device APN.
*/
int getAPN(char *apn, int bufferSize);
/*
* Set PPP mode.
*/
int setPPP(void);
/*
* Set AT mode.
*/
int setAT(void);
/*
* Write Secure KEY.
*/
int writeKEY(const char *fileName, int isKEY, const char *key);
/*
* ADD Certification Profile. range (1-255)
*/
int addCert(int nProfile);
/*
* ADD HTTP Certification Profile. range (1-255)
*/
int addHTTPCert(int nProfile);
/*
* DELETE Certification Profile. range (1-255)
*/
int delCert(int nProfile);
/*
* Request international mobile subscriber identity.
*/
int getCIMI(char *szCIMI, int nBufferSize);
/*
* EPS network registration status.
*/
int canConnect(void);
/*
* Get REJECT Cause Number.
*/
int getRejectCause(int *rejectNum);
/*
* Get Serving Cell Number.
*/
int getServingCell(int *servingCell);
/*
* Get RSRP(Reference Signal Received Power) information.
*/
int getRSRP(int *rsrp);
/*
* Get RSRQ(Reference Signal Received Quality) information.
*/
int getRSRQ(int *rsrq);
/*
* Get SINR(Signal Interference plus Noise Ratio) information.
*/
int getSINR(int *sinr);
/*
* Get RSSI(Received Signal Strength Indicator) information.
*/
int getRSSI(int *rssi);
/*
* Get TX power.
*/
int getTxPower(char *txPower, int txPowerSize);
/*
* Enter a DNS address to get an IP address.
*/
int getIPAddr(const char *srcAddr, char *dstAddr, int dstAddrSize);
/*
* Create UDP/TCP Socket.
* service_type : 0(UDP) or 1(TCP)
* remote_address : IP_address or domain_name
* remote_port : (0-65535)
*/
int socketCreate(int service_type, char *remote_address, long remote_port);
/* Socket Activation */
int socketActivate(void);
/* Socket DeActivation */
int socketDeActivate(void);
/* Socket SSL */
int socketSSL(int tlsProfileNo);
/* Socket Information */
int socketInfo(char *info, int infoSize);
/*
* Close UDP/TCP Socket.
*/
int socketClose(void);
/*
* Send UDP/TCP Socket.
*/
int socketSend(char *buffer, int size);
int socketSend(const char *str);
/*
* Receive UDP/TCP Socket.
*/
int socketRecv(char *buffer, int bufferSize, int *recvSize);
/*
* Receive HTTP Socket.
*/
int socketRecvHTTP(char *buffer, int bufferSize, int *recvSize);
/*
* Power Saving Mode Disable function. TYPE1SC Default, 0(Disable)
*/
int disablePSM(void);
/*
* Reset the module.
*/
void reset(void);
/*
* check SIM status.
*/
int chkSIM(void);
private:
int sendATcmdOmitOK(char *szCmd, char *szResponse, int nResponseBufSize,
const char *szResponseFilter,
unsigned long ulWaitDelay = 10000);
int sendATcmdOmitOK(char *szCmd, char *szResponse, int nResponseBufSize,
const char *szResponseFilter, char *SendData,
int SendDataSize, unsigned long ulWaitDelay = 10000);
int writeATcmd(char *szCmd, char *szResponse, int nResponseBufSize,
const char *szResponseFilter,
unsigned long ulWaitDelay = 2000);
int sendATcmd(char *szCmd, char *szResponse, int nResponseBufSize,
const char *szResponseFilter, unsigned long ulWaitDelay = 2000);
int sendATcmd(char *szCmd, char *aLine[], int nMaxLine,
unsigned long ulWaitDelay = 2000);
int readATresponseLineOmitOK(char *szLine, int nLineBufSize,
const char *szResponseFilter,
unsigned long ulDelay);
int readATresponseLine(char *szLine, int nLineBufSize,
const char *szResponseFilter, unsigned long ulDelay);
int readATresponseHTTPLine(char *szLine, int nLineBufSize,
const char *szResponseFilter, unsigned long ulDelay);
int readATresponseLine(char *aLine[], int nMaxLine, unsigned long ulDelay);
void TYPE1SC_serial_clearbuf(void);
void TYPE1SC_trace(const __FlashStringHelper *szTrace, ...);
Stream &_serial;
Stream &_debug;
uint8_t _pwr_pin;
uint8_t _reset_pin;
uint8_t _wakeup_pin;
uint8_t _extAnt_pin;
int _timeOut = 0;
int _nSocket = 1;
};
#endif