HamBook – Rev 46
?pathlinks?
using System;
using System.Collections.Generic;
using System.ComponentModel;
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 BA : Generic.CAT.BA
{
public override CatLength CatLength => new CatLength { Set = 3 };
public BA(SerialPortStream serialPort) : base(serialPort)
{
}
public override void Set()
{
SerialPort.Write($"{Name}{Constants.EOT}");
}
}
}