HamBook – Blame information for rev 46
?pathlinks?
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 static HamBook.Radios.Yaesu.FT_891.Constants; |
||
9 | office | 9 | using RJCP.IO.Ports; |
1 | office | 10 | |
9 | office | 11 | namespace HamBook.Radios.Yaesu.FT_891.CAT |
1 | office | 12 | { |
13 | [Radio("Yaesu FT-891")] |
||
14 | public class BA : Generic.CAT.BA |
||
15 | { |
||
9 | office | 16 | public override CatLength CatLength => new CatLength { Set = 3 }; |
17 | |||
18 | public BA(SerialPortStream serialPort) : base(serialPort) |
||
1 | office | 19 | { |
20 | } |
||
21 | |||
22 | public override void Set() |
||
23 | { |
||
46 | office | 24 | SerialPort.Write($"{Name}{Constants.EOT}"); |
1 | office | 25 | } |
26 | } |
||
27 | } |