-
-
Notifications
You must be signed in to change notification settings - Fork 108
/
TileStatus.cs
37 lines (32 loc) · 946 Bytes
/
TileStatus.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
// Copyright (c) .NET Foundation and Contributors
// Portions Copyright (c) Eclo Solutions
// See LICENSE file in the project root for full license information.
namespace Iot.Device.Swarm
{
/// <summary>
/// Tile Status events.
/// </summary>
public enum TileStatus
{
/// <summary>
/// Unknown status.
/// </summary>
Unknown = 0,
/// <summary>
/// A firmware crash occurred that caused a restart.
/// </summary>
Abort,
/// <summary>
/// The first time GPS has acquired a valid date/time reference.
/// </summary>
DateTimeAvailable,
/// <summary>
/// The first time GPS has acquired a valid position 3D fix.
/// </summary>
PositionAvailable,
/// <summary>
/// An error message has been received from the Tile. Check the content.
/// </summary>
Error,
}
}