[Hamlib-cvs-digest] CVS: hamlib/src rig.c,1.12,1.13
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Stephane F. <f4...@us...> - 2001-01-05 18:24:16
|
Update of /cvsroot/hamlib/hamlib/src In directory usw-pr-cvs1:/tmp/cvs-serv1985 Modified Files: rig.c Log Message: * added targetable_vfo support in wrappers for rigs that cannot address directly VFOs Index: rig.c =================================================================== RCS file: /cvsroot/hamlib/hamlib/src/rig.c,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -r1.12 -r1.13 *** rig.c 2000/12/22 00:56:00 1.12 --- rig.c 2001/01/05 18:24:20 1.13 *************** *** 64,69 **** --- 64,71 ---- "Command performed, but arg truncated, result not guaranteed", "Feature not available", + "Target VFO unaccessible", NULL, }; + #define ERROR_TBL_SZ (sizeof(rigerror_table)/sizeof(char *)) /** *************** [...1519 lines suppressed...] return -RIG_ENAVAIL; ! ! return rig->caps->get_trn(rig, vfo, trn); } *************** *** 1777,1782 **** if (rig->caps->get_info == NULL) return NULL; ! else ! return rig->caps->get_info(rig); } --- 2342,2347 ---- if (rig->caps->get_info == NULL) return NULL; ! ! return rig->caps->get_info(rig); } |