Report unrecognised PTT and DCD types in rigctl and rigctld

pull/191/head
Bill Somerville 2020-01-26 11:31:40 +00:00
rodzic 99e1948cd3
commit 376b328ecb
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: D864B06D1E81618F
2 zmienionych plików z 8 dodań i 4 usunięć

Wyświetl plik

@ -259,7 +259,8 @@ int main(int argc, char *argv[])
}
else
{
ptt_type = atoi(optarg);
puts("Unrecognised PTT type, using NONE");
ptt_type = RIG_PTT_NONE;
}
break;
@ -309,7 +310,8 @@ int main(int argc, char *argv[])
}
else
{
dcd_type = atoi(optarg);
puts("Unrecognised DCD type, using NONE");
dcd_type = RIG_DCD_NONE;
}
break;

Wyświetl plik

@ -366,7 +366,8 @@ int main(int argc, char *argv[])
}
else
{
ptt_type = atoi(optarg);
puts("Unrecognised PTT type, using NONE");
ptt_type = RIG_PTT_NONE;
}
break;
@ -416,7 +417,8 @@ int main(int argc, char *argv[])
}
else
{
dcd_type = atoi(optarg);
puts("Unrecognised DCD type, using NONE");
dcd_type = RIG_DCD_NONE;
}
break;