NmeaError Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Errors from the NMEA parser
public enum NmeaError
type NmeaError =
Public Enum NmeaError
- Inheritance
-
NmeaError
Fields
Name | Value | Description |
---|---|---|
None | 0 | Parsing was successful |
MessageToShort | 1 | A message was shorter than the minimal message size |
InvalidChecksum | 2 | The message checksum did not match. A missing checksum will not be reported as error |
MessageToLong | 3 | The message is to long |
NoSyncByte | 4 | There was no sync byte found |
PortClosed | 5 | The communication stream is closed, no more data can be written |
MessageDelayed | 6 | The message processing was delayed. A possible reason for this is if attempting to send to much data over a slow serial link. |
MessageDropped | 7 | A message was dropped, because a newer message was already in the queue. This indicates an output buffer overrun. |