Skip to content

Commit

Permalink
Fixed A76XX/SIM76XX satellite acquisition Xinyuan-LilyGO/LilyGO-T-A76…
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisxhe committed Nov 16, 2024
1 parent 1580286 commit 473f2fb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/TinyGsmClientA7608.h
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ class TinyGsmA7608 : public TinyGsmModem<TinyGsmA7608>,
// 20240513 fixed
// A7600M7_B11V05_231108
// +CGNSSINFO: 3,13,14,,,xx.xxxx,N,xx.xxxx,E,130524,035736.00,53.6,0.000,,1.7,1.2,1.1,
streamSkipUntil(','); // GPS-SVs satellite valid numbers
ivsat = streamGetIntBefore(','); // GPS-SVs satellite valid numbers
streamSkipUntil(','); // BEIDOU-SVs satellite valid numbers
streamSkipUntil(','); // GLONASS-SVs satellite valid numbers
streamSkipUntil(','); // GALILEO-SVs satellite valid numbers
Expand Down
2 changes: 1 addition & 1 deletion src/TinyGsmClientA7670.h
Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ class TinyGsmA7670 : public TinyGsmModem<TinyGsmA7670>,
int imin = 0;
float secondWithSS = 0;

streamSkipUntil(','); // GPS satellite valid numbers
ivsat = streamGetIntBefore(','); // GPS satellite valid numbers
streamSkipUntil(','); // GLONASS satellite valid numbers
streamSkipUntil(','); // skip dump , A7670
streamSkipUntil(','); // BEIDOU satellite valid numbers
Expand Down
2 changes: 1 addition & 1 deletion src/TinyGsmClientSIM7672.h
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@ class TinyGsmSim7672 : public TinyGsmModem<TinyGsmSim7672>,
int imin = 0;
float secondWithSS = 0;

streamSkipUntil(','); // GPS satellite valid numbers
ivsat = streamGetIntBefore(','); // GPS satellite valid numbers
streamSkipUntil(','); // GLONASS satellite valid numbers
streamSkipUntil(','); // BEIDOU satellite valid numbers
streamSkipUntil(',');
Expand Down

0 comments on commit 473f2fb

Please sign in to comment.