HamBook – Diff between revs 3 and 9

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 3 Rev 9
Line 3... Line 3...
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 static HamBook.Radios.Yaesu.FT_891.Constants; 7 using static HamBook.Radios.Yaesu.FT_891.Constants;
-   8 using RJCP.IO.Ports;
Line 8... Line 9...
8   9  
9 namespace HamBook.Radios.Yaesu.FT_891 10 namespace HamBook.Radios.Yaesu.FT_891.CAT
10 { 11 {
11 [Radio("Yaesu FT-891")] 12 [Radio("Yaesu FT-891")]
12 public class BD : Generic.CAT.BD 13 public class BD : Generic.CAT.BD
-   14 {
-   15 public override CatLength CatLength => new CatLength { Set = 4 };
13 { 16  
14 public BD(SerialPort serialPort) : base(serialPort) 17 public BD(SerialPortStream serialPort) : base(serialPort)
15 { 18 {
Line 16... Line 19...
16 } 19 }
17   20