* load winradio backend

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@346 7ae35d74-ebe9-4afe-98af-79ac388436b8
Hamlib-1.1.1
Stéphane Fillod, F8CFE 2001-02-07 23:45:59 +00:00
rodzic 3e910d3a3e
commit e25f8211df
3 zmienionych plików z 6 dodań i 3 usunięć

Wyświetl plik

@ -3,7 +3,7 @@
* This programs dumps the capabilities of a backend rig.
*
*
* $Id: dumpcaps.c,v 1.9 2001-01-28 22:21:00 f4cfe Exp $
* $Id: dumpcaps.c,v 1.10 2001-02-07 23:45:59 f4cfe Exp $
*
*
* This program is free software; you can redistribute it and/or
@ -48,6 +48,7 @@ int main (int argc, char *argv[])
status |= rig_load_backend("ft847");
status |= rig_load_backend("kenwood");
status |= rig_load_backend("aor");
rig_load_backend("winradio"); /* may not be compiled ... */
if (status != RIG_OK ) {
printf("rig_load_backend: error = %s \n", rigerror(status));

Wyświetl plik

@ -3,7 +3,7 @@
* This programs list all the available the rig capabilities.
*
*
* $Id: listrigs.c,v 1.3 2001-01-28 22:21:48 f4cfe Exp $
* $Id: listrigs.c,v 1.4 2001-02-07 23:45:59 f4cfe Exp $
*
*
* This program is free software; you can redistribute it and/or
@ -113,6 +113,7 @@ int main (int argc, char *argv[])
printf("rig_load_backend: aor error = %s \n", rigerror(status));
exit(3);
}
rig_load_backend("winradio"); /* may not be compiled .. */
printf("Rig#\tMfg\tModel \tVers.\tStatus\tType\n");
status = rig_list_foreach(print_caps_sum,NULL);

Wyświetl plik

@ -4,7 +4,7 @@
* The code is rather ugly since this is only a try out.
*
*
* $Id: rigmatrix.c,v 1.4 2001-01-30 22:59:22 f4cfe Exp $
* $Id: rigmatrix.c,v 1.5 2001-02-07 23:45:59 f4cfe Exp $
*
*
* This program is free software; you can redistribute it and/or
@ -474,6 +474,7 @@ int main (int argc, char *argv[])
printf("rig_load_backend: aor error = %s \n", rigerror(status));
exit(3);
}
rig_load_backend("winradio"); /* may not be compiled ... */
printf("<TABLE BORDER=1>");
printf("<TR><TD>Model</TD><TD>Mfg</TD><TD>Vers.</TD><TD>Status</TD>"