Adeon
Loading...
Searching...
No Matches
SIMlib.cpp
Go to the documentation of this file.
1
23#include "utility/SIMlib.h"
24
25#ifdef HW_SERIAL
31GSM::GSM(long baud){
32 #ifdef ESP32
33 Serial2.begin(DEFAULT_BAUD_RATE, SERIAL_8N1, RX, TX);
34 #else
35 Serial2.begin(baud);
36 #endif
37
38 _pSerialHandler = new SerialHandler(&Serial2);
39 _pParser = new ParserGSM(_pSerialHandler, &_newMsg, &_lastMsgIndex);
40 _pPhoneBuffer = _pParser->getPointPhoneBuf();
41}
42#endif
43
49GSM::GSM(uint8_t rx, uint8_t tx, long baud) {
50Stream *pGsmSerial = nullptr;
51
52#ifdef SW_SERIAL
53 #ifdef ESP8266
54 pGsmSerial = new SoftwareSerial();
55 ((SoftwareSerial*) pGsmSerial)->begin(baud, SWSERIAL_8N1, rx, tx, false, RX_BUF_SIZE, 0);
56 #else
57 pGsmSerial = new SoftwareSerial(rx, tx);
58 ((SoftwareSerial*) pGsmSerial)->begin(baud);
59 #endif
60#else
61 #ifdef ESP32
62 Serial2.begin(baud, SERIAL_8N1, rx, tx);
63 #else
64 Serial2.begin(baud);
65 #endif
66 pGsmSerial = &Serial2;
67#endif
68 _pSerialHandler = new SerialHandler(pGsmSerial);
69 _pParser = new ParserGSM(_pSerialHandler, &_newMsg, &_lastMsgIndex);
70 _pPhoneBuffer = _pParser->getPointPhoneBuf();
71}
72
78GSM::GSM(Stream* pGsmSerial) {
79 _pSerialHandler = new SerialHandler(pGsmSerial);
80 _pParser = new ParserGSM(_pSerialHandler, &_newMsg, &_lastMsgIndex);
81 _pPhoneBuffer = _pParser->getPointPhoneBuf();
82}
83
92 _pSerialHandler->periodicSerialCheck();
93 //check if SMS is received
94 if(_pSerialHandler->isRxBufferAvailable()){
95 if(_pParser->identifyIncomingMsg(incomingSms)){
96 if(sendCommand(_pParser->makeDynamicCmd(smsReading, _lastMsgIndex))){
97 _pParser->getPhoneNumber();
98 _pParser->getMsg();
99 _pMsgBuffer = _pParser->getPointMsgBuf();
100 if(_lastMsgIndex > 10){
101 deleteMsgGsmStack();
102 }
103 else{
104 deleteMsg();
105 }
106 }
107 else{
108 Serial.println(F("ERR"));
109 deleteMsgGsmStack();
110 }
111 }
112 }
113 _pSerialHandler->setRxBufferAvailability(false);
114}
115
121 return _newMsg;
122}
123
129 _newMsg = false; //sms is returned, preparing logical variable for new msg
130 return _pMsgBuffer;
131}
132
138 return _pPhoneBuffer;
139}
140
146 while(sendCommand(basicCommand) != true){
147 delay(1000);
148 Serial.println(F("GSM IS OFFLINE"));
149 }
150 Serial.println(F("GSM IS ONLINE"));
151 delay(1000);
152 while(sendCommand(gsmMode) != true){
153 delay(1000);
154 Serial.println(F("CONFIG FAILED"));
155 }
156 Serial.println(F("GSM IS CONFIGURED"));
157 delay(1000);
158 while(sendCommand(plainTextMode) != true){
159 delay(1000);
160 Serial.println(F("MSG SETTING FAILED"));
161 }
162 Serial.println(F("MSG SET TO TEXT"));
163 delay(1000);
164}
165
171bool GSM::sendCommand(const char* cmd){
172 _pSerialHandler->serialWrite(cmd);
173 return _pParser->getResponse(confirmFeedback);
174}
175
179void GSM::deleteMsg(){
180 if(sendCommand(_pParser->makeDynamicCmd(deleteSms, _lastMsgIndex))){
181 Serial.println(F("MSG DELETED"));
182 _lastMsgIndex--;
183 }
184 else{
185 Serial.println(F("DELETE ERR"));
186 }
187}
188
192void GSM::deleteMsgGsmStack(){
193 while(_lastMsgIndex != 0){
194 deleteMsg();
195 }
196}
197
204GSM::ParserGSM::ParserGSM(GSM::SerialHandler* pSerialHandler, bool* newMsg, uint8_t* lastMsgIndex){
205 _pSerialHandler = pSerialHandler;
206 _pNewMsg = newMsg;
207 _pLastMsgIndex = lastMsgIndex;
208}
209
215bool GSM::ParserGSM::getResponse(const char* searchedChar){
216 _pSerialHandler->feedbackSerialCheck();
217 _pRxBuffer = _pSerialHandler->getRxBufferP();
218 if(_pSerialHandler->isRxBufferAvailable()){
219 if(strstr(_pRxBuffer, "OK") != nullptr){
220 _pSerialHandler->setRxBufferAvailability(false);
221 return true;
222 }
223 else{
224 return false;
225 }
226 }
227 return false;
228}
229
233void GSM::ParserGSM::getMsg(){
234 _pRxBuffer = _pSerialHandler->getRxBufferP();
235 char* tmpStr = strrchr(_pRxBuffer, '\"') + 3;
236 //if semicolon is not present, message is not valid
237 if(strrchr(tmpStr, ';') != nullptr){
238 char* endMsgPointer = strrchr(tmpStr, ';') + 1;
239 uint8_t counter = 0;
240
241 if(_msgBuffer != nullptr){
242 free(_msgBuffer);
243 }
244 _msgBuffer = (char*)malloc(strlen(tmpStr) - strlen(endMsgPointer) + 1);
245 while(&tmpStr[counter] != endMsgPointer){
246 _msgBuffer[counter] = tmpStr[counter];
247 counter++;
248 }
249 _msgBuffer[counter] = '\0';
250 *_pNewMsg = true;
251 }
252}
253
257void GSM::ParserGSM::getPhoneNumber(){
258 _pRxBuffer = _pSerialHandler->getRxBufferP();
259 char* tmpStr = strstr(_pRxBuffer, "\"+") + 2;
260 char* endMsgPointer = strstr(tmpStr, "\",\"\",\"");
261 uint8_t counter = 0;
262
263 memset(_phoneBuffer, 0, sizeof(_phoneBuffer));
264 while(&tmpStr[counter] != endMsgPointer){
265 _phoneBuffer[counter] = tmpStr[counter];
266 counter++;
267 }
268 _phoneBuffer[counter] = '\0';
269}
270
275char* GSM::ParserGSM::getPointMsgBuf(){
276 return _msgBuffer;
277}
278
283char* GSM::ParserGSM::getPointPhoneBuf(){
284 return _phoneBuffer;
285}
286
292bool GSM::ParserGSM::identifyIncomingMsg(const char* command){
293 _pRxBuffer = _pSerialHandler->getRxBufferP();
294 char *tmpStr = strstr(_pRxBuffer, command);
295 if(tmpStr != nullptr){
296 if(strncmp(tmpStr, incomingSms, strlen(incomingSms)) == 0){
297 *_pLastMsgIndex = GetIndex(tmpStr, ',');
298 _pSerialHandler->setRxBufferAvailability(false);
299 return true;
300 }
301 }
302 _pSerialHandler->setRxBufferAvailability(false);
303 return false;
304}
305
312char* GSM::ParserGSM::makeDynamicCmd(const char* command, uint8_t id){
313 if(_cmdBuffer != nullptr){
314 free(_cmdBuffer);
315 }
316
317 //+ 3 – array cells for 2 digit number and end char
318 _cmdBuffer = (char*)malloc(strlen(command) + 3);
319 strcpy(_cmdBuffer, command);
320 sprintf(&_cmdBuffer[strlen(command)], "%d", id);
321 _cmdBuffer[strlen(command) + 2] = '\0';
322 return _cmdBuffer;
323}
324
331uint8_t GSM::ParserGSM::GetIndex(char* buffer, char startSym){
332 char *tmpStr = strchr(buffer, startSym) + 1;
333 uint8_t indexLenCount = 0;
334 while(tmpStr[indexLenCount] >= 0x31 && tmpStr[indexLenCount] <= 0x39){
335 indexLenCount++;
336 }
337 tmpStr[indexLenCount] = '\0';
338 return (uint8_t)atoi(tmpStr);
339}
340
345GSM::SerialHandler::SerialHandler(Stream* pGsmSerial){
346 _pGsmSerial = pGsmSerial;
347}
352void GSM::SerialHandler::serialWrite(const char* command){
353 _periodicReading = false;
354 _pGsmSerial->println(command);
355 _pGsmSerial->flush();
356 delay(200);
357 _periodicReading = true;
358}
359
364void GSM::SerialHandler::periodicSerialCheck(){
365 if(_periodicReading){
366 if(_periodicReadingFlag){
367 _lastReadTime = millis();
368 _periodicReadingFlag = false;
369 }
370
371 if((millis() - _lastReadTime) >= PERIODIC_READ_TIME){
372 uint16_t var;
373 var = _pGsmSerial->available();
374 delay(100);
375 if(var > 0 && _periodicReading){
376 serialRead(var);
377 }
378 _periodicReadingFlag = true;
379 }
380 }
381}
382
386void GSM::SerialHandler::feedbackSerialCheck(){
387 unsigned long timeFlag = millis();
388 while(millis() < (timeFlag + 1000)){
389 uint16_t var;
390 var = _pGsmSerial->available();
391 delay(100);
392 if(var > 0){
393 serialRead(var);
394 break;
395 }
396 }
397}
398
403char* GSM::SerialHandler::getRxBufferP(){
404 return _rxBuffer;
405}
406
411bool GSM::SerialHandler::isRxBufferAvailable(){
412 return _rxBufferAvailable;
413}
414
419void GSM::SerialHandler::setRxBufferAvailability(bool var){
420 _rxBufferAvailable = var;
421}
422
427void GSM::SerialHandler::serialRead(uint8_t incomingBytes){
428 if(_rxBuffer != nullptr){
429 free(_rxBuffer);
430 _rxBuffer = nullptr;
431 }
432 _rxBuffer = (char*)malloc(sizeof(char) * (incomingBytes + 1));
433 _pGsmSerial->readBytes(_rxBuffer, incomingBytes);
434 _rxBuffer[incomingBytes] = '\0';
435 _rxBufferAvailable = true;
436}
437
Adeon library for GSM modules.
void checkGsmOutput()
Checks for incoming SMS. Checks serial for new incoming message. If message is detected,...
Definition: SIMlib.cpp:91
GSM(uint8_t rx, uint8_t tx, long baud=DEFAULT_BAUD_RATE)
Constructor for the class GSM.
Definition: SIMlib.cpp:49
bool isNewMsgAvailable()
Returns new message availability.
Definition: SIMlib.cpp:120
char * getPhoneNum()
Returns pointer to phone number buffer array.
Definition: SIMlib.cpp:137
void begin()
Sets GSM module. Performs standard AT test, sets GSM mode and message in plain text.
Definition: SIMlib.cpp:145
char * getMsg()
Returns pointer to message buffer array.
Definition: SIMlib.cpp:128