HamBook – Diff between revs 1 and 9

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 1 Rev 9
Line 2... Line 2...
2 using System.Collections.Generic; 2 using System.Collections.Generic;
3 using System.IO.Ports; 3 using System.IO.Ports;
4 using System.Linq; 4 using System.Linq;
5 using System.Text; 5 using System.Text;
6 using System.Threading.Tasks; 6 using System.Threading.Tasks;
-   7 using RJCP.IO.Ports;
Line 7... Line 8...
7   8  
8 namespace HamBook.Radios.Generic.CAT 9 namespace HamBook.Radios.Generic.CAT
9 { 10 {
10 public abstract class BD : Cat 11 public abstract class BD : Cat
11 { 12 {
Line 12... Line 13...
12 public override string Name => "BD"; 13 public override string Name => "BD";
Line 13... Line 14...
13   14  
14 public override string Definition => "BAND DOWN"; 15 public override string Definition => "BAND DOWN";
15   16  
Line 16... Line 17...
16 public BD(SerialPort serialPort) : base(serialPort) 17 public BD(SerialPortStream serialPort) : base(serialPort)
17 { 18 {