HamBook – Blame information for rev 54

Subversion Repositories:
Rev:
Rev Author Line No. Line
54 office 1 using RJCP.IO.Ports;
1 office 2 using static HamBook.Radios.Yaesu.FT_891.Constants;
3  
9 office 4 namespace HamBook.Radios.Yaesu.FT_891.CAT
1 office 5 {
6 [Radio("Yaesu FT-891")]
54 office 7 public class Ab : Generic.CAT.Ab
1 office 8 {
54 office 9 public Ab(SerialPortStream serialPort) : base(serialPort)
1 office 10 {
11 }
12  
54 office 13 public override CatLength CatLength => new CatLength { Set = 3 };
14  
1 office 15 public override void Set()
16 {
54 office 17 SerialPort.Write($"{Name}{Eot}");
1 office 18 }
19 }
54 office 20 }