mirror of
https://github.com/ekinnee/SharpCAT.git
synced 2026-01-01 22:19:57 +01:00
Add several BaudRates to Serial.cs. Changes to Yaesu FT818.cs fori binary operations such as power on and off.
16 lines
326 B
C#
16 lines
326 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharpCAT
|
|
{
|
|
class CATCommand
|
|
{
|
|
public string P1 { get; set; }
|
|
public string P2 { get; set; }
|
|
public string P3 { get; set; }
|
|
public string P4 { get; set; }
|
|
public string OpCode { get; set; }
|
|
}
|
|
}
|