[Hamlib-cvs-digest] CVS: hamlib/include/hamlib rig.h,1.6,1.7
Library to control radio transceivers and receivers
Brought to you by:
n0nb
From: Stephane F. <f4...@us...> - 2000-10-29 16:29:14
|
Update of /cvsroot/hamlib/hamlib/include/hamlib In directory slayer.i.sourceforge.net:/tmp/cvs-serv24276 Modified Files: rig.h Log Message: * misc cleanup Index: rig.h =================================================================== RCS file: /cvsroot/hamlib/hamlib/include/hamlib/rig.h,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** rig.h 2000/10/23 19:53:03 1.6 --- rig.h 2000/10/29 16:29:07 1.7 *************** *** 283,286 **** --- 283,287 ---- /* Do not use an enum since this will be used w/ rig_mode_t bit fields */ + #define RIG_MODE_NONE 0 #define RIG_MODE_AM (1<<0) #define RIG_MODE_CW (1<<1) *************** *** 611,616 **** extern int rig_get_ts(RIG *rig, unsigned long *ts); /* get tuning step */ - extern int rig_set_power(RIG *rig, float power); - extern int rig_get_power(RIG *rig, float *power); extern int rig_power2mW(RIG *rig, unsigned int *mwpower, float power, freq_t freq, rmode_t mode); extern int rig_mW2power(RIG *rig, float *power, unsigned int mwpower, freq_t freq, rmode_t mode); --- 612,615 ---- |