Added CWL, CWU Mode, need test

This commit is contained in:
phdlee
2018-01-30 13:20:52 +09:00
parent 98c26730c6
commit 0d9ec08bd7
6 changed files with 340 additions and 57 deletions

View File

@@ -234,10 +234,21 @@ void updateDisplay() {
if (ritOn)
strcpy(c, "RIT ");
else {
if (isUSB)
strcpy(c, "USB ");
if (cwMode == 0)
{
if (isUSB)
strcpy(c, "USB ");
else
strcpy(c, "LSB ");
}
else if (cwMode == 1)
{
strcpy(c, "CWL ");
}
else
strcpy(c, "LSB ");
{
strcpy(c, "CWU ");
}
}
if (vfoActive == VFO_A) // VFO A is active
strcat(c, "A:");