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