HamBook – Diff between revs 50 and 54
?pathlinks?
Rev 50 | 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; |
|
9 | using System.Windows.Forms; |
3 | using RJCP.IO.Ports; |
|
Line 10... | Line 4... | |||
10 | |
4 | |
|
11 | namespace HamBook.Radios.Generic.CAT |
5 | namespace HamBook.Radios.Generic.CAT |
|
12 | { |
6 | { |
|
13 | public abstract class LK : Cat |
7 | public abstract class Lk : Cat |
|
14 | { |
8 | { |
|
15 | public LK(SerialPortStream serialPort) : base(serialPort) |
9 | public Lk(SerialPortStream serialPort) : base(serialPort) |
|
16 | { |
10 | { |
|
Line 17... | Line 11... | |||
17 | } |
11 | } |
|
Line 30... | Line 24... | |||
30 | |
24 | |
|
Line 31... | Line 25... | |||
31 | public abstract void Write(LockState state); |
25 | public abstract void Write(LockState state); |
|
32 | |
26 | |
|
33 | public abstract Task WriteAsync(LockState state, CancellationToken cancellationToken); |
27 | public abstract Task WriteAsync(LockState state, CancellationToken cancellationToken); |
|
34 | } |
28 | } |