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 HamBook.Radios.Generic;
using static HamBook.Radios.Yaesu.FT_891.Constants;
using RJCP.IO.Ports;
using HamBook.Properties;
namespace HamBook.Radios.Yaesu.FT_891.CAT
{
[Radio("Yaesu FT-891")]
public class AB : Generic.CAT.AB
{
public override CatLength CatLength => new CatLength { Set = 3 };
public AB(SerialPortStream serialPort) : base(serialPort)
{
}
public override void Set()
{
SerialPort.Write($"{Name}{Constants.EOT}");
}
}
}