mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-04-05 14:35:18 +00:00
Add base Radio Model that all radios should inherit from.
This commit is contained in:
parent
207bd3bcaa
commit
3601d53ed1
5 changed files with 17 additions and 7 deletions
12
SharpCAT/Models/Radio.cs
Normal file
12
SharpCAT/Models/Radio.cs
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace SharpCAT.Models
|
||||
{
|
||||
//Base Radio Model
|
||||
class Radio
|
||||
{
|
||||
public readonly string CmdPad = "00000000";
|
||||
}
|
||||
}
|
||||
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
|
||||
namespace SharpCAT.Models.Radios.Icom
|
||||
{
|
||||
class ID4100a
|
||||
class ID4100a : Radio
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
|
||||
namespace SharpCAT.Models.Radios.Icom
|
||||
{
|
||||
class ID880H
|
||||
class ID880H : Radio
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ using System.Text;
|
|||
|
||||
namespace SharpCAT.Models.Radios.Kenwood
|
||||
{
|
||||
class THD74A
|
||||
class THD74A : Radio
|
||||
{
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,9 +1,7 @@
|
|||
namespace SharpCAT.Models.Radios.Yaesu
|
||||
{
|
||||
internal class FT818
|
||||
{
|
||||
private readonly string CmdPad = "00000000";
|
||||
|
||||
internal class FT818 : Radio
|
||||
{
|
||||
public struct Lock
|
||||
{
|
||||
public static readonly string ON = "00";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue