HamBook – Diff between revs 53 and 54
?pathlinks?
Rev 53 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line -... | |||
1 | using System; |
- | ||
2 | using System.Collections.Generic; |
- | ||
3 | using System.Linq; |
- | ||
4 | using System.Text; |
1 | using System.Text; |
|
5 | using System.Text.RegularExpressions; |
2 | using System.Text.RegularExpressions; |
|
6 | using System.Threading.Tasks; |
- | ||
Line 7... | Line 3... | |||
7 | |
3 | |
|
8 | namespace HamBook.Radios.Yaesu.FT_891 |
4 | namespace HamBook.Radios.Yaesu.FT_891 |
|
9 | { |
5 | { |
|
10 | public class Constants |
6 | public class Constants |
|
11 | { |
- | ||
12 | public static char EOT = ';'; |
- | ||
13 | public static Encoding Encoding => Encoding.ASCII; |
- | ||
14 | |
7 | { |
|
Line 15... | Line 8... | |||
15 | public const char UNKNOWN_COMMAND_RESPONSE = '?'; |
8 | public const char UnknownCommandResponse = '?'; |
|
Line 16... | Line 9... | |||
16 | |
9 | |
|
Line 17... | Line 10... | |||
17 | public const int BUFFER_SIZE = 4096; |
10 | public const int BufferSize = 4096; |
|
Line 18... | Line 11... | |||
18 | |
11 | |
|
Line -... | Line 12... | |||
- | 12 | public const int PowerOnDelay = 1500; |
||
19 | public const int POWER_ON_DELAY = 1500; |
13 | |
|
Line 20... | Line 14... | |||
20 | |
14 | public const int TimeToWarm = 5000; |
|
Line 21... | Line 15... | |||
21 | public const int TIME_TO_WARM = 5000; |
15 | |
|
- | 16 | public const string Id = "0650"; |
||
- | 17 | |
||
Line -... | Line 18... | |||
- | 18 | public const int MaxTagCharacters = 12; |
||
22 | |
19 | public static char Eot = ';'; |
|
23 | public static int SQUELCH_MIN_STEP = 5; |
20 | |
|
24 | |
21 | public static int SquelchMinStep = 5; |