mirror of
https://github.com/Hamlib/Hamlib
synced 2026-08-13 17:32:05 -04:00
MinGW does not natively support the POSIX sleep() function so we have had an override that was a part of the GR_PWIN32 macro and included in the generated config.h file. When compiling for Windows on POSIX using MinGW, Autotools will detect sleep() and set HAVE_SLEEP which prevented the substitution from being included in the source. Adding a test for _WIN32 (set by MinGW's gcc) then caused a warning from src/network.c on POSIX about winsock2.h needing to be included before windows.h. As config.h needed to be included first, the solution to break out the substitution that includes windows.h into its own file. This patch provides that solution and allows the code to compile cleanly on POSIX, using MinGW on both POSIX and Windows, and on Cygwin. |
||
|---|---|---|
| .. | ||
| config | ||
| rigctl.test | ||
| testbcd.test | ||
| testfreq.test | ||
| testloc.test | ||
| dumpcaps.c | ||
| dumpcaps_rot.c | ||
| dumpmem.c | ||
| example.c | ||
| listrigs.c | ||
| Makefile.am | ||
| memcsv.c | ||
| memload.c | ||
| memsave.c | ||
| README | ||
| rig_bench.c | ||
| rig_split_lst.awk | ||
| rigctl.1 | ||
| rigctl.c | ||
| rigctl_parse.c | ||
| rigctl_parse.h | ||
| rigctld.8 | ||
| rigctld.c | ||
| rigmatrix.c | ||
| rigmatrix_head.html | ||
| rigmem.1 | ||
| rigmem.c | ||
| rigsmtr.1 | ||
| rigsmtr.c | ||
| rigswr.1 | ||
| rigswr.c | ||
| rotctl.1 | ||
| rotctl.c | ||
| rotctl_parse.c | ||
| rotctl_parse.h | ||
| rotctld.8 | ||
| rotctld.c | ||
| sprintflst.c | ||
| sprintflst.h | ||
| testbcd.c | ||
| testctld.pl | ||
| testfreq.c | ||
| testloc.c | ||
| testrig.c | ||
| testrotctld.pl | ||
| testtrn.c | ||
| uthash.h | ||
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.