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