Possible issue with multiplying transverters
Posted: Mon Jul 17, 2023 6:30 pm
Hi All,
playing with oe8fnk Freds hydra (multiplyer) up/down to 10GHz i found a possible issue at https://github.com/g4eml/Langstone-V2/b ... UI_Pluto.c at line 2775.
Original (Pluto will freak out if the qrg is 10 Gigs hi):
frTx=fr+bandTxOffset[band];
if(frTx > maxHwFreq)
{
frTx = maxHwFreq;
}
if(frTx < minHwFreq)
{
frTx = minHwFreq;
}
My fix for this is a clause to care the right mode to set it:
if(bandTxHarmonic[band] ==0) {
if(frTx > maxHwFreq)
{
frTx = maxHwFreq;
}
if(frTx < minHwFreq)
{
frTx = minHwFreq;
}
}
hope this is helpful to other folks using this multiplyer transverter,
br Robert, 73 de oe6rke
playing with oe8fnk Freds hydra (multiplyer) up/down to 10GHz i found a possible issue at https://github.com/g4eml/Langstone-V2/b ... UI_Pluto.c at line 2775.
Original (Pluto will freak out if the qrg is 10 Gigs hi):
frTx=fr+bandTxOffset[band];
if(frTx > maxHwFreq)
{
frTx = maxHwFreq;
}
if(frTx < minHwFreq)
{
frTx = minHwFreq;
}
My fix for this is a clause to care the right mode to set it:
if(bandTxHarmonic[band] ==0) {
if(frTx > maxHwFreq)
{
frTx = maxHwFreq;
}
if(frTx < minHwFreq)
{
frTx = minHwFreq;
}
}
hope this is helpful to other folks using this multiplyer transverter,
br Robert, 73 de oe6rke