HamBook – Diff between revs 46 and 54
?pathlinks?
Rev 46 | Rev 54 | |||
---|---|---|---|---|
Line 1... | Line -... | |||
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; |
1 | using System.Threading; |
|
8 | using System.Threading.Tasks; |
2 | using System.Threading.Tasks; |
|
- | 3 | using RJCP.IO.Ports; |
||
Line 9... | Line 4... | |||
9 | |
4 | |
|
10 | namespace HamBook.Radios.Generic.CAT |
5 | namespace HamBook.Radios.Generic.CAT |
|
11 | { |
6 | { |
|
12 | public abstract class MR : Cat |
7 | public abstract class Mr : Cat |
|
13 | { |
8 | { |
|
14 | public MR(SerialPortStream serialPort) : base(serialPort) |
9 | public Mr(SerialPortStream serialPort) : base(serialPort) |
|
15 | { |
10 | { |
|
Line 16... | Line 11... | |||
16 | } |
11 | } |
|
Line 23... | Line 18... | |||
23 | |
18 | |
|
Line 24... | Line 19... | |||
24 | public abstract Task<MemoryChannel> ReadAsync(string location, CancellationToken cancellationToken); |
19 | public abstract Task<MemoryChannel> ReadAsync(string location, CancellationToken cancellationToken); |
|
25 | |
20 | |
|
26 | //public abstract MemoryChannel Parse(string input); |
21 | //public abstract MemoryChannel Parse(string input); |
|
27 | } |
22 | } |