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.IO.Ports; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
6 | using System.Threading.Tasks; |
||
7 | using static HamBook.Radios.Yaesu.FT_891.Constants; |
||
9 | office | 8 | using RJCP.IO.Ports; |
1 | office | 9 | |
9 | office | 10 | namespace HamBook.Radios.Yaesu.FT_891.CAT |
1 | office | 11 | { |
12 | [Radio("Yaesu FT-891")] |
||
13 | public class BD : Generic.CAT.BD |
||
14 | { |
||
9 | office | 15 | public override CatLength CatLength => new CatLength { Set = 4 }; |
16 | |||
17 | public BD(SerialPortStream serialPort) : base(serialPort) |
||
1 | office | 18 | { |
19 | } |
||
20 | |||
21 | public override void Set() |
||
22 | { |
||
46 | office | 23 | SerialPort.Write($"{Name}{Constants.EOT}"); |
1 | office | 24 | } |
25 | } |
||
26 | } |