Update of /cvsroot/hamlib/hamlib/tests
In directory usw-pr-cvs1:/tmp/cvs-serv26609
Modified Files:
dumpcaps.c
Log Message:
print more caps
Index: dumpcaps.c
===================================================================
RCS file: /cvsroot/hamlib/hamlib/tests/dumpcaps.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -r1.30 -r1.31
*** dumpcaps.c 2002/01/27 23:54:58 1.30
--- dumpcaps.c 2002/01/29 22:04:30 1.31
***************
*** 309,312 ****
--- 309,318 ----
* TODO: keep me up-to-date with API call list!
*/
+ printf("Has init:\t%c\n",caps->rig_init!=NULL?'Y':'N');
+ printf("Has cleanup:\t%c\n",caps->rig_cleanup!=NULL?'Y':'N');
+ printf("Has open:\t%c\n",caps->rig_open!=NULL?'Y':'N');
+ printf("Has close:\t%c\n",caps->rig_close!=NULL?'Y':'N');
+ printf("Can set conf:\t%c\n",caps->set_conf!=NULL?'Y':'N');
+ printf("Can get conf:\t%c\n",caps->get_conf!=NULL?'Y':'N');
printf("Can set frequency:\t%c\n",caps->set_freq!=NULL?'Y':'N');
printf("Can get frequency:\t%c\n",caps->get_freq!=NULL?'Y':'N');
***************
*** 344,347 ****
--- 350,356 ----
printf("Can set power stat:\t%c\n",caps->set_powerstat!=NULL?'Y':'N');
printf("Can get power stat:\t%c\n",caps->get_powerstat!=NULL?'Y':'N');
+ printf("Can get reset:\t%c\n",caps->reset!=NULL?'Y':'N');
+ printf("Can get ant:\t%c\n",caps->get_ant!=NULL?'Y':'N');
+ printf("Can set ant:\t%c\n",caps->set_ant!=NULL?'Y':'N');
printf("Can set transceive:\t%c\n",caps->set_trn!=NULL?'Y':'N');
printf("Can get transceive:\t%c\n",caps->get_trn!=NULL?'Y':'N');
***************
*** 356,359 ****
--- 365,369 ----
printf("Can send Morse:\t%c\n",caps->send_morse!=NULL?'Y':'N');
printf("Can decode events:\t%c\n",caps->decode_event!=NULL?'Y':'N');
+ printf("Can set bank:\t%c\n",caps->set_bank!=NULL?'Y':'N');
printf("Can set mem:\t%c\n",caps->set_mem!=NULL?'Y':'N');
printf("Can get mem:\t%c\n",caps->get_mem!=NULL?'Y':'N');
***************
*** 361,364 ****
--- 371,375 ----
printf("Can get channel:\t%c\n",caps->get_channel!=NULL?'Y':'N');
printf("Can ctl mem/vfo:\t%c\n",caps->vfo_op!=NULL?'Y':'N');
+ printf("Can scan:\t%c\n",caps->scan!=NULL?'Y':'N');
printf("Can get info:\t%c\n",caps->get_info!=NULL?'Y':'N');
|