HamBook – Blame information for rev 46

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.IO.Ports;
5 using System.Linq;
6 using System.Text;
7 using System.Threading.Tasks;
8 using HamBook.Radios.Generic;
9 using static HamBook.Radios.Yaesu.FT_891.Constants;
9 office 10 using RJCP.IO.Ports;
41 office 11 using HamBook.Properties;
1 office 12  
9 office 13 namespace HamBook.Radios.Yaesu.FT_891.CAT
1 office 14 {
15 [Radio("Yaesu FT-891")]
16 public class AB : Generic.CAT.AB
17 {
11 office 18 public override CatLength CatLength => new CatLength { Set = 3 };
19  
9 office 20 public AB(SerialPortStream serialPort) : base(serialPort)
1 office 21 {
22 }
23  
24 public override void Set()
25 {
46 office 26 SerialPort.Write($"{Name}{Constants.EOT}");
1 office 27 }
28 }
29 }