HamBook – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using System.Threading.Tasks;
6  
7 namespace HamBook.Radios.Yaesu.FT_891
8 {
9 public class Constants
10 {
11 public const int BUFFER_SIZE = 4096;
12  
13 public const string EOT = ";";
14  
15 public const int POWER_ON_DELAY = 1000;
16  
17 public const int TIME_TO_WARM = 5000;
18 }
19 }