Hamlib/tests
Bill Somerville 8465a76fd2
Ensure compilation works with a pre C11 compiler
2019-06-16 23:14:46 +01:00
..
config
rigctl.test
testbcd.test
testfreq.test
testloc.test
Makefile.am merge master 2019-01-14 09:36:35 -06:00
README
dumpcaps.c Ensure compilation works with a pre C11 compiler 2019-06-16 23:14:46 +01:00
dumpcaps_rot.c
dumpmem.c
example.c
listrigs.c
memcsv.c Change rmode_t to uint64_t and remove unneeded casts 2018-12-22 23:56:30 -05:00
memload.c
memsave.c
rig_bench.c
rig_split_lst.awk
rigctl.c netrigctl can now do vfo mode -- has automatic detection of rigctld vfo mode 2019-02-05 12:05:51 -06:00
rigctl_parse.c Fix compile warning in rigctl_parse.c 2019-05-22 09:27:01 -05:00
rigctl_parse.h
rigctlcom.c astyle format of rigctlcom.c 2019-02-13 15:23:27 -06:00
rigctld.c netrigctl can now do vfo mode -- has automatic detection of rigctld vfo mode 2019-02-05 12:05:51 -06:00
rigmatrix.c
rigmatrix_head.html
rigmem.c
rigsmtr.c
rigswr.c
rotctl.c
rotctl_parse.c Fix compile warning in rotctl_parse.c 2019-05-22 11:15:30 -05:00
rotctl_parse.h
rotctld.c
sprintflst.c Add new levels: RFPOWER_METER, COMP_METER, VD_METER and ID_METER, supported at least by most of recent Icom rigs. Add level NOTCHF_RAW for manual notch frequency without specified unit for Icom rigs. Add level MONITOR_GAIN. Add functions DUAL_WATCH and DIVERSITY, supported now by K3/K3S. Fix VOXDELAY level commands for many Icom rigs. Add MONITOR_GAIN level for Icom rigs. Fix and add many K3 commands and add specific rig models for K3S, KX2 and KX3 -- they are very similar to K3, but have slight differences. Extend dump_caps output for rigctl: add complete details of ext levels and frequency ranges. Tests have been performed on IC-7000, IC-756ProIII, IC-7300, IC-7600 and K3. 2019-05-30 09:37:49 +03:00
sprintflst.h Add new levels: RFPOWER_METER, COMP_METER, VD_METER and ID_METER, supported at least by most of recent Icom rigs. Add level NOTCHF_RAW for manual notch frequency without specified unit for Icom rigs. Add level MONITOR_GAIN. Add functions DUAL_WATCH and DIVERSITY, supported now by K3/K3S. Fix VOXDELAY level commands for many Icom rigs. Add MONITOR_GAIN level for Icom rigs. Fix and add many K3 commands and add specific rig models for K3S, KX2 and KX3 -- they are very similar to K3, but have slight differences. Extend dump_caps output for rigctl: add complete details of ext levels and frequency ranges. Tests have been performed on IC-7000, IC-756ProIII, IC-7300, IC-7600 and K3. 2019-05-30 09:37:49 +03:00
testbcd.c
testctld.pl
testfreq.c
testloc.c
testrig.c
testrotctld.pl
testtrn.c
uthash.h

README

You will find in the tests/ subdirectory various programs to exercise
the Hamlib library.

Most of the time, you will have to make sure that the backend for
your rig is loaded by passing the model number of your rig by argument.
If you don't know the number, listrigs can give it to you,
"rigctl --list" will also output something like this:

    Rig#    Mfg           Model           Vers.
    1       Hamlib        Dummy           0.1
    105     Yaesu         FT-747GX        0.1
    210     Kenwood       TS-870S         0.1
    311     Icom          IC-706MkIIG     0.2
    1506    Winradio      WR-3500         0.6
    [etc.]

In any case, you are encouraged to check for correct initialization
by reading the source code, at the begining of the main().  Check also
that the program is setup for your rig path strncpy(my_rig->state.rig_path...

dumpcaps  - Output the caps contents of a rig
dumpmem   - Dump the memory contents of the rig
listrigs  - Condensed list of all the models supported by backends
rigmatrix - Output the HTML table of supported rigs, with .png files for freqs
            (Better call 'make rigmatrix.html' which builds the HTML table
            and additional information in sup-info subdirectory.)
testbcd   - Simple program to test BCD conversion, takes a number as arg.
testfreq  - Simple program to test Freq conversion, takes a number as arg.
testrig   - Sample program calling common API calls, uses rig_probe
testtrn   - Sample program using event notification (transceive mode)
rigctl    - Combined tool to execute any call of the API, see man page
rigmem    - Combined tool to load/save content of rig memory, see man page
rotctl    - Similar to 'rigctl' but for rotators, see man page
rigctld   - A simple daemon to process 'rigctl' commands received over a
            network socket.  Useful for scripting languages or remote access
            via an SSH tunnel (unsecure program).  See man page.
rotctld   - A simple daemon to process 'rotctl' commands received over a
            network socket.  Useful for scripting languages or remote access
            via an SSH tunnel (unsecure program).  See man page.
testctld.pl A Perl program to test 'rigctld' and provide some example code.