Skip to content

Releases: loginov-rocks/UbxGps

Parameterized classes

03 Sep 00:48
edd2211
Compare
Choose a tag to compare

Classes now parameterized to support both Hardware and Software serials.

Breaking changes:

Before:

UbxGpsNavPvt gps(Serial3);

After:

UbxGpsNavPvt<HardwareSerial> gps(Serial3);

or:

UbxGpsNavPvt<SoftwareSerial> gps(ss);

Meet UbxGps library

03 Dec 13:21
Compare
Choose a tag to compare

UBX-GPS-Library renamed to UbxGps to fit the library specification. No code was harmed.

  • Folders and files layout updated as well. Configuration and Docs directories moved to the extras directory. UbxGps renamed to src.
  • library.properties added.
  • Code style slightly changed, comments in Russian removed.

Auto-configuration sketch

03 Dec 10:55
Compare
Choose a tag to compare

The sketch added helps to configure GPS module automatically to get NAV-PVT messages with 100 ms frequency and 115200 baudrate.

UbxGpsNavPosecef

03 Dec 10:50
Compare
Choose a tag to compare

New class added to handle NAV-POSECEF messages (Position Solution in ECEF), it reveals iTOW, ecefX, ecefY, ecefZ and pAcc properties.

First release

03 Dec 10:46
Compare
Choose a tag to compare

Initial release with UbxGpsNavPosllh, UbxGpsNavPvt and UbxGpsNavSol classes.