-
Notifications
You must be signed in to change notification settings - Fork 13
/
main.c
1444 lines (1172 loc) · 60.8 KB
/
main.c
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
/* ----------------------------------------------------------------------------------------------
* real GPS car tracker on ATMEGA328P + SIM808 module - version 1.0
* by Adam Loboda - adam.loboda@wp.pl
* baudrate UART is 9600 as most stable using RC internal clock 1MHz (8MHz with division by 8)
* MCU clock is lowered to 1MHz to reduce power consumption
*
* please configure SIM808 to fixed 9600 first by AT+IPR=9600 command
* and disable echo by ATE0 command
* to ensure stability, and then save config via AT&W command
*
* connections to be made :
* SIM808 RXD to ATMEGA328 TXD PIN #3,
* SIM808 TXD to ATMEGA328 RXD PIN #2
* SIM808 DTR (SLEEP PIN) to ATMEGA328 PC5 PIN #28
* optional : SIM808 RI/RING pin can be attached to INT0 PIN of ATMEGA328P (allows for POWERDOWN)
* VCC :
* ATMEGA328 VCC (PIN #7) must be connected to lower voltage VCC ~3.3V than 5V of SIM808 board
* you may use 3x 1N4007 diodes in serial to drop voltage from 5V to ~3.3V
* GND :
* ATMEGA328 GND (PIN #8 and PIN #22) to SIM808 GND and 0V
* other info :
* the prototype board was built using www.and-global.com BK-808 breadboard
* SIM808 breadboard which is powered from 5V DC but uses 3.3V TTL logic on RXD/TXD
*
* this version has more accurate postioning from GPS module
* ----------------------------------------------------------------------------------------------
*/
#include <inttypes.h>
#include <stdio.h>
#include <avr/interrupt.h>
#include <avr/io.h>
#include <avr/pgmspace.h>
#include <util/delay.h>
#include <avr/sleep.h>
#include <avr/wdt.h>
#include <string.h>
#include <avr/power.h>
#define UART_NO_DATA 0x0100
// internal RC oscillator 8MHz with divison by 8 and U2X0 = 1, gives 0.2% error rate for 9600 bps UART speed
// and lower current consumption
// for 1MHz : -U lfuse:w:0x62:m on ATMEGA328P
#define F_CPU 1000000UL
#define BAUD 9600
// formula for 1MHz clock and U2X0 = 1 double UART speed
#define MYUBBR ((F_CPU / (BAUD * 8L)) - 1)
// SIM and GSM related commands
const char AT[] PROGMEM = { "AT\n\r" };
const char ISATECHO[] PROGMEM = { "AT" };
const char ISOK[] PROGMEM = { "OK" };
const char ISRING[] PROGMEM = { "RING" };
const char ISRING2[] PROGMEM = { "ING" }; // if first character is missing - we also accept
const char ISREG1[] PROGMEM = { "+CREG: 0,1" }; // SIM registered in HPLMN
const char ISREG2[] PROGMEM = { "+CREG: 0,5" }; // SIM registered in ROAMING NETWORK
const char SHOW_REGISTRATION[] PROGMEM = {"AT+CREG?\n\r"};
const char DISREGREPORT[] PROGMEM = {"AT+CREG=0\n\r"}; // disable reporting URC of losing 2G coverage by +CREG=0
const char PIN_IS_READY[] PROGMEM = {"+CPIN: READY"};
const char PIN_MUST_BE_ENTERED[] PROGMEM = {"+CPIN: SIM PIN"};
const char SHOW_PIN[] PROGMEM = {"AT+CPIN?\n\r"};
const char ECHO_OFF[] PROGMEM = {"ATE0\n\r"};
const char ENTER_PIN[] PROGMEM = {"AT+CPIN=\"1111\"\n\r"};
const char CFGRIPIN[] PROGMEM = {"AT+CFGRI=1\n\r"};
const char HANGUP[] PROGMEM = {"ATH\n\r"};
const char SMS1[] PROGMEM = {"AT+CMGF=1\r\n"};
const char SMS2[] PROGMEM = {"AT+CMGS=\""};
const char DELSMS[] PROGMEM = {"AT+CMGDA=\"DEL ALL\"\r\n"};
const char CRLF[] PROGMEM = {"\"\n\r"};
const char CLIP[] PROGMEM = {"AT+CLIP=1\r\n"};
// Flightmode ON OFF - for saving battery while in underground garage with no GSM signal
// tracker will check 2G network availability in 30 minutes intervals
// meanwhile radio will be switched off for power saving
const char FLIGHTON[] PROGMEM = { "AT+CFUN=4\r\n" };
const char FLIGHTOFF[] PROGMEM = { "AT+CFUN=1\r\n" };
// Sleepmode ON OFF - mode #1 requires DTR pin manipulation,
// to get out of SIM808 sleepmode DTR must be LOW for at least 50 miliseconds
const char SLEEPON[] PROGMEM = { "AT+CSCLK=1\r\n" };
const char SLEEPOFF[] PROGMEM = { "AT+CSCLK=0\r\n" };
// Fix UART speed to 9600 bps
const char SET9600[] PROGMEM = { "AT+IPR=9600\r\n" };
// Save settings to SIM808
const char SAVECNF[] PROGMEM = { "AT&W\r\n" };
// Disable SIM808 LED for further reduction of power consumption
const char DISABLELED[] PROGMEM = { "AT+CNETLIGHT=0\r\n" };
// for sending SMS predefined text
const char GOOGLELOC1[] PROGMEM = {"\r\n http://maps.google.com/maps?q="};
const char GOOGLELOC2[] PROGMEM = {","};
const char GOOGLELOC3[] PROGMEM = {"\r\n"};
const char LONG[] PROGMEM = {" LONGTITUDE="};
const char LATT[] PROGMEM = {" LATTITUDE="};
const char BATT[] PROGMEM = {"\nBATTERY[mV]="};
// definition of APN used for GPRS communication
// please put correct APN, USERNAME and PASSWORD here appropriate
// for your Mobile Network provider
const char SAPBR1[] PROGMEM = {"AT+SAPBR=3,1,\"CONTYPE\",\"GPRS\"\r\n"};
const char SAPBR2[] PROGMEM = {"AT+SAPBR=3,1,\"APN\",\"internet\"\r\n"}; // Put your mobile operator APN name here
const char SAPBR3[] PROGMEM = {"AT+SAPBR=3,1,\"USER\",\"internet\"\r\n"}; // Put your mobile operator APN username here
const char SAPBR4[] PROGMEM = {"AT+SAPBR=3,1,\"PWD\",\"internet\"\r\n"}; // Put your mobile operator APN password here
// PDP context commands
const char SAPBROPEN[] PROGMEM = {"AT+SAPBR=1,1\r\n"}; // open IP bearer
const char SAPBRQUERY[] PROGMEM = {"AT+SAPBR=2,1\r\n"}; // query IP bearer
const char SAPBRCLOSE[] PROGMEM = {"AT+SAPBR=0,1\r\n"}; // close bearer
const char SAPBRSUCC[] PROGMEM = {"+SAPBR: 1,1"}; // bearer was succesfull we are not checking IP assigned
// check statuses & cells
const char CHECKGPS[] PROGMEM = {"AT+CIPGSMLOC=1,1\r\n"}; // check AGPS position of nearest GSM CELL
const char CHECKBATT[] PROGMEM = {"AT+CBC\r\n"}; // check battery voltage
// GPS SIM808 only related AT commands and responses
const char GPSPWRON[] PROGMEM = {"AT+CGPSPWR=1\r\n"}; // enable GPS inside SIM808
const char GPSSTAT[] PROGMEM = {"AT+CGPSSTATUS?\r\n"}; // check GPS fixation
const char GPSISFIXED1[] PROGMEM = {"+CGPSSTATUS: Location 3D Fix"}; // GPS in now fixed for 3D Response code
const char GPSISFIXED2[] PROGMEM = {"+CGPSSTATUS: Location 2D Fix"}; // GPS in now fixed for 2D Response code
const char GPSINFO[] PROGMEM = {"AT+CGPSINF=0\r\n"}; // Read GPS LAT & LONG for SMS
const char GPSCLDSTART[] PROGMEM = {"AT+CGPSRST=0\r\n"}; // GPS cold restart
const char GPSHOTSTART[] PROGMEM = {"AT+CGPSRST=1\r\n"}; // GPS hot restart
const char GPSPWROFF[] PROGMEM = {"AT+CGPSPWR=0\r\n"}; // disable GPS inside SIM808
const char GNSPWROFF[] PROGMEM = {"AT+CGNSPWR=0\r\n"}; // shutoff GNSS section inside SIM808
const char GNSPWRON[] PROGMEM = {"AT+CGNSPWR=1\r\n"}; // switch on GNSS section inside SIM808
/*
GPS data retrieval procedure
*
AT+CGPSPWR=1 sets the GPS engine ON
AT+CGPSRST=0 gives a COLD RESTART to GPS
AT+CGSINF=0 returns a single NMEA sentence of GPS.
AT+CGPSSTATUS? returns the Status of GPS whether it has got FIX or not.
If GPS has not received FIX , the NMEA sentence will read all 0 s
*/
// buffers for number of phone, responses from modem
#define BUFFER_SIZE 80
volatile static uint8_t response[BUFFER_SIZE] = "12345678901234567890123456789012345678901234567890123456789012345678901234567890";
volatile static uint8_t response_pos = 0;
volatile static uint8_t phonenumber[20] = "12345678901234567890";
volatile static uint8_t phonenumber_pos = 0;
// buffers for Google GPS API data - longtitude & latitude data
volatile static uint8_t latitude[20] = "12345678901234567890";
volatile static uint8_t latitude_pos = 0;
volatile static uint8_t longtitude[20] = "12345678901234567890";
volatile static uint8_t longtitude_pos = 0;
// buffers for SIM808 GPS data - longtitude & latitude data
volatile static uint8_t latitudegps[20] = "12345678901234567890";
volatile static uint8_t longtitudegps[20] = "12345678901234567890";
volatile static uint8_t numsattelites[20] = "12345678901234567890";
volatile static uint8_t numsattelites_pos = 0;
// other buffers
volatile static uint8_t buf[40]; // buffer to copy string from PROGMEM for modem output comparision
volatile static uint8_t battery[10] = "1234567890"; // for battery voltage checking
volatile static uint8_t battery_pos = 0;
// ----------------------------------------------------------------------------------------------
// init_uart
// ----------------------------------------------------------------------------------------------
void init_uart(void) {
// double speed by U2X0 flag = 1 to have 0.2% error rate on 9600 baud
UCSR0A = (1<<U2X0);
// set baud rate from PRESCALER
UBRR0H = (uint8_t)(MYUBBR>>8);
UBRR0L = (uint8_t)(MYUBBR);
UCSR0B|=(1<<TXEN0); //enable TX
UCSR0B|=(1<<RXEN0); //enable RX
// set frame format for SIM808 communication
UCSR0C|=(1<<UCSZ00)|(1<<UCSZ01); // no parity, 1 stop bit, 8-bit data
}
// ----------------------------------------------------------------------------------------------
// send_uart
// Sends a single char to UART without ISR
// ----------------------------------------------------------------------------------------------
void send_uart(uint8_t c) {
// wait for empty data register
while (!(UCSR0A & (1<<UDRE0)));
// set data into data register
UDR0 = c;
}
// ----------------------------------------------------------------------------------------------
// receive_uart
// Receives a single char without ISR
// ----------------------------------------------------------------------------------------------
uint8_t receive_uart() {
while ( !(UCSR0A & (1<<RXC0)) )
;
return UDR0;
}
// ----------------------------------------------------------------------------------------------
// function to search RX buffer for response SUB IN RX_BUFFER STR
// ----------------------------------------------------------------------------------------------
uint8_t is_in_rx_buffer(char *str, char *sub) {
uint8_t i, j=0, k;
for(i=0; i<BUFFER_SIZE; i++)
{
if(str[i] == sub[j])
{
for(k=i, j=0; str[k] && sub[j]; j++, k++) // if NOT NULL on each of strings
if(str[k]!=sub[j]) break; // if different - start comparision with next char
// if(!sub[j]) return 1;
if(j == strlen(sub)) return 1; // full substring has been found
}
}
// substring not found
return 0;
}
// ----------------------------------------------------------------------------------------------
// uart_puts
// Sends a string.
// ----------------------------------------------------------------------------------------------
void uart_puts(const char *s) {
while (*s) {
send_uart(*s);
s++;
}
}
// ----------------------------------------------------------------------------------------------
// uart_puts_P
// Sends a PROGMEM string.
// ----------------------------------------------------------------------------------------------
void uart_puts_P(const char *s) {
while (pgm_read_byte(s) != 0x00) {
send_uart(pgm_read_byte(s++));
}
}
// ------------------------------------------------------------------------------------------------------------
// READLINE from serial port that starts with CRLF and ends with CRLF and put to 'response' buffer what read
// ------------------------------------------------------------------------------------------------------------
uint8_t readline()
{
uint16_t char1, i , wholeline ;
// wait for first CR-LF or exit after timeout i cycles
i = 0;
wholeline = 0;
response_pos = 0;
//
do {
// read chars in pairs to find combination CR LF
char1 = receive_uart();
// if CR-LF combination detected start to copy the response
if ( char1 != 0x0a && char1 != 0x0d )
{ response[response_pos] = char1;
response_pos++;
};
if ( char1 == 0x0a || char1 == 0x0d )
{
// if the line was received and this is only CR/LF ending :
if (response_pos > 0) // this is EoL
{ response[response_pos] = NULL;
response_pos = 0;
wholeline = 1; };
// just skip this CRLF character and wait for valuable one
};
// if buffer is empty exit from function there is nothing to read from
i++;
} while ( wholeline == 0);
return(1);
}
// --------------------------------------------------------------------------------------------------
// READ CELL (A)GPS from AT+CIPGSMLOC output and put output to 'lattitude' and 'longtitude' buffers
// --------------------------------------------------------------------------------------------------
uint8_t readcellgps()
{
uint16_t char1;
uint8_t i;
// set positions to start of each buffer
longtitude_pos = 0;
latitude_pos = 0;
response_pos = 0;
// wait for first COMMA sign
do {
char1 = receive_uart();
} while ( char1 != ',' );
// if COMMA detected start to copy the response - LONGTITUDE first
do {
char1 = receive_uart();
longtitude[longtitude_pos] = char1;
longtitude_pos++;
} while ( char1 != ',' );
longtitude[longtitude_pos-1] = NULL;
longtitude_pos=0;
// if COMMA detected start to copy the response - LATITUDE second
do {
char1 = receive_uart();
latitude[latitude_pos] = char1;
latitude_pos++;
} while ( char1 != ',' );
// put end of string to latitude
latitude[latitude_pos-1] = NULL;
latitude_pos=0;
// Now copy DATE & TIME UTC to response buffer and wait for CRLF to finish
do {
char1 = receive_uart();
response[response_pos] = char1;
response_pos++;
} while ( (char1 != '\r') && (char1 != '\n') ); // WAIT FOR CR LF
response[response_pos-1] = NULL;
response_pos=0;
char1 = receive_uart(); // read last CR or LF and exit
return (1);
}
// ---------------------------------------------------------------------------------------------
// read PHONE NUMBER from AT+CLIP output and copy it to buffer 'phonenumber' for SMS sending
// ---------------------------------------------------------------------------------------------
uint8_t readphonenumber()
{
uint16_t char1;
phonenumber_pos = 0;
// wait for "CLIP:" and space
do {
char1 = receive_uart();
} while ( char1 != ':' );
// wait for first quotation sign
do {
char1 = receive_uart();
} while ( char1 != '\"' );
// if quotation detected start to copy the response - phonenumber
do {
char1 = receive_uart();
phonenumber[phonenumber_pos] = char1;
phonenumber_pos++;
} while ( char1 != '\"' ); // until end of quotation
// put NULL to end the string phonenumber
phonenumber[phonenumber_pos-1] = NULL;
phonenumber_pos=0;
// wait for CRLF for new response to empty RX buffer
do {
char1 = receive_uart();
} while ( char1 != 0x0a && char1 != 0x0d );
return (1);
}
// ----------------------------------------------------------------------------------------------
// Read BATTERY VOLTAGE in milivolts from AT+CBC output and put results to 'battery' buffer
// ----------------------------------------------------------------------------------------------
uint8_t readbattery()
{
uint16_t char1;
battery_pos = 0;
// wait for first COMMA sign
do {
char1 = receive_uart();
} while ( char1 != ',' );
// wait for second COMMA sign
do {
char1 = receive_uart();
} while ( char1 != ',' );
// if 2 COMMA detected start to copy battery voltage to buffer
do {
char1 = receive_uart();
battery[battery_pos] = char1;
battery_pos++;
} while ( char1 != 0x0a && char1 != 0x0d );
battery[battery_pos-1] = NULL;
battery_pos=0;
return (1);
}
// -----------------------------------------------------------------------------------------------------
// READ SIM808 GPS from AT+CGPSINF output and put output to 'lattitude' and 'longtitude' buffers
// -----------------------------------------------------------------------------------------------------
uint8_t readsim808gps()
{
uint16_t char1;
// set positions to start of each buffer
longtitude_pos = 0;
latitude_pos = 0;
numsattelites_pos = 0;
uart_puts_P(GPSINFO); // try to retrieve GPS position
// wait for "+CGPSINF:" last sign
do {
char1 = receive_uart();
} while ( char1 != ':' );
// wait for first COMMA sign
do {
char1 = receive_uart();
} while ( char1 != ',' );
// if COMMA detected start to copy the response - LATITUDE comes first
do {
char1 = receive_uart();
latitude[latitude_pos] = char1;
latitude_pos++;
} while ( char1 != ',' );
// put end of string to latitude
latitude[latitude_pos-1] = NULL;
latitude_pos=0;
// if COMMA detected start to copy the response - LONGTITUDE is second
do {
char1 = receive_uart();
longtitude[longtitude_pos] = char1;
longtitude_pos++;
} while ( char1 != ',' );
longtitude[longtitude_pos-1] = NULL;
longtitude_pos=0;
// now comes ATTITUDE - bypassing
do {
char1 = receive_uart();
} while ( char1 != ',' );
// then UTC datetime - bypassing
do {
char1 = receive_uart();
} while ( char1 != ',' );
// then TIME TO FIRST FIX - bypassing
do {
char1 = receive_uart();
} while ( char1 != ',' );
// AND FINALLY - NUMBER OF SATTELITES for FIX
do {
char1 = receive_uart();
numsattelites[numsattelites_pos] = char1;
numsattelites_pos++;
} while ( char1 != ',' );
numsattelites[numsattelites_pos-1] = NULL;
numsattelites_pos=0;
return (1);
}
// --------------------------------------------------------------------------------------------------------------------
// Power on GPS and retrieve position from GPS and put it to LOC and LATT buffers by calling 'readsim808gps' function
// --------------------------------------------------------------------------------------------------------------------
uint8_t readgpsinfo()
{
uint8_t gpsattempts, gpsfixed; // counter on attempts to get proper GPS position from SIM808 - for indoor scenarios
gpsattempts = 0;
gpsfixed = 0;
delay_sec(1);
uart_puts_P(GNSPWRON); // enable SIM808 GNSS power just in case
delay_sec(2);
uart_puts_P(GPSPWRON); // enable SIM808 GPS power
delay_sec(2);
uart_puts_P(GPSCLDSTART); // cold start of SIM808 GPS
// now we have to wait some time until SIM808 gets GPS signal, assume we are waiting 10 minutes
// check the status in 30 sec intervals and then quit
// if GPS info unavailable, AT+CIPGSMLOC (2G cell position) will be send
do
{
delay_sec(15); // wait 15 sec
uart_puts_P(GPSSTAT); // check GPS status
if (readline()>0) // check GPS status response if NOT FIXED
{
gpsfixed = 0;
// check if already fixed for 3D coordinates ?
memcpy_P(buf, GPSISFIXED1, sizeof(GPSISFIXED1));
if (is_in_rx_buffer(response, buf ) == 1)
{
// when GPSFIXED = 1 - stops checking GPS anymore
gpsfixed = 1;
};
// maybe at least 2D coordinates available after several minutes of searching?
if (gpsattempts == 19)
{ memcpy_P(buf, GPSISFIXED2, sizeof(GPSISFIXED2));
if (is_in_rx_buffer(response, buf ) == 1) gpsfixed = 1;
};
// there was some fix - 3D or 2D, poll the data from GPS
if ( gpsfixed == 1)
{
readsim808gps(); // poll GPS position and parse to buffers LAT & LONG
delay_sec(2);
uart_puts_P(GPSPWROFF); // disable SIM808 GPS power to save battery
delay_sec(1);
uart_puts_P(GNSPWROFF); // disable SIM808 GPS power to save battery
delay_sec(1);
return(1); // succesful GPS position decoding from SIM808
} // end of second IF
else gpsattempts++; // if not fixed just increase attempts counter
}; // end of first IF
} while (gpsattempts<20); // end of DO loop - only 20 attempts in 15 sec intervals to get GPS fixation - 5 minutes of searching
// GPS position retrieval not succesful - we are disabling GPS/GNSS power
delay_sec(2);
uart_puts_P(GPSPWROFF); // disable SIM808 GPS power to save battery
delay_sec(2);
uart_puts_P(GNSPWROFF);
delay_sec(2);
return(0); // 0 means that GPS was unable to fix on sattelites at all
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// delay procedure ASM based because _delay_ms() is working bad for 1 MHz clock MCU
/////////////////////////////////////////////////////////////////////////////////////////////////////////////
// delay partucular number of seconds
void delay_sec(uint8_t i)
{
while(i > 0)
{
// Delay 1 000 000 cycles
// 1s at 1 MHz
asm volatile (
" ldi r18, 6" "\n"
" ldi r19, 19" "\n"
" ldi r20, 174" "\n"
"1: dec r20" "\n"
" brne 1b" "\n"
" dec r19" "\n"
" brne 1b" "\n"
" dec r18" "\n"
" brne 1b" "\n"
" rjmp 1f" "\n"
"1:" "\n"
);
i--; // decrease another second
}; // repeat until i not zero
}
//////////////////////////////////////////
// SIM808 initialization procedures
//////////////////////////////////////////
// -------------------------------------------------------------------------------
// wait for first AT in case SIM808 is starting up
// -------------------------------------------------------------------------------
uint8_t checkat()
{
uint8_t initialized2;
// wait for first OK while sending AT - autosensing speed on SIM808, but we are working 9600 bps
// SIM 800L can be set by AT+IPR=9600 to fix this speed
// which I do recommend by connecting SIM808 to PC using putty and FTD232 cable
initialized2 = 0;
do {
uart_puts_P(AT);
if (readline()>0)
{ // check if OK was received
memcpy_P(buf, ISOK, sizeof(ISOK));
if (is_in_rx_buffer(response, buf) == 1) initialized2 = 1;
}
else
{ // maybe ECHO is ON and first line was AT
memcpy_P(buf, ISATECHO, sizeof(ISATECHO));
if (is_in_rx_buffer(response, buf) == 1) initialized2 = 1;
};
delay_sec(1);
} while (initialized2 == 0);
// send ECHO OFF
delay_sec(2);
uart_puts_P(ECHO_OFF);
delay_sec(1);
return (1);
}
// -------------------------------------------------------------------------------
// check if PIN is needed and enter PIN 1111
// -------------------------------------------------------------------------------
uint8_t checkpin()
{
uint8_t initialized2;
// readline and wait for PIN CODE STATUS if needed send PIN 1111 to SIM card if required
initialized2 = 0;
do {
delay_sec(2);
uart_puts_P(SHOW_PIN);
if (readline()>0)
{
memcpy_P(buf, PIN_IS_READY, sizeof(PIN_IS_READY));
if (is_in_rx_buffer(response, buf) == 1) initialized2 = 1;
memcpy_P(buf, PIN_MUST_BE_ENTERED, sizeof(PIN_MUST_BE_ENTERED));
if (is_in_rx_buffer(response, buf) == 1)
{
delay_sec(1);
uart_puts_P(ENTER_PIN); // ENTER PIN 1111
delay_sec(1);
};
};
} while (initialized2 == 0);
return (1);
}
// -------------------------------------------------------------------------------
// check if registered to the network
// -------------------------------------------------------------------------------
uint8_t checkregistration()
{
uint8_t initialized2, attempt2, nbrminutes;
// readline and wait for STATUS NETWORK REGISTRATION from SIM808
// first 2 networks preferred from SIM list are OK
initialized2 = 0;
nbrminutes = 0;
attempt2 = 0;
do {
// TURN ON RADIO IF WAS NOT BEFORE
delay_sec(1);
uart_puts_P(FLIGHTOFF); // disable airplane mode - turn on radio and start to search for networks
delay_sec(30);
// now after searching check if already registered to 2G GSM
uart_puts_P(SHOW_REGISTRATION);
if (readline()>0)
{
memcpy_P(buf, ISREG1, sizeof(ISREG1));
if (is_in_rx_buffer(response, buf) == 1) initialized2 = 1;
memcpy_P(buf, ISREG2, sizeof(ISREG2));
if (is_in_rx_buffer(response, buf) == 1) initialized2 = 1;
// if not registered do a backoff for 1 hour, maybe in underground garage or something
if (initialized2 == 0)
{
// if not registered or something wrong turn off RADIO for minutes
// this is not to drain battery in underground garage
delay_sec(1);
uart_puts_P(FLIGHTON); // enable airplane mode - turn off radio
delay_sec(1);
// enter SLEEP MODE of SIM800L for power saving when no coverage
uart_puts_P(GNSPWROFF);
delay_sec(1);
uart_puts_P(GPSPWROFF);
delay_sec(1);
uart_puts_P(SLEEPON);
// now wait XX min before turning on radio again, here XX = 30 min
for (nbrminutes = 0; nbrminutes<30; nbrminutes++)
{
delay_sec(60);
};
// Wake up SIM800L and search for network again
// disable SLEEPMODE
PORTC &= ~_BV(PC5); // Toggle LOW the DTR pin of SIM808
// send first dummy AT command
uart_puts_P(AT);
delay_sec(1);
uart_puts_P(SLEEPOFF); // switch off to SLEEPMODE = 0
delay_sec(1);
PORTC |= _BV(PC5); // Toggles again HIGH the DTR pin
delay_sec(1);
uart_puts_P(FLIGHTOFF); // disable airplane mode - turn on radio and start to search for networks
delay_sec(30);
}; // end of no-coverage IF
}
attempt2++; // increase number of attempts - max 24 attempts = 12 hours of no signal 2G network
// end of DO loop
} while ( (initialized2 == 0) && (attempt2 < 24) );
return initialized2;
}
// ----------------------------------------------------------------------------------------------
// provision GPRS APNs and passwords - we are not checking if any error not to get deadlocks
// ----------------------------------------------------------------------------------------------
uint8_t provisiongprs()
{
// connection to GPRS for AGPS basestation data - provision APN and username
delay_sec(1);
uart_puts_P(SAPBR1);
delay_sec(1);
uart_puts_P(SAPBR2);
// only if username password in APN is needed
delay_sec(1);
uart_puts_P(SAPBR3);
delay_sec(1);
uart_puts_P(SAPBR4);
delay_sec(1);
return 1;
}
//////////////////////////////////////////////////////////////////////////////////
// POWER SAVING mode on ATMEGA 328P handling to reduce the battery consumption
// this part of code can be used ONLY if you have SIM808 RI/RING PIN connected
// to ATMEGA D2/INT0 interrupt input - otherwise program will hang
//////////////////////////////////////////////////////////////////////////////////
void sleepnow(void)
{
set_sleep_mode(SLEEP_MODE_PWR_DOWN);
sleep_enable();
DDRD &= ~(1 << DDD2); // Clear the PD2 pin
// PD2 (PCINT0 pin) is now an input
PORTD |= (1 << PORTD2); // turn On the Pull-up
// PD2 is now an input with pull-up enabled
// stop interrupts for configuration period
cli();
// update again INT0 conditions
EICRA &= ~(1 << ISC01); // set INT0 to trigger on low level
EICRA &= ~(1 << ISC00); // set INT0 to trigger on low level
EIMSK |= (1 << INT0); // Turns on INT0 (set bit)
sei(); //ensure interrupts enabled so we can wake up again
sleep_cpu(); //go to sleep
// MCU ATTMEGA328P sleeps here until INT0 interrupt
sleep_disable(); //wake up here
}
// when interrupt from INT0 disable next interrupts from RING pin of SIM808 and go back to main code
ISR(INT0_vect)
{
EIMSK &= ~(1 << INT0); // Turns off INT0 (clear bit)
}
// *********************************************************************************************************
//
// MAIN PROGRAM
//
// *********************************************************************************************************
int main(void) {
uint8_t initialized, ringrcvd, attempt, gpsdataavailable, latitudelen, longtitudelen, char1;
uint32_t nbrseconds = 0;
uint32_t minutes, minutesdeg, degrees;
attempt = 0;
initialized = 0;
ringrcvd = 0;
nbrseconds = 0;
attempt = 0;
minutes = 0;
minutesdeg = 0;
degrees = 0;
// enable INPUT on INT0 / PD2 (ATMEGA PIN #4) to connect RI/RING from SIM808 if available
DDRD &= ~(1 << DDD2); // Clear the PD2 pin - PD2 (PCINT0 pin) is now an input
PORTD |= (1 << PORTD2); // turn On the Pull-up - PD2 is now an input with pull-up enabled
// enable output to control DTR signal of SIM808
// ATMEGA pin PC5 must be connected to DTR/SLEEP signal of SIM808 board
DDRC |= (1<<5) ; // set OUTPUT mode for PC5
PORTC &= ~_BV(PC5); // Toggle LOW the DTR pin of SIM808
PORTC |= _BV(PC5); // Toggles HIGH the DTR pin
// pull up RXD input on ATMEGA
//DDRD &= ~(1 << DDD0); // Clear the PD2 pin
// PD2 (PCINT0 pin) is now an input
//PORTD |= (1 << PORTD0); // turn On the Pull-up
// PD2 is now an input with pull-up enabled
// initialize 9600 baud 8N1 RS232
init_uart();
// delay 10 seconds for safe SIM808 startup and network registration
delay_sec(10);
// turno of ECHO proactively
uart_puts_P(ECHO_OFF);
delay_sec(1);
// try to communicate with SIM808 over AT
checkat();
delay_sec(2);
// Fix UART speed to 9600 bps to disable autosensing
uart_puts_P(SET9600);
delay_sec(2);
// if you have connected SIM808 board RI/RING pint to ATMEGA328P INT0 pin
// configure RI PIN activity for URC ( unsolicited messages like restart of the modem or battery low)
// uart_puts_P(CFGRIPIN);
// delay_sec(2);
// disable reporting URC of losing 2G coverage by +CREG=0
uart_puts_P(DISREGREPORT);
delay_sec(2);
// TURN ON RADIO IF WAS NOT BEFORE
uart_puts_P(FLIGHTOFF);
delay_sec(10);
// Save settings to SIM808
uart_puts_P(SAVECNF);
delay_sec(3);
// check pin status, registration status and provision APN settings
checkpin();
checkregistration();
provisiongprs();
// neverending LOOP
while (1) {
do {
// WAIT FOR RING message - incoming voice call and send SMS or restart RADIO module if no signal
initialized = 0;
ringrcvd = 0;
// marker for SIM808 GPS data availability
gpsdataavailable = 0;
// TURN ON RADIO IF WAS NOT BEFORE
uart_puts_P(FLIGHTOFF);
delay_sec(2);
// read phone number of incoming voice call by CLIP, will be needed for SMS sending
uart_puts_P(CLIP);
delay_sec(2);
// OPTIONAL
// Disable LED blinking on SIM808
// uart_puts_P(DISABLELED);
// delay_sec(2);
// enter SLEEP MODE #1 of SIM808 for power saving
// ( will be interrupted by incoming voice call or SMS ) and RING URC
uart_puts_P(GNSPWROFF);
delay_sec(1);
uart_puts_P(GPSPWROFF);
delay_sec(1);
uart_puts_P(SLEEPON);
delay_sec(2);
// ONLY if you have connected SIM808 RI/RING pin to ATMEGA328P INT0 pin
// otherwise program will HANG here
// enter SLEEP MODE on ATMEGA328P for power saving
//
//
// if using sleepnow() do not use periodic check of RI/RIN below
//
// sleepnow(); // sleep function called here
// if NOT USING sleepnow() and if RI/RING pin is available on SIM808 board and connected to INT0 ATMEGA
// we can periodically check RI/RING pin status in 1 sec intervals
// RI is held LOW by SIM808 until call is completely answered / disconnected
// because there is 1sec sampling we will probably not be able to detect 120ms RI change for incoming SMS / other URC
// The module SIM808 will be periodically woken up to see coverage status - once per 1 hour
/* OPTIONAL CODE ONLY WHEN SIM808 RI/RING IS CONNECTED TO INT0 ATMEGA328P
while(initialized == 0)
{
// check if RING/INT0/D2 PIN IS LOW - if yes exit WHILE LOOP and proceed witch Call/SMS
if ((PIND & (1 << PD2)) == 0)
{initialized = 1; }
else
{ // RING signal is HIGH
nbrseconds++; // increase number of seconds waited
delay_sec(1); // wait another second
// if 1 hour passed we need to check if there is need to turn off 2G for longer time
if (nbrseconds == 3600)
{ // if 3600sec passed, we need to check 2G network coverage
nbrseconds = 0;
// disable SLEEPMODE
PORTC &= ~_BV(PC5); // Toggle LOW the DTR pin of SIM808
// send first dummy AT command
uart_puts_P(AT);
delay_sec(1);
uart_puts_P(SLEEPOFF); // switch off to SLEEPMODE = 0
delay_sec(1);
PORTC |= _BV(PC5); // Toggles again HIGH the DTR pin
delay_sec(1);
// check 2G coverage
checkregistration();
// enter SLEEP MODE of SIM808 again
delay_sec(1);
uart_puts_P(SLEEPON);
delay_sec(1);
// clear the flag that there was no RING
initialized = 0;
};
}; // end of checking PIN D2 (INT0)
}; // end of WHILE for checking 2G coverage
END OF OPTIONAL CODE WHEN SIM 808 RI/RING CONNECTED WITH INT0 ATMEGA */
// THERE WAS RI / INT0 INTERRUPT (when RI/RING connected to INT0)
// OR SOMETHING WAS RECEIVED OVER SERIAL (URC)
// WE NEED TO GET OFF SLEEPMODE AND READ SERIAL PORT
// first empty RX buffer just in case
while (UCSR0A & (1<<RXC0)) char1 = UDR0;
// If RI/RING is unavailable then we are waiting for something from uart
while(initialized == 0)
{
// check if something from serial port received - if yes exit WHILE LOOP and proceed witch Call/SMS
// then the first character from UART will be lost, we will have to wait for "ING" instead of "RING"
if (UCSR0A & (1<<RXC0))
{initialized = 1;
ringrcvd = 0; }
else
{ // there was NOTHING received over serial port so we are still waiting...
//
nbrseconds++; // increase number of seconds waited
delay_sec(1); // wait another second
// if 1 hour passed we need to check if there is need to turn off 2G for longer time
if (nbrseconds == 1800)
{ // if 1800sec passed, we need to check 2G network coverage
nbrseconds = 0;
// disable SLEEPMODE
PORTC &= ~_BV(PC5); // Toggle LOW the DTR pin of SIM808
// send first dummy AT command
uart_puts_P(AT);