forked from nanoframework/nanoFramework.IoT.Device
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GnssMode.cs
69 lines (57 loc) · 1.67 KB
/
GnssMode.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System;
namespace Iot.Device.Common.GnssDevice
{
/// <summary>
/// The Global Navigation Satellite System mode.
/// More can be found at https://web.archive.org/web/20220902160821/https://www.nmea.org/Assets/NMEA%200183%20Talker%20Identifier%20Mnemonics.pdf.
/// </summary>
public enum GnssMode
{
/// <summary>
/// No GNSS mode selected.
/// </summary>
None,
/// <summary>
/// GP for Global Positioning System.
/// </summary>
Gps,
/// <summary>
/// BD for BeiDou Navigation Satellite System.
/// </summary>
BeiDou,
/// <summary>
/// GL for Global Navigation Satellite System.
/// </summary>
Glonass,
/// <summary>
/// GQ for Quasi-Zenith Satellite System.
/// </summary>
Qzss,
/// <summary>
/// GA for Galileo.
/// </summary>
Galileo,
/// <summary>
/// Satellite-Based Augmentation Systems.
/// </summary>
Sbas,
/// <summary>
/// Wide Area Augmentation System.
/// </summary>
Wass,
/// <summary>
/// GI for Navigation with Indian Constellation.
/// </summary>
NavIC,
/// <summary>
/// GN for Global Navigation Satellite System including multiple constellations.
/// </summary>
Gnss,
/// <summary>
/// Other system such as instrument-specific.
/// </summary>
Other,
}
}