forked from sparkfun/SparkFun_u-blox_GNSS_Arduino_Library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSparkFun_u-blox_GNSS_Arduino_Library.cpp
18545 lines (16274 loc) · 723 KB
/
SparkFun_u-blox_GNSS_Arduino_Library.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
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
/*
This is a library written for the u-blox ZED-F9P and NEO-M8P-2
SparkFun sells these at its website: www.sparkfun.com
Do you like this library? Help support SparkFun. Buy a board!
https://www.sparkfun.com/products/16481
https://www.sparkfun.com/products/15136
https://www.sparkfun.com/products/15005
https://www.sparkfun.com/products/15733
https://www.sparkfun.com/products/15193
https://www.sparkfun.com/products/15210
Original version by Nathan Seidle @ SparkFun Electronics, September 6th, 2018
v2.0 rework by Paul Clark @ SparkFun Electronics, December 31st, 2020
This library handles configuring and handling the responses
from a u-blox GPS module. Works with most modules from u-blox including
the Zed-F9P, NEO-M8P-2, NEO-M9N, ZOE-M8Q, SAM-M8Q, and many others.
https://github.com/sparkfun/SparkFun_Ublox_Arduino_Library
Development environment specifics:
Arduino IDE 1.8.13
SparkFun code, firmware, and software is released under the MIT License(http://opensource.org/licenses/MIT).
The MIT License (MIT)
Copyright (c) 2016 SparkFun Electronics
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
associated documentation files (the "Software"), to deal in the Software without restriction,
including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
and/or sell copies of the Software, and to permit persons to whom the Software is furnished to
do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial
portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "SparkFun_u-blox_GNSS_Arduino_Library.h"
SFE_UBLOX_GNSS::SFE_UBLOX_GNSS(void)
{
// Constructor
if (debugPin >= 0)
{
pinMode((uint8_t)debugPin, OUTPUT);
digitalWrite((uint8_t)debugPin, HIGH);
}
_logNMEA.all = 0; // Default to passing no NMEA messages to the file buffer
_processNMEA.all = SFE_UBLOX_FILTER_NMEA_ALL; // Default to passing all NMEA messages to processNMEA
// Support for platforms like ESP32 which do not support multiple I2C restarts
// If _i2cStopRestart is true, endTransmission will always use a stop. If false, a restart will be used where needed.
#if defined(ARDUINO_ARCH_ESP32)
_i2cStopRestart = true; // Always use a stop
#else
_i2cStopRestart = false; // Use a restart where needed
#endif
}
SFE_UBLOX_GNSS::~SFE_UBLOX_GNSS(void)
{
// Destructor
end(); // Delete all allocated memory - excluding payloadCfg, payloadAuto and spiBuffer
if (payloadCfg != NULL)
{
delete[] payloadCfg; // Created with new[]
payloadCfg = NULL; // Redundant?
}
if (payloadAuto != NULL)
{
delete[] payloadAuto; // Created with new[]
payloadAuto = NULL; // Redundant?
}
if (spiBuffer != NULL)
{
delete[] spiBuffer; // Created with new[]
spiBuffer = NULL; // Redundant?
}
}
// Stop all automatic message processing. Free all used RAM
void SFE_UBLOX_GNSS::end(void)
{
// Note: payloadCfg is not deleted
// Note: payloadAuto is not deleted
// Note: spiBuffer is not deleted
if (ubxFileBuffer != NULL) // Check if RAM has been allocated for the file buffer
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if (_printDebug == true)
{
_debugSerial->println(F("end: the file buffer has been deleted. You will need to call setFileBufferSize before .begin to create a new one."));
}
#endif
delete[] ubxFileBuffer; // Created with new[]
ubxFileBuffer = NULL; // Redundant?
fileBufferSize = 0; // Reset file buffer size. User will have to call setFileBufferSize again
fileBufferMaxAvail = 0;
}
if (moduleSWVersion != NULL)
{
delete moduleSWVersion; // Created with new moduleSWVersion_t
moduleSWVersion = NULL; // Redundant?
}
if (currentGeofenceParams != NULL)
{
delete currentGeofenceParams; // Created with new geofenceParams_t
currentGeofenceParams = NULL; // Redundant?
}
if (packetUBXNAVTIMELS != NULL)
{
delete packetUBXNAVTIMELS; // Created with new UBX_NAV_TIMELS_t
packetUBXNAVTIMELS = NULL; // Redundant?
}
if (packetUBXNAVPOSECEF != NULL)
{
if (packetUBXNAVPOSECEF->callbackData != NULL)
{
delete packetUBXNAVPOSECEF->callbackData; // Created with new UBX_NAV_POSECEF_data_t
}
delete packetUBXNAVPOSECEF; // Created with new UBX_NAV_POSECEF_t
packetUBXNAVPOSECEF = NULL; // Redundant?
}
if (packetUBXNAVSTATUS != NULL)
{
if (packetUBXNAVSTATUS->callbackData != NULL)
{
delete packetUBXNAVSTATUS->callbackData;
}
delete packetUBXNAVSTATUS;
packetUBXNAVSTATUS = NULL; // Redundant?
}
if (packetUBXNAVDOP != NULL)
{
if (packetUBXNAVDOP->callbackData != NULL)
{
delete packetUBXNAVDOP->callbackData;
}
delete packetUBXNAVDOP;
packetUBXNAVDOP = NULL; // Redundant?
}
if (packetUBXNAVATT != NULL)
{
if (packetUBXNAVATT->callbackData != NULL)
{
delete packetUBXNAVATT->callbackData;
}
delete packetUBXNAVATT;
packetUBXNAVATT = NULL; // Redundant?
}
if (packetUBXNAVPVT != NULL)
{
if (packetUBXNAVPVT->callbackData != NULL)
{
delete packetUBXNAVPVT->callbackData;
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if (_printDebug == true)
{
_debugSerial->println(F("end: packetUBXNAVPVT->callbackData has been deleted"));
}
#endif
}
delete packetUBXNAVPVT;
packetUBXNAVPVT = NULL; // Redundant?
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if (_printDebug == true)
{
_debugSerial->println(F("end: packetUBXNAVPVT has been deleted"));
}
#endif
}
if (packetUBXNAVODO != NULL)
{
if (packetUBXNAVODO->callbackData != NULL)
{
delete packetUBXNAVODO->callbackData;
}
delete packetUBXNAVODO;
packetUBXNAVODO = NULL; // Redundant?
}
if (packetUBXNAVVELECEF != NULL)
{
if (packetUBXNAVVELECEF->callbackData != NULL)
{
delete packetUBXNAVVELECEF->callbackData;
}
delete packetUBXNAVVELECEF;
packetUBXNAVVELECEF = NULL; // Redundant?
}
if (packetUBXNAVVELNED != NULL)
{
if (packetUBXNAVVELNED->callbackData != NULL)
{
delete packetUBXNAVVELNED->callbackData;
}
delete packetUBXNAVVELNED;
packetUBXNAVVELNED = NULL; // Redundant?
}
if (packetUBXNAVHPPOSECEF != NULL)
{
if (packetUBXNAVHPPOSECEF->callbackData != NULL)
{
delete packetUBXNAVHPPOSECEF->callbackData;
}
delete packetUBXNAVHPPOSECEF;
packetUBXNAVHPPOSECEF = NULL; // Redundant?
}
if (packetUBXNAVHPPOSLLH != NULL)
{
if (packetUBXNAVHPPOSLLH->callbackData != NULL)
{
delete packetUBXNAVHPPOSLLH->callbackData;
}
delete packetUBXNAVHPPOSLLH;
packetUBXNAVHPPOSLLH = NULL; // Redundant?
}
if (packetUBXNAVPVAT != NULL)
{
if (packetUBXNAVPVAT->callbackData != NULL)
{
delete packetUBXNAVPVAT->callbackData;
}
delete packetUBXNAVPVAT;
packetUBXNAVPVAT = NULL; // Redundant?
}
if (packetUBXNAVTIMEUTC != NULL)
{
if (packetUBXNAVTIMEUTC->callbackData != NULL)
{
delete packetUBXNAVTIMEUTC->callbackData;
}
delete packetUBXNAVTIMEUTC;
packetUBXNAVTIMEUTC = NULL; // Redundant?
}
if (packetUBXNAVCLOCK != NULL)
{
if (packetUBXNAVCLOCK->callbackData != NULL)
{
delete packetUBXNAVCLOCK->callbackData;
}
delete packetUBXNAVCLOCK;
packetUBXNAVCLOCK = NULL; // Redundant?
}
if (packetUBXNAVSVIN != NULL)
{
if (packetUBXNAVSVIN->callbackData != NULL)
{
delete packetUBXNAVSVIN->callbackData;
}
delete packetUBXNAVSVIN;
packetUBXNAVSVIN = NULL; // Redundant?
}
if (packetUBXNAVSAT != NULL)
{
if (packetUBXNAVSAT->callbackData != NULL)
{
delete packetUBXNAVSAT->callbackData;
}
delete packetUBXNAVSAT;
packetUBXNAVSAT = NULL; // Redundant?
}
if (packetUBXNAVRELPOSNED != NULL)
{
if (packetUBXNAVRELPOSNED->callbackData != NULL)
{
delete packetUBXNAVRELPOSNED->callbackData;
}
delete packetUBXNAVRELPOSNED;
packetUBXNAVRELPOSNED = NULL; // Redundant?
}
if (packetUBXNAVAOPSTATUS != NULL)
{
if (packetUBXNAVAOPSTATUS->callbackData != NULL)
{
delete packetUBXNAVAOPSTATUS->callbackData;
}
delete packetUBXNAVAOPSTATUS;
packetUBXNAVAOPSTATUS = NULL; // Redundant?
}
if (packetUBXNAVEOE != NULL)
{
if (packetUBXNAVEOE->callbackData != NULL)
{
delete packetUBXNAVEOE->callbackData;
}
delete packetUBXNAVEOE;
packetUBXNAVEOE = NULL; // Redundant?
}
if (packetUBXRXMPMP != NULL)
{
if (packetUBXRXMPMP->callbackData != NULL)
{
delete packetUBXRXMPMP->callbackData;
}
delete packetUBXRXMPMP;
packetUBXRXMPMP = NULL; // Redundant?
}
if (packetUBXRXMPMPmessage != NULL)
{
if (packetUBXRXMPMPmessage->callbackData != NULL)
{
delete packetUBXRXMPMPmessage->callbackData;
}
delete packetUBXRXMPMPmessage;
packetUBXRXMPMPmessage = NULL; // Redundant?
}
if (packetUBXRXMQZSSL6message != NULL)
{
if (packetUBXRXMQZSSL6message->callbackData != NULL)
{
delete[] packetUBXRXMQZSSL6message->callbackData;
}
delete packetUBXRXMQZSSL6message;
packetUBXRXMQZSSL6message = NULL; // Redundant?
}
if (packetUBXRXMCOR != NULL)
{
if (packetUBXRXMCOR->callbackData != NULL)
{
delete packetUBXRXMCOR->callbackData;
}
delete packetUBXRXMCOR;
packetUBXRXMCOR = NULL; // Redundant?
}
if (packetUBXRXMSFRBX != NULL)
{
if (packetUBXRXMSFRBX->callbackData != NULL)
{
delete packetUBXRXMSFRBX->callbackData;
}
delete packetUBXRXMSFRBX;
packetUBXRXMSFRBX = NULL; // Redundant?
}
if (packetUBXRXMRAWX != NULL)
{
if (packetUBXRXMRAWX->callbackData != NULL)
{
delete packetUBXRXMRAWX->callbackData;
}
delete packetUBXRXMRAWX;
packetUBXRXMRAWX = NULL; // Redundant?
}
if (packetUBXCFGRATE != NULL)
{
delete packetUBXCFGRATE;
packetUBXCFGRATE = NULL; // Redundant?
}
if (packetUBXTIMTM2 != NULL)
{
if (packetUBXTIMTM2->callbackData != NULL)
{
delete packetUBXTIMTM2->callbackData;
}
delete packetUBXTIMTM2;
packetUBXTIMTM2 = NULL; // Redundant?
}
if (packetUBXESFALG != NULL)
{
if (packetUBXESFALG->callbackData != NULL)
{
delete packetUBXESFALG->callbackData;
}
delete packetUBXESFALG;
packetUBXESFALG = NULL; // Redundant?
}
if (packetUBXESFSTATUS != NULL)
{
if (packetUBXESFSTATUS->callbackData != NULL)
{
delete packetUBXESFSTATUS->callbackData;
}
delete packetUBXESFSTATUS;
packetUBXESFSTATUS = NULL; // Redundant?
}
if (packetUBXESFINS != NULL)
{
if (packetUBXESFINS->callbackData != NULL)
{
delete packetUBXESFINS->callbackData;
}
delete packetUBXESFINS;
packetUBXESFINS = NULL; // Redundant?
}
if (packetUBXESFMEAS != NULL)
{
if (packetUBXESFMEAS->callbackData != NULL)
{
delete packetUBXESFMEAS->callbackData;
}
delete packetUBXESFMEAS;
packetUBXESFMEAS = NULL; // Redundant?
}
if (packetUBXESFRAW != NULL)
{
if (packetUBXESFRAW->callbackData != NULL)
{
delete packetUBXESFRAW->callbackData;
}
delete packetUBXESFRAW;
packetUBXESFRAW = NULL; // Redundant?
}
if (packetUBXMGAACK != NULL)
{
delete packetUBXMGAACK;
packetUBXMGAACK = NULL; // Redundant?
}
if (packetUBXMGADBD != NULL)
{
delete packetUBXMGADBD;
packetUBXMGADBD = NULL; // Redundant?
}
if (packetUBXHNRATT != NULL)
{
if (packetUBXHNRATT->callbackData != NULL)
{
delete packetUBXHNRATT->callbackData;
}
delete packetUBXHNRATT;
packetUBXHNRATT = NULL; // Redundant?
}
if (packetUBXHNRINS != NULL)
{
if (packetUBXHNRINS->callbackData != NULL)
{
delete packetUBXHNRINS->callbackData;
}
delete packetUBXHNRINS;
packetUBXHNRINS = NULL; // Redundant?
}
if (packetUBXHNRPVT != NULL)
{
if (packetUBXHNRPVT->callbackData != NULL)
{
delete packetUBXHNRPVT->callbackData;
}
delete packetUBXHNRPVT;
packetUBXHNRPVT = NULL; // Redundant?
}
#ifndef SFE_UBLOX_DISABLE_AUTO_NMEA
if (storageNMEAGPGGA != NULL)
{
if (storageNMEAGPGGA->callbackCopy != NULL)
{
delete storageNMEAGPGGA->callbackCopy;
}
delete storageNMEAGPGGA;
storageNMEAGPGGA = NULL; // Redundant?
}
if (storageNMEAGNGGA != NULL)
{
if (storageNMEAGNGGA->callbackCopy != NULL)
{
delete storageNMEAGNGGA->callbackCopy;
}
delete storageNMEAGNGGA;
storageNMEAGNGGA = NULL; // Redundant?
}
if (storageNMEAGPVTG != NULL)
{
if (storageNMEAGPVTG->callbackCopy != NULL)
{
delete storageNMEAGPVTG->callbackCopy;
}
delete storageNMEAGPVTG;
storageNMEAGPVTG = NULL; // Redundant?
}
if (storageNMEAGNVTG != NULL)
{
if (storageNMEAGNVTG->callbackCopy != NULL)
{
delete storageNMEAGNVTG->callbackCopy;
}
delete storageNMEAGNVTG;
storageNMEAGNVTG = NULL; // Redundant?
}
if (storageNMEAGPRMC != NULL)
{
if (storageNMEAGPRMC->callbackCopy != NULL)
{
delete storageNMEAGPRMC->callbackCopy;
}
delete storageNMEAGPRMC;
storageNMEAGPRMC = NULL; // Redundant?
}
if (storageNMEAGNRMC != NULL)
{
if (storageNMEAGNRMC->callbackCopy != NULL)
{
delete storageNMEAGNRMC->callbackCopy;
}
delete storageNMEAGNRMC;
storageNMEAGNRMC = NULL; // Redundant?
}
if (storageNMEAGPZDA != NULL)
{
if (storageNMEAGPZDA->callbackCopy != NULL)
{
delete storageNMEAGPZDA->callbackCopy;
}
delete storageNMEAGPZDA;
storageNMEAGPZDA = NULL; // Redundant?
}
if (storageNMEAGNZDA != NULL)
{
if (storageNMEAGNZDA->callbackCopy != NULL)
{
delete storageNMEAGNZDA->callbackCopy;
}
delete storageNMEAGNZDA;
storageNMEAGNZDA = NULL; // Redundant?
}
#endif
}
// Allow the user to change packetCfgPayloadSize. Handy if you want to process big messages like RAWX
// This can be called before .begin if required / desired
bool SFE_UBLOX_GNSS::setPacketCfgPayloadSize(size_t payloadSize)
{
bool success = true;
if ((payloadSize == 0) && (payloadCfg != NULL))
{
// Zero payloadSize? Dangerous! But we'll free the memory anyway...
delete[] payloadCfg; // Created with new[]
payloadCfg = NULL; // Redundant?
packetCfg.payload = payloadCfg;
packetCfgPayloadSize = payloadSize;
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
_debugSerial->println(F("setPacketCfgPayloadSize: Zero payloadSize!"));
}
else if (payloadCfg == NULL) // Memory has not yet been allocated - so use new
{
payloadCfg = new uint8_t[payloadSize];
packetCfg.payload = payloadCfg;
if (payloadCfg == NULL)
{
success = false;
packetCfgPayloadSize = 0;
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
_debugSerial->println(F("setPacketCfgPayloadSize: RAM alloc failed!"));
}
else
packetCfgPayloadSize = payloadSize;
}
else // Memory has already been allocated - so resize
{
uint8_t *newPayload = new uint8_t[payloadSize];
if (newPayload == NULL) // Check if the alloc was successful
{
success = false; // Report failure. Don't change payloadCfg, packetCfg.payload or packetCfgPayloadSize
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
_debugSerial->println(F("setPacketCfgPayloadSize: RAM resize failed!"));
}
else
{
memcpy(newPayload, payloadCfg, payloadSize <= packetCfgPayloadSize ? payloadSize : packetCfgPayloadSize); // Copy as much existing data as we can
delete[] payloadCfg; // Free payloadCfg. Created with new[]
payloadCfg = newPayload; // Point to the newPayload
packetCfg.payload = payloadCfg; // Update the packet pointer
packetCfgPayloadSize = payloadSize; // Update the packet payload size
}
}
return (success);
}
// Return the number of free bytes remaining in packetCfgPayload
size_t SFE_UBLOX_GNSS::getPacketCfgSpaceRemaining()
{
return (packetCfgPayloadSize - packetCfg.len);
}
// Initialize the I2C port
bool SFE_UBLOX_GNSS::begin(TwoWire &wirePort, uint8_t deviceAddress, uint16_t maxWait, bool assumeSuccess)
{
commType = COMM_TYPE_I2C;
_i2cPort = &wirePort; // Grab which port the user wants us to use
_signsOfLife = false; // Clear the _signsOfLife flag. It will be set true if valid traffic is seen.
// We expect caller to begin their I2C port, with the speed of their choice external to the library
// But if they forget, we start the hardware here.
// We're moving away from the practice of starting Wire hardware in a library. This is to avoid cross platform issues.
// ie, there are some platforms that don't handle multiple starts to the wire hardware. Also, every time you start the wire
// hardware the clock speed reverts back to 100kHz regardless of previous Wire.setClocks().
//_i2cPort->begin();
_gpsI2Caddress = deviceAddress; // Store the I2C address from user
// New in v2.0: allocate memory for the packetCfg payload here - if required. (The user may have called setPacketCfgPayloadSize already)
if (packetCfgPayloadSize == 0)
setPacketCfgPayloadSize(MAX_PAYLOAD_SIZE);
// New in v2.0: allocate memory for the file buffer - if required. (The user should have called setFileBufferSize already)
createFileBuffer();
// Call isConnected up to three times - tests on the NEO-M8U show the CFG RATE poll occasionally being ignored
bool connected = isConnected(maxWait);
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - second attempt"));
}
#endif
connected = isConnected(maxWait);
}
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - third attempt"));
}
#endif
connected = isConnected(maxWait);
}
if ((!connected) && assumeSuccess && _signsOfLife) // Advanced users can assume success if required. Useful if the port is outputting messages at high navigation rate.
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: third attempt failed. Assuming success..."));
}
#endif
return (true);
}
return (connected);
}
// Initialize the Serial port
bool SFE_UBLOX_GNSS::begin(Stream &serialPort, uint16_t maxWait, bool assumeSuccess)
{
commType = COMM_TYPE_SERIAL;
_serialPort = &serialPort; // Grab which port the user wants us to use
_signsOfLife = false; // Clear the _signsOfLife flag. It will be set true if valid traffic is seen.
// New in v2.0: allocate memory for the packetCfg payload here - if required. (The user may have called setPacketCfgPayloadSize already)
if (packetCfgPayloadSize == 0)
setPacketCfgPayloadSize(MAX_PAYLOAD_SIZE);
// New in v2.0: allocate memory for the file buffer - if required. (The user should have called setFileBufferSize already)
createFileBuffer();
// Get rid of any stale serial data already in the processor's RX buffer
while (_serialPort->available())
_serialPort->read();
// If assumeSuccess is true, the user must really want begin to succeed. So, let's empty the module's serial transmit buffer too!
// Keep discarding new serial data until we see a gap of 2ms - hopefully indicating that the module's TX buffer is empty.
if (assumeSuccess)
{
unsigned long startTime = millis();
unsigned long lastActivity = startTime;
bool keepGoing = true;
while (keepGoing && (millis() < (startTime + (unsigned long)maxWait)))
{
while (_serialPort->available()) // Discard any new data
{
_serialPort->read();
lastActivity = millis();
}
if (millis() > (lastActivity + (unsigned long)2)) // Check if we have seen no new data for at least 2ms
keepGoing = false;
}
}
// Call isConnected up to three times - tests on the NEO-M8U show the CFG RATE poll occasionally being ignored
bool connected = isConnected(maxWait);
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - second attempt"));
}
#endif
connected = isConnected(maxWait);
}
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - third attempt"));
}
#endif
connected = isConnected(maxWait);
}
if ((!connected) && assumeSuccess && _signsOfLife) // Advanced users can assume success if required. Useful if the port is outputting messages at high navigation rate.
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: third attempt failed. Assuming success..."));
}
#endif
return (true);
}
return (connected);
}
// Initialize for SPI
bool SFE_UBLOX_GNSS::begin(SPIClass &spiPort, uint8_t csPin, uint32_t spiSpeed, uint16_t maxWait, bool assumeSuccess)
{
commType = COMM_TYPE_SPI;
_spiPort = &spiPort;
_csPin = csPin;
_spiSpeed = spiSpeed;
_signsOfLife = false; // Clear the _signsOfLife flag. It will be set true if valid traffic is seen.
// Initialize the chip select pin
pinMode(_csPin, OUTPUT);
digitalWrite(_csPin, HIGH);
// New in v2.0: allocate memory for the packetCfg payload here - if required. (The user may have called setPacketCfgPayloadSize already)
if (packetCfgPayloadSize == 0)
setPacketCfgPayloadSize(MAX_PAYLOAD_SIZE);
createFileBuffer();
// Create the SPI buffer
if (spiBuffer == NULL) // Memory has not yet been allocated - so use new
{
spiBuffer = new uint8_t[getSpiTransactionSize()];
}
if (spiBuffer == NULL)
{
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->print(F("begin (SPI): memory allocation failed for SPI Buffer!"));
return (false);
}
}
else
{
// Initialize/clear the SPI buffer - fill it with 0xFF as this is what is received from the UBLOX module if there's no data to be processed
for (uint8_t i = 0; i < getSpiTransactionSize(); i++)
{
spiBuffer[i] = 0xFF;
}
}
// Call isConnected up to three times - tests on the NEO-M8U show the CFG RATE poll occasionally being ignored
bool connected = isConnected(maxWait);
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - second attempt"));
}
#endif
connected = isConnected(maxWait);
}
if (!connected)
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: isConnected - third attempt"));
}
#endif
connected = isConnected(maxWait);
}
if ((!connected) && assumeSuccess && _signsOfLife) // Advanced users can assume success if required. Useful if the port is outputting messages at high navigation rate.
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if ((_printDebug == true) || (_printLimitedDebug == true)) // This is important. Print this if doing limited debugging
{
_debugSerial->println(F("begin: third attempt failed. Assuming success..."));
}
#endif
return (true);
}
return (connected);
}
// Allow the user to change I2C polling wait (the minimum interval between I2C data requests - to avoid pounding the bus)
// i2cPollingWait defaults to 100ms and is adjusted automatically when setNavigationFrequency()
// or setHNRNavigationRate() are called. But if the user is using callbacks, it might be advantageous
// to be able to set the polling wait manually.
void SFE_UBLOX_GNSS::setI2CpollingWait(uint8_t newPollingWait_ms)
{
i2cPollingWait = newPollingWait_ms;
}
// Allow the user to change SPI polling wait
// (the minimum interval between SPI data requests when no data is available - to avoid pounding the bus)
void SFE_UBLOX_GNSS::setSPIpollingWait(uint8_t newPollingWait_ms)
{
spiPollingWait = newPollingWait_ms;
}
// Sets the global size for I2C transactions
// Most platforms use 32 bytes (the default) but this allows users to increase the transaction
// size if the platform supports it
// Note: If the transaction size is set larger than the platforms buffer size, bad things will happen.
void SFE_UBLOX_GNSS::setI2CTransactionSize(uint8_t transactionSize)
{
if (transactionSize < 8)
transactionSize = 8; // Ensure transactionSize is at least 8 bytes otherwise sendI2cCommand will have problems!
i2cTransactionSize = transactionSize;
}
uint8_t SFE_UBLOX_GNSS::getI2CTransactionSize(void)
{
return (i2cTransactionSize);
}
// Sets the global size for the SPI buffer/transactions.
// Call this **before** begin()!
// Note: if the buffer size is too small, incoming characters may be lost if the message sent
// is larger than this buffer. If too big, you may run out of SRAM on constrained architectures!
void SFE_UBLOX_GNSS::setSpiTransactionSize(uint8_t transactionSize)
{
if (spiBuffer == NULL)
{
spiTransactionSize = transactionSize;
}
else
{
#ifndef SFE_UBLOX_REDUCED_PROG_MEM
if (_printDebug == true)
{
_debugSerial->println(F("setSpiTransactionSize: you need to call setSpiTransactionSize _before_ begin!"));
}
#endif
}
}
uint8_t SFE_UBLOX_GNSS::getSpiTransactionSize(void)
{
return (spiTransactionSize);
}
// Sets the size of maxNMEAByteCount
void SFE_UBLOX_GNSS::setMaxNMEAByteCount(int8_t newMax)
{
maxNMEAByteCount = newMax;
}
int8_t SFE_UBLOX_GNSS::getMaxNMEAByteCount(void)
{
return (maxNMEAByteCount);
}
// Returns true if I2C device ack's
bool SFE_UBLOX_GNSS::isConnected(uint16_t maxWait)
{
if (commType == COMM_TYPE_I2C)
{
_i2cPort->beginTransmission((uint8_t)_gpsI2Caddress);
if (_i2cPort->endTransmission() != 0)
return false; // Sensor did not ack
}
// Query port configuration to see whether we get a meaningful response
// We could simply request the config for any port but, just for giggles, let's request the config for most appropriate port
if (commType == COMM_TYPE_I2C)
return (getPortSettingsInternal(COM_PORT_I2C, maxWait));
else if (commType == COMM_TYPE_SERIAL)
return (getPortSettingsInternal(COM_PORT_UART1, maxWait)); // Could be UART2 - but this is just a response check
else // if (commType == COMM_TYPE_SPI)
return (getPortSettingsInternal(COM_PORT_SPI, maxWait));
}
// Enable or disable the printing of sent/response HEX values.
// Use this in conjunction with 'Transport Logging' from the Universal Reader Assistant to see what they're doing that we're not
void SFE_UBLOX_GNSS::enableDebugging(Stream &debugPort, bool printLimitedDebug)
{
_debugSerial = &debugPort; // Grab which port the user wants us to use for debugging
if (printLimitedDebug == false)
{
_printDebug = true; // Should we print the commands we send? Good for debugging
}
else
{
_printLimitedDebug = true; // Should we print limited debug messages? Good for debugging high navigation rates
}
}
void SFE_UBLOX_GNSS::disableDebugging(void)
{
_printDebug = false; // Turn off extra print statements
_printLimitedDebug = false;
}
// Safely print messages
void SFE_UBLOX_GNSS::debugPrint(char *message)
{
if (_printDebug == true)
{
_debugSerial->print(message);
}
}
// Safely print messages
void SFE_UBLOX_GNSS::debugPrintln(char *message)
{
if (_printDebug == true)
{
_debugSerial->println(message);
}
}
const char *SFE_UBLOX_GNSS::statusString(sfe_ublox_status_e stat)
{
switch (stat)
{
case SFE_UBLOX_STATUS_SUCCESS:
return "Success";
break;
case SFE_UBLOX_STATUS_FAIL:
return "General Failure";
break;
case SFE_UBLOX_STATUS_CRC_FAIL:
return "CRC Fail";
break;
case SFE_UBLOX_STATUS_TIMEOUT:
return "Timeout";
break;
case SFE_UBLOX_STATUS_COMMAND_NACK:
return "Command not acknowledged (NACK)";
break;
case SFE_UBLOX_STATUS_OUT_OF_RANGE: