HamBook – Diff between revs 1 and 9
?pathlinks?
Rev 1 | Rev 9 | |||
---|---|---|---|---|
Line 2... | Line 2... | |||
2 | using System.Collections.Generic; |
2 | using System.Collections.Generic; |
|
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 RJCP.IO.Ports; |
||
Line 7... | Line 8... | |||
7 | |
8 | |
|
8 | namespace HamBook.Radios.Generic.CAT |
9 | namespace HamBook.Radios.Generic.CAT |
|
9 | { |
10 | { |
|
10 | public abstract class BU : Cat |
11 | public abstract class BU : Cat |
|
11 | { |
12 | { |
|
Line 12... | Line 13... | |||
12 | public override string Name => "BU"; |
13 | public override string Name => "BU"; |
|
Line 13... | Line 14... | |||
13 | |
14 | |
|
14 | public override string Definition => "BAND UP"; |
15 | public override string Definition => "BAND UP"; |
|
15 | |
16 | |
|
Line 16... | Line 17... | |||
16 | public BU(SerialPort serialPort) : base(serialPort) |
17 | public BU(SerialPortStream serialPort) : base(serialPort) |
|
17 | { |
18 | { |