HamBook – Blame information for rev 9
?pathlinks?
Rev | Author | Line No. | Line |
---|---|---|---|
1 | 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; |
||
9 | office | 7 | using RJCP.IO.Ports; |
1 | office | 8 | |
9 | namespace HamBook.Radios.Generic.CAT |
||
10 | { |
||
11 | public abstract class BD : Cat |
||
12 | { |
||
13 | public override string Name => "BD"; |
||
14 | |||
15 | public override string Definition => "BAND DOWN"; |
||
16 | |||
9 | office | 17 | public BD(SerialPortStream serialPort) : base(serialPort) |
1 | office | 18 | { |
19 | } |
||
20 | |||
21 | public abstract void Set(); |
||
22 | } |
||
23 | } |