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 BU : Generic.CAT.BU
{
public override CatLength CatLength => new CatLength { Set = 4 };
public BU(SerialPortStream serialPort) : base(serialPort)
{
}
public override void Set()
{
SerialPort.Write($"{Name}{Constants.EOT}");
}
}
}