HamBook – Diff between revs 3 and 9
?pathlinks?
Rev 3 | Rev 9 | |||
---|---|---|---|---|
Line 4... | Line 4... | |||
4 | using System.IO.Ports; |
4 | using System.IO.Ports; |
|
5 | using System.Linq; |
5 | using System.Linq; |
|
6 | using System.Text; |
6 | using System.Text; |
|
7 | using System.Threading.Tasks; |
7 | using System.Threading.Tasks; |
|
8 | using static HamBook.Radios.Yaesu.FT_891.Constants; |
8 | using static HamBook.Radios.Yaesu.FT_891.Constants; |
|
- | 9 | using RJCP.IO.Ports; |
||
Line 9... | Line 10... | |||
9 | |
10 | |
|
10 | namespace HamBook.Radios.Yaesu.FT_891 |
11 | namespace HamBook.Radios.Yaesu.FT_891.CAT |
|
11 | { |
12 | { |
|
12 | [Radio("Yaesu FT-891")] |
13 | [Radio("Yaesu FT-891")] |
|
13 | public class BA : Generic.CAT.BA |
14 | public class BA : Generic.CAT.BA |
|
- | 15 | { |
||
- | 16 | public override CatLength CatLength => new CatLength { Set = 3 }; |
||
14 | { |
17 | |
|
15 | public BA(SerialPort serialPort) : base(serialPort) |
18 | public BA(SerialPortStream serialPort) : base(serialPort) |
|
16 | { |
19 | { |
|
Line 17... | Line 20... | |||
17 | } |
20 | } |
|
18 | |
21 | |