[Hamlib-cvs-digest] CVS: hamlib/tests dumpcaps.c,1.5,1.6 listrigs.c,1.1,1.2
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Stephane F. <f4...@us...> - 2000-11-01 23:27:28
|
Update of /cvsroot/hamlib/hamlib/tests In directory slayer.i.sourceforge.net:/tmp/cvs-serv10797 Modified Files: dumpcaps.c listrigs.c Log Message: * load/know more backends Index: dumpcaps.c =================================================================== RCS file: /cvsroot/hamlib/hamlib/tests/dumpcaps.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** dumpcaps.c 2000/10/22 16:14:53 1.5 --- dumpcaps.c 2000/11/01 23:27:26 1.6 *************** *** 44,49 **** } ! /* status = rig_load_backend("icom"); */ ! status = rig_load_backend("ft747"); if (status != RIG_OK ) { --- 44,51 ---- } ! status = rig_load_backend("icom"); ! status |= rig_load_backend("ft747"); ! status |= rig_load_backend("ft847"); ! status |= rig_load_backend("aor"); if (status != RIG_OK ) { *************** *** 128,132 **** } ! printf("Serial speed: %d..%dbauds, %d%c%d %s\n", caps->serial_rate_min, caps->serial_rate_max,caps->serial_data_bits, caps->serial_parity==RIG_PARITY_NONE?'N': --- 130,134 ---- } ! printf("Serial speed: %d..%d bauds, %d%c%d %s\n", caps->serial_rate_min, caps->serial_rate_max,caps->serial_data_bits, caps->serial_parity==RIG_PARITY_NONE?'N': Index: listrigs.c =================================================================== RCS file: /cvsroot/hamlib/hamlib/tests/listrigs.c,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -r1.1 -r1.2 *** listrigs.c 2000/10/08 21:20:44 1.1 --- listrigs.c 2000/11/01 23:27:26 1.2 *************** *** 104,107 **** --- 104,112 ---- exit(3); } + status = rig_load_backend("aor"); + if (status != RIG_OK ) { + printf("rig_load_backend: aor error = %s \n", rigerror(status)); + exit(3); + } printf("Rig#\tMfg\tModel \tVers.\tStatus\tType\n"); |