vfo changed buf fixed, added BFO feature with Mike

This commit is contained in:
phdlee
2018-01-30 17:44:15 +09:00
parent 0d9ec08bd7
commit 5eca64d2a9
5 changed files with 296 additions and 159 deletions

View File

@@ -111,9 +111,9 @@ void initOscillators(){
si5351bx_vcoa = (SI5351BX_XTAL * SI5351BX_MSA) + calibration; // apply the calibration correction factor
if (cwMode == 0)
si5351bx_setfreq(0, usbCarrier);
si5351bx_setfreq(0, usbCarrier + (isIFShift ? ifShiftValue : 0));
else
si5351bx_setfreq(0, cwmCarrier);
si5351bx_setfreq(0, cwmCarrier + (isIFShift ? ifShiftValue : 0));
}