Change BFO Cal Step(50 to 5), Change CW Frequency Method

This commit is contained in:
phdlee
2018-02-22 12:26:18 +09:00
parent e0f9148972
commit 4a6909f361
3 changed files with 34 additions and 2 deletions

View File

@@ -281,6 +281,15 @@ void updateDisplay() {
strcat(c, "B:");
}
//Fixed by Mitani Massaru (JE4SMQ)
if (isShiftDisplayCWFreq == 1)
{
if (cwMode == 1) //CWL
tmpFreq = tmpFreq - sideTone + shiftDisplayAdjustVal;
else if (cwMode == 2) //CWU
tmpFreq = tmpFreq + sideTone + shiftDisplayAdjustVal;
}
//display frequency
for (int i = 15; i >= 6; i--) {
if (tmpFreq > 0) {