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