From 799a62ab8d45e80c03531933b37800a99beaeaca Mon Sep 17 00:00:00 2001 From: "Nate Bargmann, N0NB" Date: Sat, 1 Dec 2007 00:35:42 +0000 Subject: [PATCH] Enabled PTT in ic746.c, TNX Stelios, M0GLD, for the test and patch. Enabled split functions in ic910.c, TNX Karla, KE5FKU for test and patch. git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2262 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- icom/ic746.c | 6 ++++-- icom/ic910.c | 7 ++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/icom/ic746.c b/icom/ic746.c index 0cabaf419..72f426761 100644 --- a/icom/ic746.c +++ b/icom/ic746.c @@ -2,7 +2,7 @@ * Hamlib CI-V backend - description of IC-746 and variations * Copyright (c) 2000-2003 by Stephane Fillod * - * $Id: ic746.c,v 1.10 2007-02-28 08:50:19 mardigras Exp $ + * $Id: ic746.c,v 1.11 2007-12-01 00:35:42 n0nb Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -175,7 +175,7 @@ const struct rig_caps ic746_caps = { .copyright = "LGPL", .status = RIG_STATUS_NEW, .rig_type = RIG_TYPE_TRANSCEIVER, -.ptt_type = RIG_PTT_NONE, +.ptt_type = RIG_PTT_RIG, .dcd_type = RIG_DCD_NONE, .port_type = RIG_PORT_SERIAL, .serial_rate_min = 300, @@ -309,6 +309,8 @@ const struct rig_caps ic746_caps = { .get_split_mode = icom_get_split_mode, .set_split_vfo = icom_set_split_vfo, .get_split_vfo = icom_get_split_vfo, +.set_ptt = icom_set_ptt, +.get_ptt = icom_get_ptt, }; diff --git a/icom/ic910.c b/icom/ic910.c index 9eb95480f..003c5f85e 100644 --- a/icom/ic910.c +++ b/icom/ic910.c @@ -3,7 +3,7 @@ * Contributed by Francois Retief * Copyright (c) 2000-2004 by Stephane Fillod * - * $Id: ic910.c,v 1.11 2004-09-26 08:35:03 fillods Exp $ + * $Id: ic910.c,v 1.12 2007-12-01 00:35:42 n0nb Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -331,6 +331,11 @@ const struct rig_caps ic910_caps = { .scan = icom_scan, .get_dcd = icom_get_dcd, .decode_event = icom_decode_event, +.set_split_vfo = icom_set_split_vfo, +.set_split_freq = icom_set_split_freq, +.get_split_freq = icom_get_split_freq, +.set_split_mode = icom_set_split_mode, +.get_split_mode = icom_get_split_mode, }; /* end of file */