HamBook – Rev 50
?pathlinks?
using System;
using System.Collections.Generic;
using System.IO.Ports;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using RJCP.IO.Ports;
namespace HamBook.Radios.Generic.CAT
{
public abstract class RI : Cat
{
public RI(SerialPortStream serialPort) : base(serialPort)
{
}
public override string Name => "RI";
public override string Definition => "RADIO INFORMATION";
public abstract bool Read(RadioInformationType radioInformationType);
}
}