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