HamBook – Diff between revs 9 and 54
?pathlinks?
Rev 9 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | using RJCP.IO.Ports; |
1 | using RJCP.IO.Ports; |
|
2 | using System; |
- | ||
3 | using System.Collections.Generic; |
- | ||
4 | using System.IO.Ports; |
- | ||
5 | using System.Linq; |
- | ||
6 | using System.Text; |
- | ||
7 | using System.Threading.Tasks; |
- | ||
Line 8... | Line 2... | |||
8 | |
2 | |
|
9 | namespace HamBook.Radios.Generic.CAT |
3 | namespace HamBook.Radios.Generic.CAT |
|
10 | { |
4 | { |
|
11 | public abstract class AB : Cat |
5 | public abstract class Ab : Cat |
|
12 | { |
6 | { |
|
13 | public AB(SerialPortStream serialPort) : base(serialPort) |
7 | public Ab(SerialPortStream serialPort) : base(serialPort) |
|
14 | { |
8 | { |
|
Line 15... | Line 9... | |||
15 | } |
9 | } |
|
Line 16... | Line 10... | |||
16 | |
10 | |
|
Line 17... | Line 11... | |||
17 | public override string Name => "AB"; |
11 | public override string Name => "AB"; |
|
18 | |
12 | |
|
19 | public override string Definition => "VFO-A TO VFO-B"; |
13 | public override string Definition => "VFO-A TO VFO-B"; |
|
20 | |
14 | |