HamBook – Diff between revs 9 and 11
?pathlinks?
Rev 9 | Rev 11 | |||
---|---|---|---|---|
Line 1... | Line 1... | |||
1 | using System; |
1 | using System; |
|
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; |
||
6 | using System.Threading.Tasks; |
7 | using System.Threading.Tasks; |
|
7 | using RJCP.IO.Ports; |
8 | using RJCP.IO.Ports; |
|
Line 8... | Line 9... | |||
8 | |
9 | |
|
9 | namespace HamBook.Radios.Generic.CAT |
10 | namespace HamBook.Radios.Generic.CAT |
|
Line 17... | Line 18... | |||
17 | public override string Name => "ID"; |
18 | public override string Name => "ID"; |
|
Line 18... | Line 19... | |||
18 | |
19 | |
|
Line 19... | Line 20... | |||
19 | public override string Definition => "IDENTIFICATION"; |
20 | public override string Definition => "IDENTIFICATION"; |
|
- | 21 | |
||
- | 22 | public abstract bool Read(); |
||
20 | |
23 | |
|
21 | public abstract bool Read(); |
24 | public abstract Task<bool> ReadAsync(CancellationToken cancellationToken); |