HamBook – Blame information for rev 54
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
54 | office | 1 | using System.Threading; |
19 | office | 2 | using System.Threading.Tasks; |
54 | office | 3 | using RJCP.IO.Ports; |
19 | office | 4 | |
5 | namespace HamBook.Radios.Generic.CAT |
||
6 | { |
||
54 | office | 7 | public abstract class Ch : Cat |
19 | office | 8 | { |
54 | office | 9 | public Ch(SerialPortStream serialPort) : base(serialPort) |
19 | office | 10 | { |
11 | } |
||
12 | |||
13 | public override string Name => "CH"; |
||
14 | |||
15 | public override string Definition => "CHANNEL UP/DOWN"; |
||
16 | |||
17 | public abstract void Write(ChannelDirection channelDirection); |
||
18 | |||
19 | public abstract Task WriteAsync(ChannelDirection channelDirection, CancellationToken cancellationToken); |
||
20 | } |
||
54 | office | 21 | } |