CLEON CONNECTOR  1.0
Parameter updating SW for cloud-offloaded GPS receiver (CLEON)
Errors.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace CLEON_Connector
7 {
8  // Public error numbers
9  static class Errors
10  {
11  public const int NoErrors = 0;
12  public const int timespanForASamepleIsTooLong = 1;
13  public const int insufficientBatteryCapacity = 2;
14  public const int sampleGapIsShorterThanChunkGap = 3;
15  public const int invalidValue = 4;
16  public const int chunkGapIsTooShort = 5;
17  public const int sampleGapIsShorterThanRequiredMinimum = 6;
18  }
19 }