[DXLog.net - Support] New Scripts for K3 S02V support
Oliver Grossmann
olli at bretzi.de
Mon Jan 4 20:53:55 CET 2016
------------------------------------------------------------------------
Oliver Grossmann | DH2WQ | oliver.grossmann at bretzi.de
Hi,
happy new year to all.
I wrote 3 scripts for K3 Audio switching for SO2V Operation.
please refer to attached files.
K3_ListenBothVFO.cs will switch K3 to listen Main RX on Right and Sub RX
on left stereo channel.
K3_ListenPrimaryVFO.cs will switch Main VFO to both stereo channels.
K3_ListenSecondaryVFO.cs will switch Sub VFO to both Stereo channels.
I also worked on a VFO switching for SO2V Mode on the K3 with limited
success.
I was able to add TX on 2nd RX by setting cdata.UseSPLITTInSO2V = true;
but this works only on the same band due to the fact the K3 can't
transmit on 2nd VFO if both VFOs are on the same band.
I'm now looking for a possibility to swap VFOs on K3 by focusing on
Radio 2 Entry over all bands. Therefore it is necessary to link VFO to
R2 focus.
I would handle the cdata.RadioTCStatusChanged event in such a manner:
// (Only pseudo code and handling of first start etc has to be added) //
If (cdata.FocusedRadio == 1)
{
double copyVFOAFreq = VFOAFreq;
double copyVFOBFreq = VFOBFreq;
setVFOAFreq(copyVFOBFreq);
setVFOBFreq(copyVFOAFreq);
LinkVFOA(Radio_1);
}
else if (cdata.FocusedRadio == 2)
{
double copyVFOAFreq = VFOAFreq;
double copyVFOBFreq = VFOBFreq;
setVFOAFreq(copyVFOBFreq);
setVFOBFreq(copyVFOAFreq);
LinkVFOA(Radio_2);
}
My Problem is LinkVFOA();
Can I somehow redirect the CAT objects like frequencies or is it
necessary to manipulate?
Thanks
Olli, DH2WQ
--
------------------------------------------------------------------------
Oliver Grossmann | DH2WQ | oliver.grossmann at bretzi.de
More information about the Support
mailing list