Release v1.095 Beta

This commit is contained in:
phdlee 2018-07-05 19:18:22 +09:00
parent dd43ba4c33
commit 1ce889eef0
1 changed files with 5 additions and 2 deletions

View File

@ -761,7 +761,10 @@ void SWS_Process(void)
{
unsigned long *tempFreq;
tempFreq = (unsigned long *)(&swr_buffer[commandStartIndex + 4]);
frequency = *tempFreq;
//if (*tempFreq > 3000) //for loss protcol
//{
frequency = *tempFreq;
//}
}
else if (commandType == TS_CMD_BAND)
{
@ -989,7 +992,7 @@ void SendUbitxData(void)
SendCommandL(CMD_AR_TUNE4, arTuneStep[3]);
SendCommandL(CMD_AR_TUNE5, arTuneStep[4]);
SendCommandL(CMD_IS_CW_SHIFT_DISPLAY, isShiftDisplayCWFreq);
SendCommand1Num(CMD_IS_CW_SHIFT_DISPLAY, isShiftDisplayCWFreq);
SendCommandL(CMD_CW_SHIFT_ADJUST, shiftDisplayAdjustVal);
SendCommandL(CMD_COMM_OPTION, commonOption0);
SendCommandL(CMD_DISP_OPTION1, displayOption1);