kopia lustrzana https://github.com/Hamlib/Hamlib
* set the serial handshake to use CTS/RTS
* mode some functions static git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@1841 7ae35d74-ebe9-4afe-98af-79ac388436b8Hamlib-1.2.3
rodzic
fee5f26049
commit
6f20700a64
|
@ -1,8 +1,8 @@
|
||||||
/*
|
/*
|
||||||
* Hamlib Kenwood backend - TS850 description
|
* Hamlib Kenwood backend - TS850 description
|
||||||
* Copyright (c) 2000-2003 by Stephane Fillod
|
* Copyright (c) 2000-2004 by Stephane Fillod
|
||||||
*
|
*
|
||||||
* $Id: ts850.c,v 1.17 2004-06-14 20:57:34 fillods Exp $
|
* $Id: ts850.c,v 1.18 2004-09-08 20:51:12 fillods 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
|
||||||
|
@ -60,18 +60,18 @@ static const struct kenwood_priv_caps ts850_priv_caps = {
|
||||||
};
|
};
|
||||||
|
|
||||||
/* forward definitions */
|
/* forward definitions */
|
||||||
int ts850_set_rit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
static int ts850_set_rit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
||||||
int ts850_set_xit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
static int ts850_set_xit(RIG * rig, vfo_t vfo, shortfreq_t rit);
|
||||||
int ts850_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
|
static int ts850_get_mode(RIG *rig, vfo_t vfo, rmode_t *mode, pbwidth_t *width);
|
||||||
int ts850_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
|
static int ts850_set_mode(RIG *rig, vfo_t vfo, rmode_t mode, pbwidth_t width);
|
||||||
int ts850_set_ctcss_tone(RIG *rig, vfo_t vfo, tone_t tone);
|
static int ts850_set_ctcss_tone(RIG *rig, vfo_t vfo, tone_t tone);
|
||||||
int ts850_set_func(RIG *rig, vfo_t vfo, setting_t func, int status);
|
static int ts850_set_func(RIG *rig, vfo_t vfo, setting_t func, int status);
|
||||||
int ts850_get_func(RIG *rig, vfo_t vfo, setting_t func, int *status);
|
static int ts850_get_func(RIG *rig, vfo_t vfo, setting_t func, int *status);
|
||||||
int ts850_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
|
static int ts850_get_level(RIG *rig, vfo_t vfo, setting_t level, value_t *val);
|
||||||
int ts850_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val);
|
static int ts850_set_level(RIG *rig, vfo_t vfo, setting_t level, value_t val);
|
||||||
int ts850_get_mem(RIG *rig, vfo_t vfo, int *ch);
|
static int ts850_get_mem(RIG *rig, vfo_t vfo, int *ch);
|
||||||
int ts850_get_channel (RIG * rig, channel_t * chan);
|
static int ts850_get_channel (RIG * rig, channel_t * chan);
|
||||||
int ts850_set_channel (RIG * rig, const channel_t * chan);
|
static int ts850_set_channel (RIG * rig, const channel_t * chan);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* ts850 rig capabilities.
|
* ts850 rig capabilities.
|
||||||
|
@ -82,7 +82,7 @@ const struct rig_caps ts850_caps = {
|
||||||
.rig_model = RIG_MODEL_TS850,
|
.rig_model = RIG_MODEL_TS850,
|
||||||
.model_name = "TS-850",
|
.model_name = "TS-850",
|
||||||
.mfg_name = "Kenwood",
|
.mfg_name = "Kenwood",
|
||||||
.version = "1.0",
|
.version = "1.1",
|
||||||
.copyright = "LGPL",
|
.copyright = "LGPL",
|
||||||
.status = RIG_STATUS_BETA,
|
.status = RIG_STATUS_BETA,
|
||||||
.rig_type = RIG_TYPE_TRANSCEIVER,
|
.rig_type = RIG_TYPE_TRANSCEIVER,
|
||||||
|
@ -94,7 +94,7 @@ const struct rig_caps ts850_caps = {
|
||||||
.serial_data_bits = 8,
|
.serial_data_bits = 8,
|
||||||
.serial_stop_bits = 2,
|
.serial_stop_bits = 2,
|
||||||
.serial_parity = RIG_PARITY_NONE,
|
.serial_parity = RIG_PARITY_NONE,
|
||||||
.serial_handshake = RIG_HANDSHAKE_NONE,
|
.serial_handshake = RIG_HANDSHAKE_HARDWARE,
|
||||||
.write_delay = 0,
|
.write_delay = 0,
|
||||||
.post_write_delay = 500,
|
.post_write_delay = 500,
|
||||||
.timeout = 1000,
|
.timeout = 1000,
|
||||||
|
|
Ładowanie…
Reference in New Issue