HamBook – Blame information for rev 11
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
7 | office | 1 | using System; |
2 | using System.Collections.Generic; |
||
3 | using System.IO.Ports; |
||
4 | using System.Linq; |
||
5 | using System.Text; |
||
11 | office | 6 | using System.Threading; |
7 | office | 7 | using System.Threading.Tasks; |
9 | office | 8 | using RJCP.IO.Ports; |
7 | office | 9 | |
10 | namespace HamBook.Radios.Generic.CAT |
||
11 | { |
||
12 | public abstract class ID : Cat |
||
13 | { |
||
9 | office | 14 | public ID(SerialPortStream serialPort) : base(serialPort) |
7 | office | 15 | { |
16 | } |
||
17 | |||
18 | public override string Name => "ID"; |
||
19 | |||
20 | public override string Definition => "IDENTIFICATION"; |
||
21 | |||
22 | public abstract bool Read(); |
||
11 | office | 23 | |
24 | public abstract Task<bool> ReadAsync(CancellationToken cancellationToken); |
||
7 | office | 25 | } |
26 | } |