mirror of
https://github.com/dotMorten/NmeaParser.git
synced 2026-01-20 15:40:16 +01:00
Merge branch 'main' of https://github.com/dotMorten/NmeaParser into main
# Conflicts: # src/NmeaParser/Gnss/GnssMonitor.cs
This commit is contained in:
commit
81ff060070
|
|
@ -80,7 +80,7 @@ namespace NmeaParser.Gnss
|
|||
m_allMessages[message.MessageType] = message;
|
||||
}
|
||||
properties.Add(nameof(AllMessages));
|
||||
if(message.TalkerId != NmeaParser.Talker.GlobalNavigationSatelliteSystem && !(message is Gsv))
|
||||
if(message.TalkerId != NmeaParser.Talker.GlobalNavigationSatelliteSystem && !(message is Gsv) && message.MessageType.Length > 2)
|
||||
{
|
||||
// If device supports combined GN*** messages, ignore non-GN messages, except for Gsv
|
||||
if (m_allMessages.ContainsKey("GN" + message.MessageType.Substring(2)))
|
||||
|
|
|
|||
|
|
@ -11,7 +11,7 @@
|
|||
<Description>An NMEA stream parser for serial port, bluetooth and file-based nmea simulation.</Description>
|
||||
<PackageTags>NMEA GPS GNSS Serialport Bluetooth Navigation NTRIP RTCM Galileo GLONASS BeiDou Garmin Trimble</PackageTags>
|
||||
<PackageId>SharpGIS.NmeaParser</PackageId>
|
||||
<Version>2.1</Version>
|
||||
<Version>2.2</Version>
|
||||
<Product>NMEA Parser</Product>
|
||||
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
|
||||
<PackageProjectUrl>https://dotmorten.github.io/NmeaParser/</PackageProjectUrl>
|
||||
|
|
@ -35,7 +35,7 @@ All messages now have a unique timestamp useful to expire older messages.</Packa
|
|||
<Nullable>enable</Nullable>
|
||||
<PackageIcon>logo.png</PackageIcon>
|
||||
<PackageIconUrl />
|
||||
<AssemblyVersion>2.1.0.0</AssemblyVersion>
|
||||
<AssemblyVersion>2.2.0.0</AssemblyVersion>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.4'">
|
||||
|
|
|
|||
Loading…
Reference in a new issue