nmea 3.3.3
nmea: ^3.3.3 copied to clipboard
An extensible NMEA0183 parser, which also supports validating the checksum. Useful for reading data from GPS devices and other sensors.
Changelog #
3.3.3 #
- No changes to the library, just a patch bump
- (internal) Updated lockfile to latest versions
- (internal) Formatting
3.3.2 #
- No changes to the library, just a patch bump
- (internal) Small changes to the README
3.3.1 #
- No changes to the library, just a patch bump
- (internal) Formatting fixes
- (internal) Added
CODEOWNERSfile - (internal) Added Dependabot config
- (internal) Updated GitHub actions workflow to run on schedule
- (internal) Added GitHub actions workflow for publishing to pub.dev
3.3.0 #
- Bumped SDK constraint to >=3.0.0 <4.0.0
- (internal) stricter linting rules
- Fixed docs
CustomChecksumSentencenow only evaluates checksums ifvalidateChecksumsistrue(default)
3.2.0 #
- Moved
MultipartSentencelogic todecodemethod
3.1.0 #
- Added
CustomChecksumSentenceand changed parent ofCustomSentencetoNmeaSentence. - Added
NmeaSentenceType.customfor custom sentences.
3.0.0 #
- Breaking:
MultipartSentencehas a new parent classNmeaSentenceand requires implementations for some new abstract members. - Added
onIncompleteMultipartSentencetoNmeaDecoderfor handling multipart sentence without having received a first sentence part.
2.1.1 #
- Added
LimitedSizeQueueto fix #4 (Limit size of_incompleteSentencesinNmeaDecoder)
2.1.0 #
- Adds support for custom sentence types
2.0.0 #
- Renamed project from
flutter_extended_nmeatonmea
1.3.0 #
- Removed dependency on
flutterandflutter_lints - Added some flutter linter rules
- Added GitHub actions workflow for automated testing
1.2.1 #
- Allow
nullto be returned fromOptionalTalkerSentenceFactory
1.2.0 #
- Added more constraints on the generic parameter of
MultipartSentenceto only allow the same type extending as a parameter
1.1.0 #
- Removed unnecessary dependency on cupertino_icons
- Added support for multipart NMEA sentences (like GSV)
1.0.1 #
- Fixed error in decoder if sentence doesn't contain a field separator (",")
1.0.0+1 #
Initial release.
- Added
NmeaSentence,NmeaSentenceType,ChecksumSentence,TalkerSentence,QuerySentence,ProprietarySentence,NmeaUtilsandNmeaDecoderclasses.