HamBook – Rev 46
?pathlinks?
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using static HamBook.Radios.Yaesu.FT_891.Constants;
using RJCP.IO.Ports;
namespace HamBook.Radios.Yaesu.FT_891.CAT
{
[Radio("Yaesu FT-891")]
public class BD : Generic.CAT.BD
{
public override CatLength CatLength => new CatLength { Set = 4 };
public BD(SerialPortStream serialPort) : base(serialPort)
{
}
public override void Set()
{
SerialPort.Write($"{Name}{Constants.EOT}");
}
}
}