Skip to content

Commit 5755fdb

Browse files
committed
cosmetic change
1 parent 74784ed commit 5755fdb

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

SkyRoof/FT4/Ft4Decoder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
using System.Windows.Forms;
44
using Serilog;
55
using VE3NEA;
6+
using static VE3NEA.NativeFT4Coder;
67

78
namespace SkyRoof
89
{
@@ -75,7 +76,7 @@ public void Decode(float[]? samples = null)
7576
for (int i = 0; i < samples.Length; i++)
7677
samples[i] /= max;
7778

78-
int stage = (int)NativeFT4Coder.QsoStage.CALLING;
79+
QsoStage stage = NativeFT4Coder.QsoStage.CALLING;
7980
Buffers!.SetMyCall(MyCall);
8081

8182
DecodedSlotNumber = Slot.SlotNumber;

SkyRoof/FT4/NativeFT4Coder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public enum QsoStage
4242
[DllImport("ft4_coder", CallingConvention = CallingConvention.Cdecl, CharSet = CharSet.Ansi)]
4343
public static extern void decode_ft4(
4444
[In] float[] audio_samples,
45-
ref int nQSOProgress,
45+
ref QsoStage nQSOProgress,
4646
ref int nfqso,
4747
ref int nfb,
4848
[In] byte[] mycall,

docs/users_guide/setting_up_cat_control.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ for the list of currently supported radios. If your radio model is not yet suppo
1212
If your radio is supported by SkyCAT, use skycatd.exe, a command line program that comes as part of the SkyCAT package. To start using it, follow the
1313
[setup instructions](https://ve3nea.github.io/SkyCAT/skycatd.html) on the SkyCAT web site.
1414

15+
The latest command definition files are available [here](https://github.com/VE3NEA/SkyCAT/tree/master/Rigs).
16+
Update the file for your radio before you proceed.
1517

1618
## Using rigctld.exe
1719

0 commit comments

Comments
 (0)