Wykres commitów

445 Commity (fcbb9d6e13636e51d6df6eb92f69cfdf92649ef2)

Autor SHA1 Wiadomość Data
Bill Somerville 3f0ca34760 Implement retries for Yaesu "newcat" rigs 2014-10-18 20:23:47 +01:00
Bill Somerville 3ad5f0c653 Add retry mechanism for Yaesu "newcat" backend
After some  testing with an  FT-450 it is  apparent that Yaesu  use at
least some of the busy/invalid  CAT responses that Kenwood document in
their current CAT protocol. The  response received from the FT-450 was
a "?;" from occasional "IF;" commands. In the Kenwood World this means
that  the  command  cannot  be   processed,  this  could  mean  it  is
unrecognized  or it  could  be  a transient  condition  while the  rig
processor is busy. The Kenwood backend  has the ability to retry after
this and some other error responses.

Since the  Kenwood error  response codes are  unambigous in  the Yaesu
language this change implements a  similar protocol for Yaesu "newcat"
backends.  Each  backend may  choose how many  reties by  defining the
'retry' parameter in the rig capabilities structure.

Also cleaned up a lot of code duplication.
2014-10-18 20:23:46 +01:00
Bill Somerville ea49154813 Fix Yaesu FT1000MP and FT1000MP Mk V modes.
The get mode function was not taking account of the extra mode bit in
the IF passband status byte. Also the set mode function was not
supporting the full set of available rig modes.

Added tuning step and bandwidth data for the newly supported modes.
2014-02-15 15:36:24 +00:00
Bill Somerville 419dc8540f Fix Yaesu newcat backend set_tx_vfo issue.
The newcat Yaesu backend was using a toggle command to set the TX VFO
where an explicit set command is avaiable.

This fix corrects the function for the FT-2000(D) and the FT-DX5000.

There is still an issue with the FT-450D which as far as I can see has
no definitive way of setting which VFO will be used for TX.

Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-10-01 03:15:48 -05:00
Bill Somerville bf539f052b Patch to fix broken Yaesu backend with FT-2000(D)
Hi All,

attached is a patch to correct the Yaesu backend to stop it sending the
SH1; command to teh FT-2000(D) radios where it is illegal.

73
Bill
G4WJS.

commit 8e60a966de140c14fe506f958de92a8e1b738d2c
Author: Bill Somerville <bill@classdesign.com>
Date:   Fri Sep 20 02:10:58 2013 +0100

    Fix Yaesu backend using illegal command on FT-2000

    The FT-2000 doesn't support the SH1; command used by
    the get_mode/set_mode function. This was causing a
    "Protocol error" return when trying to get/set the mode
    of VFO B.

Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-09-19 22:08:42 -05:00
Nate Bargmann c39b51327b Revise test for MinGW with sleep()
Revise the preprocessor conditional test for MinGW variables.  Tested on
all of my MinGW installations.  The prior test was broken by MinGW 3.0
on Debian Unstable.
2013-09-19 21:59:42 -05:00
Ladislav Vaiz f632695131 Android build updates for monolithic build
Android is now built as a static library.

Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-09-19 07:25:08 -05:00
Nate Bargmann 332a04b7cd Clean up backend Makefile.am files
Moved all backend *.h files into the SOURCES primary as Automake
documentation states all source file types should be listed.  This
causes Automake to include *.h files in rebuild rules for the targets.

Removed the '-DIN_HAMLIB' assignment from the CFLAGS primary in each
backend and assigned it to AM_CPPFLAGS in configure.ac.  The effect is
the same and it simplifies the backend Makefile.am files.

Removed all commented lines.
2013-09-16 21:51:39 -05:00
Remi Chateauneu 60019c9444 Monolitic libraries. 2013-09-08 14:56:28 +01:00
Nate Bargmann 1fd85febee MinGW build: Fix sleep() substitution
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.
2013-07-29 12:38:22 -05:00
Ladislav Vaiz 6d4295af2c Add Android build support
Android makefile fragments are distributed as extra distribution files
by the GNU build system but are otherwise ignored.  The Android build
support is independent and does not rely on the GNU build system.

