Michael Black
0a5b00c58d
New backend for FT-991
...
Also, change from using malloc to calloc in Yaesu backend.
2015-04-13 21:02:41 -05:00
David Fannin
699db23393
Submission for new backend model (134) for Yaesu FT-DX1200
...
All,
attached is a git patch for adding the Yaesu FT-DX1200 radio to the yaesu
backend as model 134. I am humbly asking for this to be included in
hamlib.
I've tested this using a 1200 radio, using both rigctl and cqrlog. The
ft-dx1200 cat commands are a mix of ft-950 and ft-2000 radio commands, so
neither of those models will work correctly with the 1200. It was tested
and build against the master branch from github on 4/3/2015, on an Ubuntu
14.04 server.
Let me know if you have any questions.
thanks
Dave
kk6df at arrl.net
From cc0351fddc245b6223ae6c21dc6e29c5422fc822 Mon Sep 17 00:00:00 2001
From: David Fannin <dfannin@sushisoft.com>
Date: Sat, 4 Apr 2015 09:23:49 -0700
Subject: [PATCH 1/2] adding yaesu ft-dx1200 model to yaesu backend
2015-04-04 13:19:19 -05:00
Alexander Schultze
895639c48f
easycomm: include a new EasyComm3 to support move speed and infostring
2015-04-01 21:05:21 +02:00
Stephane Fillod
c02e03f77e
New Icom ID-5100 model
2015-01-25 13:42:08 +01:00
Stephane Fillod
c61fe45b29
New IC-M710 and IC-M802 backends
2015-01-24 18:46:34 +01:00
Stephane Fillod
80f921954b
New IC-M700PRO backend
...
Backend for the ICOM IC-M700PRO marine transceiver.
2015-01-21 23:57:08 +01:00
Michael Black
716fc0fcab
New XG3 backend
...
Backend for the Elecraft XG3 signal generator.
2015-01-08 17:45:29 -06:00
Bill Somerville
6165bf9eda
Add support for the Kenwood TS-590SG
...
This rig is largely similar to the TS-590S but for some reason Kenwood
have changed most the EX command ids. Even though hamlib makes little
use of the EX command, it probably will need to for future
functionality implemenattion. Hence the new rig id.
2014-11-04 16:23:39 +00:00
Bill Somerville
19f131b1b8
Remove redundant RIG_PTT_SERIAL_CAT enum from ptt_t
...
The Icom IC-7100 back end added this enum instead of using the extant
RIG_PTT_RIG enum. Also the rig_get_ptt() implementation didn't handle
it and errored out.
Note: RIG_PTT_SERIAL_CAT was added in commit
e9ee671149
- N0NB
2014-10-09 10:25:38 -05:00
Nate Bargmann
741fd46947
Initial crack at RT-21 rotor backend
...
Even though the Green Heron RT-21 rotor controller is billed as being
RotorEZ compatible, it returns its value as 'XXX;' instead of ';XXX'.
As a new backend model is being written anyway, the backend query's the
controller to return the real value which is 'XXX.Y;'.
2014-09-08 21:18:47 -05:00
Ricky Elrod
0f600af80a
Add a tag name to hamlib_port_t.
...
I am making a Haskell binding to hamlib and this anonymous struct was
creating some issues for me. I am not a C-coder by day, but I think this
is harmless to add here.
Signed-off-by: Ricky Elrod <ricky@elrod.me>
2014-08-14 11:22:39 -04:00
Ladislav Vaiz
df114a64bc
Initial support for FUNcube Dongle Pro
...
I wrote first support for new version of FUNcube Dongle. Differences
against original FCD are changed USB PID and wider frequency range.
73 Lada, OK1ZIA
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2014-04-27 10:36:59 -05:00
Steve Conklin
e17ab36bc8
Add support for Flex6K radios
...
Signed-off-by: Steve Conklin <steve@conklinhouse.com>
2014-01-15 14:03:50 -06:00
mvcstroomer
e9ee671149
Add Icom IC-7100 support.
...
From Martin, CT1IQI:
"Several programs under Linux rely on Hamlib for control. I wanted to
try WSJT-X (digital modes like JT65) and found that my new IC-7100 was
not yet supported, also after having compiled the current git version of
Hamlib and having compiled WSJT-X against that.
So I added a IC-7100 by taking the ic-7200 and 7420 rig files as
example, be it without going (yet) through all of the very many commands
the ic-7100 supports.
This produced the situation where there was communication, e.g. setting
and reading frequencies, but the PTT control did not work. I debugged
that to actually the lack of a PTT mode in Hamlib that uses serial and
CAT at the same time; currently PTT per 'serial' seems equivalent to
toggling certain RS232 pins but not to any serial command level. So I
added a RIG_PTT_SERIAL_CAT mode for PTT control. Now the wsjt-x program
works nicely with the ic-7100 and controls both frequency and PTT via
the single USB cable."
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-10-25 08:40:36 -05:00
Hans Van Ingelgom
840ef67a85
Added Peaberry V1 and V2 models
...
On the Peaberry forum, we have a thread with some hamlib patches for the
Peaberry SDR (a softrock-like transceiver). Both version 1 and version 2
have been implemented and tested.
There are two patches: the first one, made by me (ON8VQ) adds support
for the two radio's, and the second one, made by R2AEE, fixes the tuning
(using PICUSB commands instead of AVRUSB).
The patches are available here:
http://ae9rb.com/forum/viewtopic.php?f=4&t=166
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-09-20 14:34:21 -05:00
Nate Bargmann
36f5f4cf6a
Revert to previous handling of getaddrinfo()
...
Use the system gettaddrinfo function when possible as before. Tested on
GNU, Cygwin, MinGW on Linux, and MinGW on Windows. Under MinGW the
replacement getaddrinfo is used. Perhaps this is an area for
investigation to be certain MinGW really doesn't supply getaddrinfo.
This reverts some of the patches from Remi Chateauneu in commit
60019c9
. This fixes build issues encountered building the Windows
binary daily snapshots.
Enabled static library build by default at configure time.
Fixed pthread library linking for the ars backend on MinGW.
2013-09-15 19:47:49 -05:00
Remi Chateauneu
60019c9444
Monolitic libraries.
2013-09-08 14:56:28 +01:00
Jonny public
dd5a8f58b6
ether6: New rotor backend from Jonny, DG9OAA
...
I have now written a new rotor control based on an Atmel ethernet board
and used with me. It works well so far.
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-07-20 08:02:12 -05:00
Nate Bargmann
8c2eee91cc
rig.h: Replace rig_func_e with CPP macros
...
The C standard dictates that an enum constant is a 32 bit signed
integer. Setting a constant's bit 31 created a negative value that on
amd64 had the upper 32 bits set as well when assigned to the
misc.c:func_str structure. This caused misc.c:rig_strfunc() to fail its
comparison for RIG_FUNC_XIT on amd64 (x86_64). To use bit 31 as an
unsigned long, preprocessor macros have been used instead as a 'const
unsigned long' which cannot be used to initialize the func_str.func
members. TNX KA6MAL, AC6SL. - N0NB
Other minor formatting edits.
2013-01-31 18:00:50 -06:00
Nate Bargmann
f82184cbf5
Add RIT and XIT as rig_set/get_func() members
...
In response to a long standing request from Tor, N4OGW, and others, RIT
and XIT are added as members for the rig_set/get_func() members.
"RIT"/"XIT" have been added as tokens. The dummy rig backend and
testrig.c have been updated for these new functions.
Applications should test a backend with the rig_has_set/get_func() and
test for RIG_FUNC_RIT or RIG_FUNC_XIT. A non-zero result indicates
these functions are implemented by a given rig backend. It will take
some time for all backends to migrate to this new implementation. Once
implemented, RIT or XIT should be set to '0' to 'clear' the value
without deactivating the rig's RIT/XIT function. The dummy/dummy.c file
can be used as a simple guide for backend authors implementing this
behavior.
2013-01-15 12:47:47 -06:00
Volker Schroer
871d8a44a2
Extension of si570avrusb for SDR Kit of Funkamateur
...
Adds rig model 2515, Funkamateur Sdr
Signed-off-by: Volker Schroer <dl1ksv@gmx.de>
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2012-11-25 13:47:46 -06:00
Kamal Mostafa
3466512dbd
Fix spelling errors
2012-08-21 19:54:50 -07:00
Nate Bargmann
417cb98d2e
Tidy up rigctl --list output
...
Implemented hash table to temporarily store and sort the rig models by ID
to print the --list by model numbers. Hash is implemented using
uthash.h, see http://uthash.sourceforge.net/
Suppressed rig backend register output by setting rig_debug_level to 0
for list output.
Removed riglist definition of RPC backend.
2012-02-13 15:28:42 -06:00
Nate Bargmann
c3bc66eafc
Tidy up rotctl --list output
...
Implemented hash table to temporarily store and sort the rot models by ID
to print the --list by model numbers. Hash is implemented using
uthash.h, see http://uthash.sourceforge.net/
Suppressed rot backend register output by setting rig_debug_level to 0
for list output.
Removed rotlist definition of RPC backend.
2012-02-13 15:28:03 -06:00
Nate Bargmann
8c145cfc6b
Merge branch 'API_3'
...
Conflicts:
.gitignore
Makefile.am
NEWS
c++/Makefile.am
configure.ac
hamlib.spec.in
rpcrig/rpcrig.x
rpcrig/rpcrig_backend.c
rpcrig/rpcrig_backend.h
rpcrig/rpcrig_proc.c
rpcrig/rpcrigd.c
rpcrot/rpcrot.x
rpcrot/rpcrot_backend.c
rpcrot/rpcrot_backend.h
rpcrot/rpcrot_proc.c
rpcrot/rpcrotd.c
src/Makefile.am
tests/rigctl.1
tests/rotctl.1
2012-02-03 15:03:39 -06:00
Stephane Fillod
32a4066050
add DttSP control through UDP interface
2012-01-30 23:22:32 +01:00
Stephane Fillod
46033db165
CM108 GPIO PTT: do not break ABI
...
Move around the ptt_bitnum field in the union of hamlib_port_t.
Increase Hamlib frontend revision.
2012-01-11 23:28:01 +01:00
Frank Goenninger
f6ea9f1246
Add ADAT ADT-200A backend
...
Signed-off-by: Stephane Fillod <fillods@users.sf.net>
2012-01-11 23:16:41 +01:00
Andrew Errington
1a77ef9eb9
Initial support for CM108 GPIO contorl of PTT
...
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2012-01-11 06:16:51 -06:00
Stephane Fillod
7bf119716b
add HiQSDR
2012-01-06 09:40:04 +01:00
Stephane Fillod
da80137819
Add support for RIG_PORT_UDP_NETWORK
...
Also some copyright year update,
and default serial device on MacOSX
2012-01-06 09:28:24 +01:00
Stephane Fillod
fccb7769b2
add TM-D710 and TM-V71 in kenwood ID list
2011-12-23 00:32:25 +01:00
Charles Suprin
b6e9818dea
Add D710 to riglist.
2011-12-11 11:57:23 -05:00
Stephane Fillod
6699942722
add IC-RX7
2011-09-04 15:47:44 +02:00
Stephane Fillod
eee4feb71d
add Tentec 599 Eagle
2011-09-01 22:12:25 +02:00
Nate Bargmann
2fd02a9ade
Update LGPL header in include header files.
...
TNX to Lucian Laga, YO6PLB, for the notification.
2011-08-22 21:38:35 -05:00
Stephane Fillod
be74cf0f54
add rotator Celestron/Orion Teletrack Az-G telescope mount
2011-08-21 23:30:41 +02:00
Stephane Fillod
23c28e84e8
Kill RPC backends and rpc.rigd/rpc.rotd
2011-08-21 13:23:01 +02:00
Stephane Fillod
421909bad2
Let set_ptt() select source, either TX mic or TX data
2011-07-20 00:09:50 +02:00
Øystein Hårberg
e53bfe96b8
New TS-7400 based rotor backend
...
From Øystein Hårberg, LA7LKA, a backend for a rotor based on the TS-7400
embedded ARM board running Linux from http://www.embeddedarm.com/
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2011-07-10 21:20:28 -05:00
Stephane Fillod
6de38acb6d
add IC-9100 and IC-7410
2011-06-12 18:03:10 +02:00
Stephane Fillod
a94f6cfee2
Add skeleton for TH-D72A
2011-05-26 23:21:15 +02:00
Stephane Fillod
b60c28894a
Add IF-100 rotor support
2011-05-26 22:07:26 +02:00
Stephane Fillod
01db7a309f
Add IC-R9500
2011-03-28 18:56:05 +02:00
Stephane Fillod
544fc515bc
Add SifFox Transfox SDR
2011-03-26 15:45:51 +01:00
Nate Bargmann, N0NB
db27b38041
Add Vertex Standard VX-1700 transceiver support
...
From Mikhail Kshevetskiy <mikhail.kshevetskiy@gmail.com>
vx-1700 notes:
==============
* the only possible way to switch from VFO_A to VFO_MEM is a
switching to configured memory channel.
* vfo_op(UP/DOWN) in memory mode switch channel UP/DOWN
correspondingly
* set_mem() in VFO mode do not change memory channel, but only
remember passed value. Thus we may set non-configured memory
channel number for future use in vfo_op(OP_FROM_VFO).
* get_mem() in VFO mode returns last used memory channel value.
It may return non-configured memory channel number passed to
set_mem() previously.
WARNING: VX-1700 CAT Manual have bugs, see comments in code.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3052 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-16 23:49:58 +00:00
Stéphane Fillod, F8CFE
01e2396ead
- revert creation of RIG_MODE_WAM and RIG_MODE_SFM
...
- sr2200:
- fix filter width of WFM
- prevent symbol littering
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3044 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-08 22:21:11 +00:00
Nate Bargmann, N0NB
91e7f2ec14
Prepare FiFi-SDR backend refactoring
...
Patch from Rolf Meeser <rolfm_9dq@yahoo.de>
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3036 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-04 23:19:47 +00:00
Nate Bargmann, N0NB
cf6443e3c4
Doxygen tweaks
...
New CSS file, added Doxygen logo to footer, tweaked hamlib.cfg.in for
Doxygen configuration. Minor edits to index.doxygen.
Minor Doxygen edits to rotlist.h and network.c
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3035 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-03 02:52:17 +00:00
Nate Bargmann, N0NB
6742478713
Updated SPID patch from Norvald H. Ryeng
...
Rot2Prog is now 901, Rot1Prog 902 per feedback from Magne Mæhre LA1BFA.
Minor update of spid.txt to correct a typo and clarify a point in
the documentation.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3028 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-01-29 19:58:21 +00:00
Nate Bargmann, N0NB
dd7e4a17ae
SPID driver extension from Norvald H. Ryeng
...
This patch extends the SPID driver with support for the Rot1Prog az
rotator controller. It also updates protocol documentation. The driver
has been tested with Rot1Prog and with Rot2Prog for regression.
Submitted by Norvald H. Ryeng <ryeng@users.sourceforge.net). Tracker
info: SPID Rot1Prog rotator driver - ID: 3167384
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3027 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-01-29 14:31:11 +00:00
Nate Bargmann, N0NB
53dad4d957
FUNcube interface added by Stefano Speretta
...
Added FUNcube interface to Hamlib. This is a basic FUNcube interface:
at the moment only frequency set/readout is supported. From Stefano
Speretta <s.speretta@isispace.nl>.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3026 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-01-28 00:40:45 +00:00
Nate Bargmann, N0NB
bd20ccd356
AOR SR2200 backend added by Stefano Speretta
...
New backend, SR2200, heavily derived from AR8200 backend. From Stefano
Speretta <s.speretta@isispace.nl>.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3025 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-01-28 00:32:55 +00:00
Nate Bargmann, N0NB
73f1d6cb92
Patch from SF user rolfm adding support for the FiFi-SDR, an Si570
...
based receiver. More info at http://o28.sischa.net/fifisdr/trac (in
German only). Posted via tracker ID: 3144418
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3016 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-12-27 15:20:29 +00:00
Stéphane Fillod, F8CFE
54c36e91d6
add F1TE Tracker
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3007 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-11-29 21:42:34 +00:00
Stéphane Fillod, F8CFE
7afb716e66
add KTH-SDR Si570 kit
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3005 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-11-03 20:52:25 +00:00
Stéphane Fillod, F8CFE
ee55f04dd1
add TS-590S
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3000 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-10-28 07:28:12 +00:00
Stéphane Fillod, F8CFE
1d8e24003a
added TRM8060
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2997 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-10-26 20:47:35 +00:00
Stéphane Fillod, F8CFE
9de8e3f1d2
Add Mark/Space serial parity
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2996 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-10-26 19:31:09 +00:00
Stéphane Fillod, F8CFE
aa24ca7ab6
clone FT-DX5000 after FT-2000
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2992 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-10-06 07:25:14 +00:00
Nate Bargmann, N0NB
45b72a0e31
Add DF9GR's ERC model to rotorez backend. Implemented custom get_position for ERC,
...
custom dcu1_rot_stop() for DCU-1/ERC, and overloaded rotorez_rot_stop() as .reset
for DCU-1/ERC.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2960 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-08-23 20:09:30 +00:00
Stéphane Fillod, F8CFE
f921ffec03
Add TenTec RX-331, contributed by Berndt, VK5ABN
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2947 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-07-01 20:28:00 +00:00
Stéphane Fillod, F8CFE
31bb15fb01
add Skanti TRP 8255 S R
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2944 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-06-10 08:20:59 +00:00
Stéphane Fillod, F8CFE
a6e646cfa8
renamed ARS-RCI AZ&EL, and introduce new backend ARS-RCI azimuth-only
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2937 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-31 21:15:58 +00:00
Stéphane Fillod, F8CFE
cf2ad81282
added FT-980, part of patch from Wolfgang Buesser
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2916 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-17 22:23:38 +00:00
Stéphane Fillod, F8CFE
a76e8fc6bd
added R&S EB200
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2904 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-03 21:47:19 +00:00
Stéphane Fillod, F8CFE
30f7124435
declare M2 and ARS backends
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2894 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-04-25 17:24:25 +00:00
Stéphane Fillod, F8CFE
453995e7c0
fix segfault and allow mode listing in rigctl
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2865 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-04-05 10:01:09 +00:00
Stéphane Fillod, F8CFE
2c88f3ef34
added Ten-Tenc Delta II
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2863 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-04-05 09:33:23 +00:00
Stéphane Fillod, F8CFE
bd866ad27e
added support for RA3702
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2849 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-06 17:29:05 +00:00
Stéphane Fillod, F8CFE
f411c3fae0
allow tones and func calls to be targetable
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2845 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-05 18:48:40 +00:00
Nate Bargmann, N0NB
786e53ce50
Expanded ROT_TYPE definitions in rotator.h
...
Set dummy rotor to ROT_TYPE_AZEL
Set rotorez rotor type to ROT_TYPE_AZ and added get_info()
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2830 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-02-14 22:06:40 +00:00
Larry Gadallah, VE6VQ
81e4e079c7
Added AOR AR7030 Plus
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2788 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-12-22 07:04:49 +00:00
Stéphane Fillod, F8CFE
23edf82624
Add IC-7600
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2784 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-12-12 16:19:40 +00:00
Stéphane Fillod, F8CFE
5e4a713a34
added ROT_MODEL_GS232B
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2777 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-12-04 09:09:27 +00:00
Stéphane Fillod, F8CFE
894ba44431
new RIG_MODEL_ARMSTRONG
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2739 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-10-27 22:43:24 +00:00
Stéphane Fillod, F8CFE
79cf3dc351
IC7700, PM-SDR
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2734 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-10-17 10:42:08 +00:00
Stéphane Fillod, F8CFE
c10e0df19c
new GS232 controller (not A or B)
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2731 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-09-22 10:07:49 +00:00
Stéphane Fillod, F8CFE
b636a3f6ac
allow check of vendor name and product string when looking for USB device
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2727 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-09-14 07:32:36 +00:00
Stéphane Fillod, F8CFE
7cc07dbddf
PCR1500 & PCR2500
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2713 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-08-02 15:24:09 +00:00
Stéphane Fillod, F8CFE
4776b181f6
Support for the SPID Rot2Prog rotator controller, by Norvald H. Ryeng, LA6YKA
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2699 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-06-01 10:28:55 +00:00
Stéphane Fillod, F8CFE
629a1ed884
BC898 cloned after BC895
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2682 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-03-23 22:26:56 +00:00
Stéphane Fillod, F8CFE
28b80e4931
add IC-7200 and R&S ESMC
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2672 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-03-05 15:45:28 +00:00
Stéphane Fillod, F8CFE
0932f8a7b9
fix static build and backend loading for mingw32
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2671 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-03-05 14:14:33 +00:00
Stéphane Fillod, F8CFE
976540de77
set/get_split_{freq,mode} assisted by frontend
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2655 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 14:14:31 +00:00
Alessandro Zummo, IZ1PRB
bb6cf68ad2
implemented set/get_ext_param (voice, fine, xit, rit). enabled on ts450 and
...
ts850
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2620 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-06 14:15:12 +00:00
Stéphane Fillod, F8CFE
faf5c7e336
added Kenwood TRC-80
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2604 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-29 22:54:41 +00:00
Stéphane Fillod, F8CFE
3419987f6b
better documentation of enum rig_errcode_e
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2596 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-25 16:23:06 +00:00
Stéphane Fillod, F8CFE
8dd158daa6
Heathkit HD 1780 Intellirotor backend, by Rob Frohne, KL7NA
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2590 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-20 19:44:04 +00:00
Terry Embry, KJ4EED
19da025135
removed NFM NFM
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2579 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-11 17:42:29 +00:00
Stéphane Fillod, F8CFE
c13422e1f1
Add Winradio G305/G315
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2575 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-11 13:16:54 +00:00
Nate Bargmann, N0NB
86badd1aaf
Documentation updates.
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2571 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-09 23:03:37 +00:00
Terry Embry, KJ4EED
76b48e3d9f
Added RIG_MODE_NFM, RIG_MODE_NAM
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2547 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-03 14:08:00 +00:00
Diane Bruce, VA3DB
e9aa6fe546
- Extra comma on RIG_STATUS_BUGGY can cause a compiler error.
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2540 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-01 17:07:09 +00:00
Terry Embry, KJ4EED
9746bdd342
Added RIG_LEVEL_BKIN_DLYMS - CW Breakin delay in milliseconds to rig_level_e enum
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2530 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-26 23:57:15 +00:00
Terry Embry, KJ4EED
6e47295527
Added RIG_METER_VDD
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2522 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-24 20:12:11 +00:00
Stéphane Fillod, F8CFE
1fb8820946
Add FT-2000 and FTDX-9000
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2505 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-14 20:02:03 +00:00
Stéphane Fillod, F8CFE
c62b141599
RIG_ANT_5
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2504 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-14 19:26:35 +00:00
Terry Embry, KJ4EED
8f350baa93
Added RIG_AGC_AUTO enum
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2478 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-26 16:20:20 +00:00
Stéphane Fillod, F8CFE
55fb8fa3f3
added SoftRock Si570
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2458 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-02 12:45:04 +00:00
Stéphane Fillod, F8CFE
883193fe12
added RIG_METER_PO
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2452 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-01 20:35:16 +00:00
Stéphane Fillod, F8CFE
c365417595
kill microtune backend
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2440 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-31 22:20:40 +00:00
Stéphane Fillod, F8CFE
99270142dc
added PcRotor in a new kit rotor group
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2434 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-31 07:45:17 +00:00
Stéphane Fillod, F8CFE
f541b221fe
new netrigctl/netrotctl protocol with return value
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2428 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-27 22:23:36 +00:00
Thomas Beierlein, DL1JBE
cdab2cce53
Dropped RIG_STATUS_NEW from enum of possible backend states in rig.h.
...
Mapped all RIG_STATUS_NEW requests from existing applications to RIG_STATUS_UNTESTED for backward compatibility.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2418 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-25 11:36:02 +00:00
Stéphane Fillod, F8CFE
6acd8e8d26
Newer Uniden models
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2407 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-06 18:16:35 +00:00
Stéphane Fillod, F8CFE
b8fe3df910
new backend ala rpcrig/rpcrot, but using rigctld/rotctld and simpler protocol
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2396 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-09-21 19:34:16 +00:00
Stéphane Fillod, F8CFE
57dca4a25a
new backend for the Elekraft K3
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2378 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-09-01 19:01:13 +00:00
Stéphane Fillod, F8CFE
b19833a56e
copyright fix
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2362 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-23 14:14:18 +00:00
Stéphane Fillod, F8CFE
f6a7e6628c
added GS-232A rotator controller
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2361 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-23 14:14:17 +00:00
Stéphane Fillod, F8CFE
1f1a363dc6
new RIG_MTYPE_BAND
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2344 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-04 21:15:17 +00:00
Stéphane Fillod, F8CFE
0f5011a9f1
More Uniden and Radio Shack models
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2339 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-04 14:10:23 +00:00
Stéphane Fillod, F8CFE
6e4ed42cca
allow rig_lookup_mem_caps() to retrieve a union of all the mem_caps sets
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2336 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-01 12:32:43 +00:00
Stéphane Fillod, F8CFE
b86b948f93
harmless arg name change in order to ease swig work
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2335 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-05-01 12:19:57 +00:00
Stéphane Fillod, F8CFE
a0635dd7b2
* added RIG_MTYPE_PRIO
...
* added rig_lookup_mem_caps/rig_mem_count and rig_strmtype/rig_parse_mtype
* misc change to RIG_VFO* for Swig to make them available in the bindings
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2329 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-04-27 09:46:35 +00:00
Stéphane Fillod, F8CFE
20e2fbf8ec
moved miniVNA to kit subdir
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2321 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-04-11 18:03:53 +00:00
Stéphane Fillod, F8CFE
4646303c70
added FT950
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2315 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-04-11 12:59:31 +00:00
Thierry Leconte, F4DWV
0a44db2145
add miniVNA backend
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2306 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-03-05 20:32:23 +00:00
Robert Steinhäußer, DL1NC
d2307eacde
added missing virtual d'tor for RigException
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2301 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-02-18 18:18:54 +00:00
Stéphane Fillod, F8CFE
9e8444edea
remove auto-load of gnuradio, added Omni-VII
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2281 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-01-07 21:10:10 +00:00
Nate Bargmann, N0NB
ec79e3cfb3
Documentation edits and additions for doxygen generated documentation.
...
Add missing enum to string definitions in settings.c
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2257 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-11-26 20:54:12 +00:00
Nate Bargmann, N0NB
62bd7d5d88
New radio model, FT-450, including support for the new ASCII CAT command
...
syntax now employed by Yaesu.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2247 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-11-22 04:48:43 +00:00
Stéphane Fillod, F8CFE
42de58b50e
new RIG_MODEL_DTTSP
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2229 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-11-07 18:38:32 +00:00
Nate Bargmann, N0NB
ef7659e1e0
Makefile.am and rig.h minor edits to the comments to (hopefully) improve
...
readability. configure.ac added AM_PROG_CC_C_O macro to quiet error
message regarding rigmem.c in tests/Makefile.am from autoconf 2.61 on
Debian Stable.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2225 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-11-01 01:13:30 +00:00
Stéphane Fillod, F8CFE
4fb86ade33
new model ELEKTOR507 (SDR USB)
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2216 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-09-18 19:33:00 +00:00
Nate Bargmann, N0NB
e904578f5a
Bug fixes and slope tuning support for the TS-850.
...
Thanks to Rob Frohne, KL7NA
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2205 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-08-18 12:55:46 +00:00
Stéphane Fillod, F8CFE
3899c83f21
cleanup and initial __BORLANDC__ support
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2201 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-05-21 21:41:59 +00:00
Spaceman Spiff
69d32e8f0d
Several Bug fixes for extra parameter code and documentation added
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2190 7ae35d74-ebe9-4afe-98af-79ac388436b8
2007-02-28 08:52:49 +00:00
Nate Bargmann, N0NB
c42e5df514
20061126:
...
Update:
Add G313 to riglist.h. Thanks to Andrea Russo for
pointing this out.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2164 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-11-27 00:23:09 +00:00
Nate Bargmann, N0NB
dc39418dc5
20061107:
...
New:
icom/ic7000.c
Update:
Various Icom updates from AD7AI
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2159 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-11-07 12:21:39 +00:00
Martin Ewing, AA6E
c830f57da2
SM6PPS mods for AOR 5000a
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2155 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-11-02 15:19:58 +00:00
Martin Ewing, AA6E
a5ab5154d4
documentation
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2152 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-10-28 03:49:46 +00:00
Martin Ewing, AA6E
aad1c51d0b
fix enum documentation
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2149 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-10-17 01:23:38 +00:00
Martin Ewing, AA6E
f6ddc3edad
documentation
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2145 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-10-15 00:27:52 +00:00
Martin Ewing, AA6E
7e22304680
add comments
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2141 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-10-13 12:02:36 +00:00
Martin Ewing, AA6E
665a861d0e
minor - add doxygen info for enums
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2138 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-10-12 16:41:22 +00:00
Nate Bargmann, N0NB
7f5a359c0e
20060927:
...
Update:
Update to rig.h from AD7AI
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2117 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-09-27 11:38:25 +00:00
Nate Bargmann, N0NB
e2110f298e
20060922:
...
Update:
Applied July 30, 2006 patches from Kent Hill, AD7AI
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2114 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-09-22 14:31:19 +00:00
Nate Bargmann, N0NB
c85dcd5105
20060718:
...
Update:
Committing patches received from AD7AI for several Icom
models including IC-746, IC-756, and IC-7800.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2111 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-07-18 22:51:43 +00:00
Thomas Beierlein, DL1JBE
810b090086
Must correspond to the following definition of 'setting_t'
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2097 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-03-18 07:41:13 +00:00
Stéphane Fillod, F8CFE
ee60b312e0
values passed to rig_set_mem_all are supposed to be constant
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2061 7ae35d74-ebe9-4afe-98af-79ac388436b8
2006-01-15 14:23:16 +00:00
Stéphane Fillod, F8CFE
e5cfd4a43b
added IC7000 id
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2052 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-11-17 22:17:38 +00:00
Stéphane Fillod, F8CFE
8e2957c384
* renamed SDR RIG_MODEL_USRP model as RIG_MODEL_USRP_G
...
* added DWT, SDR-1000RFE, USRP0, USRP
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2047 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-11-01 23:05:16 +00:00
Stéphane Fillod, F8CFE
36c62542ae
added usb port type support
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2046 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-11-01 23:02:02 +00:00
Stéphane Fillod, F8CFE
579823eb53
extend API to support save/load memory at once
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2025 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-20 14:44:04 +00:00
Stéphane Fillod, F8CFE
a2281a034e
added AR8600
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2021 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-20 13:27:26 +00:00
Stéphane Fillod, F8CFE
f79eaeccda
flexible debug reporting
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1997 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-06 21:27:28 +00:00
Stéphane Fillod, F8CFE
8c5dc8e225
fix targetable all
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1984 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-03 22:33:08 +00:00
Stéphane Fillod, F8CFE
be74cf3a7c
disable unexistant 'radioshack' autoload for now
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1967 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-03 19:19:00 +00:00
Stéphane Fillod, F8CFE
e3e4721200
new racal model
...
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1966 7ae35d74-ebe9-4afe-98af-79ac388436b8
2005-04-03 19:15:43 +00:00