kopia lustrzana https://github.com/Hamlib/Hamlib
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-79ac388436b8Hamlib-1.2.7
rodzic
9fe95cde21
commit
799a62ab8d
|
@ -2,7 +2,7 @@
|
||||||
* Hamlib CI-V backend - description of IC-746 and variations
|
* Hamlib CI-V backend - description of IC-746 and variations
|
||||||
* Copyright (c) 2000-2003 by Stephane Fillod
|
* 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
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* it under the terms of the GNU Library General Public License as
|
||||||
|
@ -175,7 +175,7 @@ const struct rig_caps ic746_caps = {
|
||||||
.copyright = "LGPL",
|
.copyright = "LGPL",
|
||||||
.status = RIG_STATUS_NEW,
|
.status = RIG_STATUS_NEW,
|
||||||
.rig_type = RIG_TYPE_TRANSCEIVER,
|
.rig_type = RIG_TYPE_TRANSCEIVER,
|
||||||
.ptt_type = RIG_PTT_NONE,
|
.ptt_type = RIG_PTT_RIG,
|
||||||
.dcd_type = RIG_DCD_NONE,
|
.dcd_type = RIG_DCD_NONE,
|
||||||
.port_type = RIG_PORT_SERIAL,
|
.port_type = RIG_PORT_SERIAL,
|
||||||
.serial_rate_min = 300,
|
.serial_rate_min = 300,
|
||||||
|
@ -309,6 +309,8 @@ const struct rig_caps ic746_caps = {
|
||||||
.get_split_mode = icom_get_split_mode,
|
.get_split_mode = icom_get_split_mode,
|
||||||
.set_split_vfo = icom_set_split_vfo,
|
.set_split_vfo = icom_set_split_vfo,
|
||||||
.get_split_vfo = icom_get_split_vfo,
|
.get_split_vfo = icom_get_split_vfo,
|
||||||
|
.set_ptt = icom_set_ptt,
|
||||||
|
.get_ptt = icom_get_ptt,
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
* Contributed by Francois Retief <fgretief@sun.ac.za>
|
* Contributed by Francois Retief <fgretief@sun.ac.za>
|
||||||
* Copyright (c) 2000-2004 by Stephane Fillod
|
* 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
|
* This library is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU Library General Public License as
|
* 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,
|
.scan = icom_scan,
|
||||||
.get_dcd = icom_get_dcd,
|
.get_dcd = icom_get_dcd,
|
||||||
.decode_event = icom_decode_event,
|
.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 */
|
/* end of file */
|
||||||
|
|
Ładowanie…
Reference in New Issue