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