git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@464 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.1
Stéphane Fillod, F8CFE 2001-04-26 21:33:57 +00:00
rodzic 3fad31e1a0
commit c6f04fb924
1 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -3,7 +3,7 @@
* This programs dumps the capabilities of a backend rig.
*
*
* $Id: dumpcaps.c,v 1.18 2001-04-24 19:56:41 f4cfe Exp $
* $Id: dumpcaps.c,v 1.19 2001-04-26 21:33:57 f4cfe Exp $
*
*
* This program is free software; you can redistribute it and/or
@ -339,9 +339,9 @@ int main (int argc, char *argv[])
printf("VFO list: ");
if (caps->vfo_list!=0) {
if (caps->vfo_list&RIG_VFO_A) printf("VFOA ");
if (caps->vfo_list&RIG_VFO_B) printf("VFOB ");
if (caps->vfo_list&RIG_VFO_C) printf("VFOC ");
if ((caps->vfo_list&RIG_VFO_A)==RIG_VFO_A) printf("VFOA ");
if ((caps->vfo_list&RIG_VFO_B)==RIG_VFO_A) printf("VFOB ");
if ((caps->vfo_list&RIG_VFO_C)==RIG_VFO_A) printf("VFOC ");
printf("\n");
} else {
printf(" none! This backend might be bogus!\n");