See android/README.android for more info.

Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2013-04-26 22:31:56 -05:00
Nate Bargmann 21e59a67eb vx1700.c: correct manufacturer name typo 2012-07-05 10:14:33 -05:00
Michal Demin de329c1ed7 Read eeprom value for digital mode from FT-857
From Michal:

"I have been playing a lot recently with PSK modes using fldigi. I have
noticed that the yaesu ft-857 backend doesn't distinguish between upper
and lower sideband digital mode (menu item 38).  This causes lot of
trouble on bands where USB is used (when QSY button is pressed in
fldigi, or when calculating the real QSO frequency).

With some use of undocumented CAT features and some research I have
put together small patch, that reads EEPROM data. When SW asks hamlib
what mode is being used, hamlib will also consider the
value from eeprom.

When changing the mode in the menu, new value will become available in
the EEPROM _after_ pressing the "FUNC" button.

Setting mode from SW is left untouched, as writing to EEPROM is
potentially dangerous (and I don't feel like destroying my rig, yet)"

Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2012-05-15 08:26:58 -05:00
Nate Bargmann 01ab10bf10 Include backend specific notes with 'make dist'
(cherry picked from commit 20814924b2)
2012-03-01 21:23:16 -06:00
Nate Bargmann be2fefcf18 Update version of modified backends
Per Stephane's request, updated the version string of backends modified
since 1.2.14 release.  Newly added backends were left alone.
2012-02-02 20:10:37 -06:00
Stephane Fillod 8b26904aa5 Quell cppcheck warnings 2012-01-29 23:37:59 +01:00
Nate Bargmann 6cd38454ea Change ft767gx.c to RIG_STATUS_STABLE
Per Steve Conklin, AI4QR, setting the status to STABLE.
2012-01-26 08:43:16 -06:00
Nate Bargmann 6d85b882c1 Remove 2450 Hz BW from ft950
Per Terry, KJ4EED, the 2450 Hz BW is no longer valid on the latest
FT-950 firmware.  Removing as requested.
2012-01-03 17:04:41 -06:00
Mikhail Kshevetskiy 3c266f0f3f yaesu/vx-1700: we have several PTT sources, try manage them
Signed-off-by: Nate Bargmann <n0nb@n0nb.us>
2012-01-03 16:53:53 -06:00
Stephane Fillod 11f32c52b8 FT-2000 & FT-9000 have also TARGETABLE_MODE 2011-09-10 16:29:20 +02:00
Nate Bargmann 8866aa2bcb Remove set but unused variable errors in yaesu. 2011-08-25 11:13:07 -05:00
Nate Bargmann c3e9dfd93f Remove "$Id:" CVS tag as it is no longer used. 2011-08-22 21:38:38 -05:00
Nate Bargmann bff9f17f7e Update LGPL header in Yaesu source files.
TNX to Lucian Laga, YO6PLB, for the notification.
2011-08-22 21:38:38 -05:00
Nate Bargmann 20c4203268 Use rig->state.current_vfo to store vfo value.
NewCAT was saving the VFO value in the private rig data structure which
is inaccessable to the front end library.  Tested currVFO in rigctl with
W0MDN's FT-450.
2011-07-08 22:27:06 -05:00
Kamal Mostafa, KA6MAL a809bfc9f8 source warnings cleanup: #ifdef out unused FT-840 routines
... and moved "API local implementation" static declarations from .h into .c.



git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3064 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-27 22:43:06 +00:00
Kamal Mostafa, KA6MAL ad1cf04ea7 source warnings cleanup: #if-0 out a few unused routines
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3063 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-27 22:42:17 +00: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
Nate Bargmann, N0NB 9083fd9144 Move files into their relevant directories
doc/ directory is now only for Doxygen generated documentation.

git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3048 7ae35d74-ebe9-4afe-98af-79ac388436b8
2011-02-14 03:04:19 +00:00
Nate Bargmann, N0NB 61d3ef7f66 Correct long standing bugs where hardware handshake was not the default
for the latest Yaesu backends (ft9000 and later that use "New CAT" 
commands) and set the default "write_delay" parameter to '0' as these
radios deault to assuming a command has been received after 10 mSec of
no data on the wire.  The default write_delay had been 50 mSec (for no 
good reason except I copied and pasted from older backends) which was
too long as these models implement a CAT TOT (Time Out Timer) of 10 mSec.



git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@3012 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-12-05 23:46:03 +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
Kamal Mostafa, KA6MAL 2567b93af7 Move backend libraries into /usr/lib/hamlib directory.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2988 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-09-26 02:23:50 +00:00
Nate Bargmann, N0NB 2abff44f10 Suggested change by Dave, W1HKJ, to enable serial hardware handshaking
by default.



git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2981 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-09-14 01:24:10 +00:00
Stéphane Fillod, F8CFE 5ac219cc06 change backend status
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2966 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-08-23 21:45:52 +00:00
Stéphane Fillod, F8CFE 7ebc81b859 Found by cppcheck:
ft920: fix get_mode(MODE_DATA_UN)
ft990: fix get_xit(RIG_VFO_B)


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2962 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-08-23 21:24:51 +00:00
Stéphane Fillod, F8CFE 1ea78092e7 return -RIG_EPROTO when command not understood by rig
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2954 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-08-20 21:58:43 +00:00
Stéphane Fillod, F8CFE 62e7f69db7 status/version update
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2939 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-31 21:41:13 +00:00
Stéphane Fillod, F8CFE fb1a9626c7 patch from Ron, W6FM:
- fix ft736_set_rptr_offs
- append full list of CTCSS tones
- S-meter calibration data


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2926 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-28 10:23:25 +00:00
Stéphane Fillod, F8CFE e207fffcb9 - testing by Ron Patterson, W6FM
- fix setting RIG_RPT_SHIFT_NONE
- fix split mode and freq setting


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2924 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-27 19:22:16 +00:00
Stéphane Fillod, F8CFE 23b2536948 - fix bug in transaction
- fix bug in status update
- added caching


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2917 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-05-18 21:53:47 +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 1404b754fe portability of long long
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2880 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-04-16 19:04:00 +00:00
Stéphane Fillod, F8CFE 85400759ca fix ft747_get_freq() off by x100Hz
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2862 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-30 21:26:12 +00:00
Stéphane Fillod, F8CFE 318d640ad3 * cached update data
* passband width in get_mode
* added set_mem/get_mem
* various fixes and cleanup


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2860 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-28 21:35:32 +00:00
Stéphane Fillod, F8CFE 7fa2926ebe * change write_delay from 50 to 5 ms
* move pacing setup into ft747_open, once for all
* attempt workaround for possibly missing last byte in status command
* added set_split_vfo, get_split_vfo


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2857 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-27 23:12:29 +00:00
Stéphane Fillod, F8CFE a90f9e84cd fix bug in yaesu probing
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2848 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-05 19:18:10 +00:00
Stéphane Fillod, F8CFE f615a54f73 added CTCSS support
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2847 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-05 19:15:30 +00:00
Stéphane Fillod, F8CFE c12ceb34b7 added tones and repeater support
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2846 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-03-05 18:54:43 +00:00
Nate Bargmann, N0NB c6af376927 Reworked set/get_split_vfo, set/get_split_freq, and set/get_split_mode
to act only in split vfo mode.  freq and mode/passband will only be
modified if split is active.  split_vfo reflects the proper state of split
and active TX VFO.



git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2823 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-02-06 14:59:59 +00:00
Terry Embry, KJ4EED c3d2625888 Moved internal function definition newcat_valid_command() from newcat.h to newcat.c.
Depreciated newcat_get_rx_vfo in newcat.c.
Depreciated newcat_set_rx_vfo in newcat.c.
newcat.h
newcat.c


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2802 7ae35d74-ebe9-4afe-98af-79ac388436b8
2010-01-04 23:52:43 +00:00
Terry Embry, KJ4EED 256e1eadfd Changed to stable status
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2786 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-12-20 02:44:51 +00:00
Terry Embry, KJ4EED 61db9776a7 Cleanup of memory and channel set functions.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2775 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-28 14:27:37 +00:00
Terry Embry, KJ4EED e2ea26213d Added Alaska emergency memory channel
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2774 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-23 23:12:40 +00:00
Terry Embry, KJ4EED 6c7a40ea41 Replaced strcpy with snprintf.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2773 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-23 22:38:22 +00:00
Terry Embry, KJ4EED 016337131f added Read only 60M memory channels.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2772 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-22 21:53:27 +00:00
Terry Embry, KJ4EED de833ae82d eplaced sprintf with snprintf
Reworked memory channels to use VM; command.
Added code to support Read only 60M memory channels.



git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2771 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-22 21:52:11 +00:00
Steve Conklin, AI4QR fa7ecdce46 Fixed a bug that caused incorrect frequency retrieval.
Bumped ft-767GX to BETA status.
Set myself as maintainer for the ft-767gx module.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2766 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-11-06 19:31:47 +00:00
Terry Embry, KJ4EED 6282f571eb changed time delay for mem channels
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2718 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-08-19 14:17:19 +00:00
Stéphane Fillod, F8CFE c1c220c986 variable common_dcs_list[] with 104 DCS codes
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2701 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-06-01 16:51:41 +00:00
Terry Embry, KJ4EED e8a9ba18bc Changed delay for memmory channels
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2691 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-04-30 22:38:47 +00:00
Stéphane Fillod, F8CFE 4af723e27f Data USB in narrow mode patch, by nh7o
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2685 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-03-25 18:21:09 +00:00
Terry Embry, KJ4EED a9bdb8feeb Adjusted backup, restore delay
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2669 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-26 23:04:26 +00:00
Stéphane Fillod, F8CFE 951c9acb74 old compilers don't like mixed variable declaration and code
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2662 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-23 21:52:56 +00:00
Stéphane Fillod, F8CFE 2598021948 increase version number
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2658 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 15:21:52 +00:00
Stéphane Fillod, F8CFE fa13bd6c75 cosmetic
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2654 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:40:46 +00:00
Stéphane Fillod, F8CFE fa72a301c3 add RIG_LEVEL_NOTCHF
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2653 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:39:23 +00:00
Stéphane Fillod, F8CFE 6055bd26c9 * big cleanup and error code checking
* implemented:
  - split operation through SAT mode
  - get_dcd/get_ptt
  - get_level: ALC


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2651 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:33:52 +00:00
Stéphane Fillod, F8CFE 518b787557 fix tx_range_list2 power range
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2650 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:28:26 +00:00
Stéphane Fillod, F8CFE f968bdf224 passband width setting, and return code checking
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2649 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:27:53 +00:00
Stéphane Fillod, F8CFE b375cea9fd added split operation
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2648 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 12:26:22 +00:00
Stéphane Fillod, F8CFE 2b4a846e21 added split operation
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2642 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-20 09:55:16 +00:00
Terry Embry, KJ4EED 200a80217a Added delays for first time through mem write
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2636 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-15 09:54:17 +00:00
Stéphane Fillod, F8CFE dea1ee5256 * big cleanup
* implemented:
  - ft100_get_ptt
  - ft100_get_split_vfo
  - get_level: RIG_LEVEL_MICGAIN, RIG_LEVEL_SQL
  - implement width in set_mode


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2634 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-14 16:46:36 +00:00
Stéphane Fillod, F8CFE ceee524a80 * redo the ft100 set_ctcss/set_dcs with appropriate list, yaesu_tones.h no more needed
* change P1 of FT100's Status Update. Returned data seems longer than documented.
* populate FT100's bandplan of ITU Region 1
* some error code checking


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2633 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-02-14 00:26:03 +00:00
Nate Bargmann, N0NB 7b7293c701 Commented out filter definitions as these radios do not support setting
of passband.  Thanks to Rich Newsom WA4SXZ for testing.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2583 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-12 12:29:17 +00:00
Terry Embry, KJ4EED 361da94f4b FT1000D additions
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2582 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-12 12:11:06 +00:00
Terry Embry, KJ4EED fbd74141ab Cleanup returns on set commands
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2581 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-12 00:51:26 +00:00
Terry Embry, KJ4EED aced046e8d removed NFM NAM
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2578 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-11 17:39:26 +00:00
Terry Embry, KJ4EED 0297d64415 hanged get_mem and get_channel to leave channel_num
alone on an error.  get_mem should always be valid.
get_channel will return 0 Hz in freq on an empty channel.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2573 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-11 10:04:48 +00:00
Terry Embry, KJ4EED 067e7328a7 Added backup and restore to Memory Channel.
Added get_cmd and set_cmd.  Added get_vfo_mode for showing if rig is
in RIG_VFO_MEM at any time.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2572 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-10 14:52:49 +00:00
Terry Embry, KJ4EED 59b9885766 Change set_tx_vfo RIG_VFO_MEM logic
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2570 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-08 21:38:47 +00:00
Terry Embry, KJ4EED 4a4ebdf633 Added split_mode and split_freq tracking to restore_vfo, backup_vfo
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2568 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-08 12:57:31 +00:00
Terry Embry, KJ4EED 85ad7304dc Changes to vfo_restore, get_split_vfo
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2567 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-08 07:22:25 +00:00
Terry Embry, KJ4EED ec32850fd1 Fixed False Positive get_split_vfo in memory mode
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2566 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-07 23:09:12 +00:00
Terry Embry, KJ4EED 424e370409 Changed get_split_vfo to use passed vfo
Added split mode to vfo_backup and vfo_restore


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2565 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-07 20:59:12 +00:00
Terry Embry, KJ4EED d560c16f22 Added newcat_backup_vfo, newcat_restore_vfo
Updated FT9000 valid commands
Added valid command test to functions
Some code cleanup


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2564 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-07 00:50:53 +00:00
Terry Embry, KJ4EED 963a96f3cb Changed RIG_LEVEL_BKINDL to tenth_dots per second
Cleanup of set/get_mem and set/get_channel


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2563 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-05 23:03:15 +00:00
Terry Embry, KJ4EED 090fb246f7 Changed RIG_LEVEL_BKINDL math, 1 dot == 2UI (on time + off time)
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2559 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-04 23:59:00 +00:00
Terry Embry, KJ4EED d6a52b059f Adjusted bandwidth filters, Added set/get_channel, set/get_trn
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2558 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-04 16:03:34 +00:00
Terry Embry, KJ4EED 7adc0f0824 Fixed newcat_set_channel bugs
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2555 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-04 14:01:02 +00:00
Stéphane Fillod, F8CFE 0ceb81add9 New FT-840 backend, as suggested by Thomas - DK6KD
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2554 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-04 10:40:34 +00:00
Terry Embry, KJ4EED 83f4d2cbb1 Added newcat_get_channel, newcat_set_channel
Added RIG_VFO_MEM support


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2552 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-04 00:05:25 +00:00
Terry Embry, KJ4EED 7d48dc7dfc Removed .width from NEWCAT_MEM_CAP
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2546 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-02 14:32:22 +00:00
Terry Embry, KJ4EED 541fc7c2bc Fixed mW2power bug
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2541 7ae35d74-ebe9-4afe-98af-79ac388436b8
2009-01-01 17:16:07 +00:00
Terry Embry, KJ4EED f6dc85fdf4 Added debugging statements to mW2power and power2mW
Changed _nc_rigid to int because of potential enum bugs


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2539 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-31 18:17:56 +00:00
Stéphane Fillod, F8CFE a771286ae9 S-meter readout for FT-847, patch from Magne / LA1BFA
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2538 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-31 16:58:27 +00:00
Terry Embry, KJ4EED 6071a61141 Added newcat_get/set_trn
Changed power2mW mW2power to work with different radio model versions


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2537 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-30 18:52:32 +00:00
Terry Embry, KJ4EED 41aa9c8dda Added get_ts, set_ts to rigs
Added newcat_is_id for future reference
Made Changes to newcat_valid_command


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2535 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-28 13:53:13 +00:00
Terry Embry, KJ4EED bc092bab7e Added more METERS to newcat_set_level RIG_LEVEL_METER
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2534 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-28 04:06:14 +00:00
Nate Bargmann, N0NB 229d4ca562 Patch from Stefano Merlo, IZ1IGK that avoids trying to read the status
bytes on the FT-757GX as it has a write only serial interface.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2533 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-28 02:38:54 +00:00
Terry Embry, KJ4EED 7b751bff86 Added newcat_get_ts, newcat_set_ts
Added newcat_get_faststep, newcat_set_faststep


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2532 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-28 00:25:31 +00:00
Terry Embry, KJ4EED 0a21830680 Added newcat_get_powerstat, newcat_set_powerstat
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2531 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-27 08:08:47 +00:00
Terry Embry, KJ4EED 0d06e98e7a Added functions and ctcss_list as needed
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2529 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-26 11:36:21 +00:00
Terry Embry, KJ4EED 47eb68d232 Fixed newcat_set_ctcss_tone set bug
Added null pointer ctcss_list test
Changed newcat_set_mode width sets to after mode set
Changed newcat_power2mW, newcat_mW2power to allow all nc rigs


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2528 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-26 11:34:24 +00:00
Terry Embry, KJ4EED 1a34f231ab Added newcat_set_ctcss_tone, newcat_get_ctcss_tone,
newcat_set_ctcss_sql, newcat_get_ctcss_sql


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2527 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-26 00:05:02 +00:00
Terry Embry, KJ4EED 88fce68620 Added set_rptr_shift, get_rptr_shift
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2526 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-25 14:45:00 +00:00
Terry Embry, KJ4EED b2afb0a581 Added FT450 filter gets and sets
Found some narrow filter settings in FT2000 manual
Made up the rest.  It is a starting point.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2525 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-25 13:32:50 +00:00
Terry Embry, KJ4EED 775f3b1a05 Adjusted filters
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2524 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-25 13:27:07 +00:00
Terry Embry, KJ4EED 3fdc46ec32 Added RIG_METER_VDD
Did some cleanup


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2523 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-24 20:17:45 +00:00
Terry Embry, KJ4EED 4e465a0d33 Adjusted ft950.c filters
Added newcat_get/set_rxbandwidth functions
Added FT950 width gets and sets


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2521 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-23 22:36:51 +00:00
Terry Embry, KJ4EED a85628254f Added newcat_get_narrow newcat_set_narrow internal functions.
Added divide by zero catch for RIG_LEVEL_BKINDL


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2519 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-21 10:51:50 +00:00
Terry Embry, KJ4EED 772abd5ebd Changed RIG_LEVEL_BKINDL to tenth_dots
Changed RIG_LEVEL_NR to ratio
Added ID and COMP to RIG_LEVEL_METER get
Changed RIG_LEVEL_IF fix out of bounds values
Changed RIG_METER_PO to return RIG_OK for ft950


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2518 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-19 19:30:54 +00:00
Terry Embry, KJ4EED 409382a111 Changed RIG_LEVEL_VOX delay to spec. of .1 s, 100ms unit intervals
Changed others to bounds check and fix instead of error


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2517 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-18 13:11:40 +00:00
Terry Embry, KJ4EED 1f287f38af Updated filters
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2516 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-17 22:57:04 +00:00
Stéphane Fillod, F8CFE 21e0a90f6c * fix WFM mode misunderstanding
* convert some RIG_EINVAL to RIG_EPROTO


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2513 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-16 22:38:57 +00:00
Stéphane Fillod, F8CFE e77ae965c8 FM narrow, AM filters
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2512 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-16 22:33:02 +00:00
Terry Embry, KJ4EED 7316286885 Changes to newcat_vfo_op, newcat_get/set_level, newcat_get/set_func
Updated FT9000 CAT manual sure helps.
Terry KJ4EED
: ----------------------------------------------------------------------


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2511 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-16 09:01:46 +00:00
Terry Embry, KJ4EED 79ae77bd79 Added FT2000/FT9000 main_sub_vfo to newcat_get/set_mode,
newcat_get/set_level, newcat_get/set_func,
newcat_get/set_ant


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2510 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-15 21:52:36 +00:00
Stéphane Fillod, F8CFE 2e32b08c61 Add FT-2000 and FTDX-9000 headers
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2508 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-14 21:46:47 +00:00
Stéphane Fillod, F8CFE 3870e5c72a * newcat_get_mode: RIG_MODE_PKTFM, fill in proper width
* RX antenna (RIG_ANT_5)
* namespace cleanup


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2506 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-14 20:05:21 +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
Terry Embry, KJ4EED b73092e29d newcat.c
Added RIG_LEVEL_NOTCHF set and get
ft950.h
Added RIG_LEVEL_NOTCHF to SUPPORTED LEVELS
Terry KJ4EED


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2500 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-14 18:51:25 +00:00
Terry Embry, KJ4EED d0e0a7e188 yaesu/newcat.c
Added RIG_LEVEL_NR for FT950
Added newcat_scale_float()
for newcat_set_level() floating point problem
Using rigctl on FT950 I was trying to set RIG_LEVEL_COMP to 12
I kept setting it to 11.  I wrote some test software and
found out that 0.12 * 100 = 11.
Compilier is gcc 4.2.4, CPU is AMD X2
This seems to work.
Terry KJ4EED

yaesu/ft950.h
Added RIG_LEVEL_NR


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2498 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-13 21:23:31 +00:00
Terry Embry, KJ4EED 3b71851086 Added FT950 "EX117" ANTIVOX level_set/get.
Added FT950 COMP Level_set/get.
Added "AB" for FT950 VFO copy.
Changed Command "VV" FT950 to FALSE.
Added RIG_LEVEL_VOX bounds checking.  Keep at ms for GRIG2.
Added RIG_LEVEL_BKINDL bounds checking.  Keep at ms for GRIG2.
Changed newcat_set/get_freq to not set or change priv->current_vfo
*** Want to NOT ping-pong vfos when changing freq. ***
Changed newcat_get/set_rit logic.  Changed newcat_get/set_xit logic.
Changed RIG_LEVEL_IF logic.  Found odd compiler problem with %+04d versus %+.4d
Fixed some scale references between FT450 and FT950.
Some code cleanup.  Sorry cvs diff -wB
Some testing on GRIG2 GUI and FlDigi.
Terry KJ4EED


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2497 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-10 23:53:56 +00:00
Terry Embry, KJ4EED d0cd6f0cfd Fixed RIG_LEVEL_IF set. Fixed RIG_LEVEL_VOXGAIN scale problem for FT950.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2493 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-07 23:16:51 +00:00
Terry Embry, KJ4EED af8d9476b1 Added newcat_valid_command() call to newcat_set_xit().
Added newcat_valid_command() call to newcat_get_xit().
FT450 xit is not supported according to CAT Manual.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2492 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-06 13:29:37 +00:00
Terry Embry, KJ4EED 6fc6310806 Added get_ptt, set_split_vfo, get_split_vfo, set_rit
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2491 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-06 13:28:32 +00:00
Terry Embry, KJ4EED 2cec918745 Added RIG_OP_TOGGLE to FT450_VFO_OPS
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2490 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-06 13:27:32 +00:00
Terry Embry, KJ4EED e9411d2979 yaesu/ft950.h
Added RIG_OP_TOGGLE to FT950_VFO_OPS

yaesu/ft950.c
Changed max_xit to Hz(9999)
Added set_split_vfo() and get_split_vfo()

yaesu/newcat.h
Added newcat_set_split_vfo() and newcat_get_split_vfo()
Moved newcat.c internal function declarations to newcat.c

yaesu/newcat.c
Fixed PREAMP and ATT SETs in newcat_set_level()
Changed newcat_is_rig_model() to newcat_is_rig()
Added newcat_set_vfo_from_alias() internal function
Added newcat_get_txvfo() and newcat_set_txvfo(), uses "FT" command
Added newcat_get_rxvfo() and newcat_set_rxvfo(), uses "FR" command
    to extend newcat_get_vfo() and newcat_set_vfo() for FT9000
Added "SV" toggle command to newcat_vfo_op()
Changed newcat_set_rit() to use max_rit
Changed newcat_set_xit() to use max_xit
Changed newcat_set_rit() and newcat_set_xit() to 0 offset on rit/xit exit
Added newcat_set_split_vfo() and newcat_get_split_vfo().
    (*** Let rig.c backend do split_freq and split_mode)
Changed newcat_set_vfo() to call newcat_set_rxvfo() if "VS" is not supported
Changed newcat_get_vfo() to call newcat_get_rxvfo() if "VS" is not supported


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2489 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-12-06 02:37:45 +00:00
Terry Embry, KJ4EED 2dc81a0203 Changed newcat revision 2.21
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2486 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-30 15:30:39 +00:00
Terry Embry, KJ4EED 2324e9d761 Added power2mW mW2power
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2485 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-30 12:42:42 +00:00
Terry Embry, KJ4EED fc86094b56 Added get_rit, set_rit, get_xit, set_xit
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2484 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-29 19:26:09 +00:00
Terry Embry, KJ4EED edf999b945 Added newcat_is_rig_model
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2483 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-28 22:59:08 +00:00
Terry Embry, KJ4EED 8e8a9bb3c6 Added Get_Ant Set_Ant
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2482 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-27 07:46:34 +00:00
Terry Embry, KJ4EED f6ac6c2e47 Added Get_Ant, Set_Ant
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2481 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-27 07:45:23 +00:00
Terry Embry, KJ4EED 593c6cc343 FT950 RFPower, AGC, S Meter Changes
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2480 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-26 23:24:14 +00:00
Terry Embry, KJ4EED f38ec23e60 16 data points for S Meter Calibration
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2479 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-26 22:16:00 +00:00
Stéphane Fillod, F8CFE 84e247b8bd get_ptt patch from Terry
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2477 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-16 14:49:12 +00:00
Stéphane Fillod, F8CFE 60e188547d fix strict compiling
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2470 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-03 21:53:28 +00:00
Alexandru Csete OZ9AEC bf5dd75ca8 Fixed RIG_LEVEL_STRENGTH reading.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2469 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-03 20:48:09 +00:00
Stéphane Fillod, F8CFE d75c3379a5 freq range and caps fixes according to CAT manual
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2468 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-03 20:45:19 +00:00
Stéphane Fillod, F8CFE 5eb01a11de increase version number
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2459 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-02 14:53:25 +00:00
Stéphane Fillod, F8CFE 9ac6029844 * extended newcat: set_level/get_level, set_func/get_func, set_mem/get_mem,
vfo_op, get_info
* updated FT-450/FT950 accordingly


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2454 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-01 22:39:07 +00:00
Stéphane Fillod, F8CFE 6f101f64ba fix warning
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2451 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-11-01 16:38:46 +00:00
Stéphane Fillod, F8CFE 6cfd953179 fix duplicate initializer
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2442 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-31 22:25:38 +00:00
Stéphane Fillod, F8CFE 44b3b8cfbc patch from Jeff N7YG about MODE_PKTFM on FT-857, port to the FT-897 and some filters by me (SF)
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2438 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-31 22:09:11 +00:00
Thomas Beierlein, DL1JBE 0194766455 Changed State to STABLE as reported by Nate Bargmann N0NB.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2430 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-28 05:22:38 +00:00
Thomas Beierlein, DL1JBE b1bf5c9c67 changed RIG_STATUS_NEW into RIG_STATUS_UNTESTED.
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2424 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-26 13:54:52 +00:00
Stéphane Fillod, F8CFE 96d58a3a34 Patch from Dave, W1HKJ:
1. the FT-450 transceiver does not respond to the "VS;" command and responds
   with "?;" which is not a documented response.  That appears to be
   the "what's that" response.  So the new_cat code needs to
   recognize that and just keep on going.
2. the transceiver expects a full 8 digits when setting frequency.
   As originally written the transceiver would accept frequences >=
   1000000 but reject all below that value.
3. Code for get_mode, set_mode, and set_ptt functions.
4. Rig status changed to RIG_STATUS_BETA.


git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2420 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-10-25 14:37:19 +00:00
Stéphane Fillod, F8CFE a4e9b56a1c Support table of newcat, patch by Mark N1VQW
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2405 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-09-22 21:34:45 +00:00
Stéphane Fillod, F8CFE 657a9ac7c9 new: FT-950
git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2404 7ae35d74-ebe9-4afe-98af-79ac388436b8
2008-09-22 21:32:38 +00:00