2019-06-12 20:52:35 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Interface - amplifier configuration interface
|
|
|
|
* Copyright (c) 2000-2010 by Stephane Fillod
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \addtogroup amplifier
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \brief Amplifier Configuration Interface
|
|
|
|
* \file amp_conf.c
|
|
|
|
*/
|
|
|
|
|
2022-02-04 13:41:36 +00:00
|
|
|
#include <hamlib/config.h>
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdio.h> /* Standard input/output definitions */
|
|
|
|
#include <string.h> /* String function definitions */
|
|
|
|
|
|
|
|
#include <hamlib/amplifier.h>
|
|
|
|
|
|
|
|
#include "amp_conf.h"
|
|
|
|
#include "token.h"
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Configuration options available in the amp->state struct.
|
|
|
|
*/
|
|
|
|
static const struct confparams ampfrontend_cfg_params[] =
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
{
|
|
|
|
TOK_PATHNAME, "amp_pathname", "Rig path name",
|
|
|
|
"Path name to the device file of the amplifier",
|
|
|
|
"/dev/amplifier", RIG_CONF_STRING,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_WRITE_DELAY, "write_delay", "Write delay",
|
|
|
|
"Delay in ms between each byte sent out",
|
|
|
|
"0", RIG_CONF_NUMERIC, { .n = { 0, 1000, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_POST_WRITE_DELAY, "post_write_delay", "Post write delay",
|
|
|
|
"Delay in ms between each command sent out",
|
|
|
|
"0", RIG_CONF_NUMERIC, { .n = { 0, 1000, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_TIMEOUT, "timeout", "Timeout", "Timeout in ms",
|
|
|
|
"0", RIG_CONF_NUMERIC, { .n = { 0, 10000, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_RETRY, "retry", "Retry", "Max number of retry",
|
|
|
|
"0", RIG_CONF_NUMERIC, { .n = { 0, 10, 1 } }
|
|
|
|
},
|
|
|
|
|
|
|
|
{ RIG_CONF_END, NULL, }
|
2019-06-12 20:52:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static const struct confparams ampfrontend_serial_cfg_params[] =
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
{
|
|
|
|
TOK_SERIAL_SPEED, "serial_speed", "Serial speed",
|
|
|
|
"Serial port baud rate",
|
|
|
|
"0", RIG_CONF_NUMERIC, { .n = { 300, 115200, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_DATA_BITS, "data_bits", "Serial data bits",
|
|
|
|
"Serial port data bits",
|
|
|
|
"8", RIG_CONF_NUMERIC, { .n = { 5, 8, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_STOP_BITS, "stop_bits", "Serial stop bits",
|
|
|
|
"Serial port stop bits",
|
|
|
|
"1", RIG_CONF_NUMERIC, { .n = { 0, 3, 1 } }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_PARITY, "serial_parity", "Serial parity",
|
|
|
|
"Serial port parity",
|
|
|
|
"None", RIG_CONF_COMBO, { .c = {{ "None", "Odd", "Even", "Mark", "Space", NULL }} }
|
|
|
|
},
|
|
|
|
{
|
|
|
|
TOK_HANDSHAKE, "serial_handshake", "Serial handshake",
|
|
|
|
"Serial port handshake",
|
|
|
|
"None", RIG_CONF_COMBO, { .c = {{ "None", "XONXOFF", "Hardware", NULL }} }
|
|
|
|
},
|
|
|
|
|
|
|
|
{ RIG_CONF_END, NULL, }
|
2019-06-12 20:52:35 +00:00
|
|
|
};
|
2021-02-20 13:13:55 +00:00
|
|
|
/** @} */ /* amplifier definitions */
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \addtogroup amp_internal
|
|
|
|
* @{
|
|
|
|
*/
|
|
|
|
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
/**
|
2021-02-20 13:13:55 +00:00
|
|
|
* \brief Set an amplifier state value from alpha input.
|
|
|
|
*
|
|
|
|
* \param amp The #AMP handle.
|
|
|
|
* \param token TOK_... specify which value to set.
|
|
|
|
* \param val Input.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-20 13:13:55 +00:00
|
|
|
* Assumes amp != NULL and val != NULL.
|
|
|
|
*
|
|
|
|
* \return RIG_OK or a **negative value** error.
|
|
|
|
*
|
|
|
|
* \retval RIG_OK TOK_... value set successfully.
|
|
|
|
* \retval RIG_EINVAL TOK_.. value not set.
|
|
|
|
*
|
|
|
|
* \sa frontamp_get_conf()
|
2019-06-12 20:52:35 +00:00
|
|
|
*/
|
|
|
|
int frontamp_set_conf(AMP *amp, token_t token, const char *val)
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
struct amp_state *rs;
|
|
|
|
int val_i;
|
|
|
|
|
|
|
|
rs = &->state;
|
|
|
|
|
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
|
|
|
|
|
|
|
switch (token)
|
|
|
|
{
|
|
|
|
case TOK_PATHNAME:
|
2021-03-06 18:37:53 +00:00
|
|
|
strncpy(rs->ampport.pathname, val, HAMLIB_FILPATHLEN - 1);
|
2022-02-01 04:12:29 +00:00
|
|
|
strncpy(rs->ampport_deprecated.pathname, val, HAMLIB_FILPATHLEN - 1);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_WRITE_DELAY:
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.write_delay = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.write_delay = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_POST_WRITE_DELAY:
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.post_write_delay = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.post_write_delay = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_TIMEOUT:
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.timeout = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.timeout = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_RETRY:
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.retry = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.retry = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_SERIAL_SPEED:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.parm.serial.rate = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.rate = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_DATA_BITS:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.parm.serial.data_bits = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.data_bits = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_STOP_BITS:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (1 != sscanf(val, "%d", &val_i))
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
rs->ampport.parm.serial.stop_bits = val_i;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.stop_bits = val_i;
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_PARITY:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(val, "None"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.parity = RIG_PARITY_NONE;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.parity = RIG_PARITY_NONE;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(val, "Odd"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.parity = RIG_PARITY_ODD;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.parity = RIG_PARITY_ODD;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(val, "Even"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.parity = RIG_PARITY_EVEN;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.parity = RIG_PARITY_EVEN;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(val, "Mark"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.parity = RIG_PARITY_MARK;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.parity = RIG_PARITY_MARK;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
|
|
|
else if (!strcmp(val, "Space"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.parity = RIG_PARITY_SPACE;
|
2022-02-01 04:12:29 +00:00
|
|
|
rs->ampport_deprecated.parm.serial.parity = RIG_PARITY_SPACE;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_HANDSHAKE:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!strcmp(val, "None"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.handshake = RIG_HANDSHAKE_NONE;
|
|
|
|
}
|
|
|
|
else if (!strcmp(val, "XONXOFF"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.handshake = RIG_HANDSHAKE_XONXOFF;
|
|
|
|
}
|
|
|
|
else if (!strcmp(val, "Hardware"))
|
|
|
|
{
|
|
|
|
rs->ampport.parm.serial.handshake = RIG_HANDSHAKE_HARDWARE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_MIN_AZ:
|
|
|
|
rs->min_az = atof(val);
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_MAX_AZ:
|
|
|
|
rs->max_az = atof(val);
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_MIN_EL:
|
|
|
|
rs->min_el = atof(val);
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_MAX_EL:
|
|
|
|
rs->max_el = atof(val);
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
#endif
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
default:
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return RIG_OK;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-20 13:13:55 +00:00
|
|
|
* \brief Query data from an amplifier state in alpha form.
|
|
|
|
*
|
|
|
|
* \param amp The #AMP handle.
|
|
|
|
* \param token TOK_... specify which data to query.
|
|
|
|
* \param val Result.
|
|
|
|
*
|
|
|
|
* Assumes amp != NULL and val != NULL.
|
|
|
|
*
|
|
|
|
* \return RIG_OK or a **negative value** on error.
|
|
|
|
*
|
|
|
|
* \retval RIG_OK TOK_... value queried successfully.
|
|
|
|
* \retval RIG_EINVAL TOK_.. value not queried.
|
|
|
|
*
|
|
|
|
* \sa frontamp_set_conf()
|
2019-06-12 20:52:35 +00:00
|
|
|
*/
|
2022-01-09 23:46:07 +00:00
|
|
|
int frontamp_get_conf2(AMP *amp, token_t token, char *val, int val_len)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
struct amp_state *rs;
|
|
|
|
const char *s;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
rs = &->state;
|
|
|
|
|
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
switch (token)
|
|
|
|
{
|
|
|
|
case TOK_PATHNAME:
|
2022-02-05 21:27:43 +00:00
|
|
|
strncpy(val, rs->ampport.pathname, val_len - 1);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_WRITE_DELAY:
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.write_delay);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case TOK_POST_WRITE_DELAY:
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.post_write_delay);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_TIMEOUT:
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.timeout);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_RETRY:
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.retry);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_SERIAL_SPEED:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.parm.serial.rate);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_DATA_BITS:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.parm.serial.data_bits);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_STOP_BITS:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(val, val_len, "%d", rs->ampport.parm.serial.stop_bits);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_PARITY:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
switch (rs->ampport.parm.serial.parity)
|
|
|
|
{
|
|
|
|
case RIG_PARITY_NONE:
|
|
|
|
s = "None";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case RIG_PARITY_ODD:
|
|
|
|
s = "Odd";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case RIG_PARITY_EVEN:
|
|
|
|
s = "Even";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case RIG_PARITY_MARK:
|
|
|
|
s = "Mark";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case RIG_PARITY_SPACE:
|
|
|
|
s = "Space";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
default:
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2022-02-05 21:27:43 +00:00
|
|
|
strncpy(val, s, val_len - 1);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case TOK_HANDSHAKE:
|
|
|
|
if (rs->ampport.type.rig != RIG_PORT_SERIAL)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
switch (rs->ampport.parm.serial.handshake)
|
|
|
|
{
|
|
|
|
case RIG_HANDSHAKE_NONE:
|
|
|
|
s = "None";
|
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
case RIG_HANDSHAKE_XONXOFF:
|
|
|
|
s = "XONXOFF";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case RIG_HANDSHAKE_HARDWARE:
|
|
|
|
s = "Hardware";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
|
|
|
|
2022-01-09 23:46:07 +00:00
|
|
|
strncpy(val, s, val_len);
|
2019-11-30 16:19:08 +00:00
|
|
|
break;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
default:
|
2019-11-30 16:19:08 +00:00
|
|
|
return -RIG_EINVAL;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return RIG_OK;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
2021-02-20 13:13:55 +00:00
|
|
|
/** @} */ /* amp_internal definitions */
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* \addtogroup amplifier
|
|
|
|
* @{
|
|
|
|
*/
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
|
2019-12-08 22:06:58 +00:00
|
|
|
#ifdef XXREMOVEDXXC
|
|
|
|
// Not referenced anywhere
|
2019-06-12 20:52:35 +00:00
|
|
|
/**
|
2021-02-20 13:13:55 +00:00
|
|
|
* \brief Executes cfunc on all the elements stored in the configuration
|
|
|
|
* parameters table.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-20 13:13:55 +00:00
|
|
|
* \param amp The #AMP handle.
|
|
|
|
* \param cfunc Pointer to the callback function(...).
|
|
|
|
* \param data Data for the callback function.
|
|
|
|
*
|
|
|
|
* Start first with backend configuration parameters table, then finish with
|
|
|
|
* frontend configuration parameters table.
|
|
|
|
*
|
|
|
|
* \return RIG_OK if the operation has been successful, otherwise a **negative
|
|
|
|
* value** if an error occurred (in which case, cause is set appropriately).
|
|
|
|
*
|
|
|
|
* \retval RIG_OK The \a cfunc action completed successfully.
|
|
|
|
* \retval RIG_EINVAL \a amp is NULL or inconsistent or \a cfunc is NULL.
|
2019-06-12 20:52:35 +00:00
|
|
|
*/
|
|
|
|
int HAMLIB_API amp_token_foreach(AMP *amp,
|
|
|
|
int (*cfunc)(const struct confparams *,
|
2019-11-30 16:19:08 +00:00
|
|
|
rig_ptr_t),
|
2019-06-12 20:52:35 +00:00
|
|
|
rig_ptr_t data)
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
const struct confparams *cfp;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!amp || !amp->caps || !cfunc)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = ampfrontend_cfg_params; cfp->name; cfp++)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
if ((*cfunc)(cfp, data) == 0)
|
|
|
|
{
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (amp->caps->port_type == RIG_PORT_SERIAL)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = ampfrontend_serial_cfg_params; cfp->name; cfp++)
|
|
|
|
{
|
|
|
|
if ((*cfunc)(cfp, data) == 0)
|
|
|
|
{
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = amp->caps->cfgparams; cfp && cfp->name; cfp++)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
if ((*cfunc)(cfp, data) == 0)
|
|
|
|
{
|
|
|
|
return RIG_OK;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return RIG_OK;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
2019-12-08 22:06:58 +00:00
|
|
|
#endif
|
2019-06-12 20:52:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-08 18:40:01 +00:00
|
|
|
* \brief Query an amplifier configuration parameter token by its name.
|
2021-02-12 18:46:01 +00:00
|
|
|
*
|
2021-02-08 18:40:01 +00:00
|
|
|
* \param amp The #AMP handle.
|
2021-02-12 18:46:01 +00:00
|
|
|
* \param name Configuration parameter token name string.
|
2021-02-08 18:40:01 +00:00
|
|
|
*
|
|
|
|
* Use this function to get a pointer to the token in the #confparams
|
|
|
|
* structure. Searches the backend config params table first, then falls back
|
|
|
|
* to the frontend config params table.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-12 18:46:01 +00:00
|
|
|
* \return A pointer to the token in the #confparams structure or NULL if
|
2021-02-20 13:13:55 +00:00
|
|
|
* \a amp is NULL or inconsistent or if \a name is not found (how can the
|
2021-02-15 21:38:20 +00:00
|
|
|
* caller know which occurred?).
|
2021-02-08 18:40:01 +00:00
|
|
|
*
|
|
|
|
* \sa amp_token_lookup()
|
2021-02-12 18:46:01 +00:00
|
|
|
*
|
|
|
|
* TODO: Should use Lex to speed it up, strcmp() hurts!
|
2019-06-12 20:52:35 +00:00
|
|
|
*/
|
|
|
|
const struct confparams *HAMLIB_API amp_confparam_lookup(AMP *amp,
|
2019-11-30 16:19:08 +00:00
|
|
|
const char *name)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
const struct confparams *cfp;
|
|
|
|
token_t token;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!amp || !amp->caps)
|
|
|
|
{
|
|
|
|
return NULL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
/* 0 returned for invalid format */
|
|
|
|
token = strtol(name, NULL, 0);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = amp->caps->cfgparams; cfp && cfp->name; cfp++)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!strcmp(cfp->name, name) || token == cfp->token)
|
|
|
|
{
|
|
|
|
return cfp;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = ampfrontend_cfg_params; cfp->name; cfp++)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!strcmp(cfp->name, name) || token == cfp->token)
|
|
|
|
{
|
|
|
|
return cfp;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (amp->caps->port_type == RIG_PORT_SERIAL)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
for (cfp = ampfrontend_serial_cfg_params; cfp->name; cfp++)
|
|
|
|
{
|
|
|
|
if (!strcmp(cfp->name, name) || token == cfp->token)
|
|
|
|
{
|
|
|
|
return cfp;
|
|
|
|
}
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return NULL;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-12 18:46:01 +00:00
|
|
|
* \brief Search for the token ID associated with an amplifier configuration
|
|
|
|
* parameter token name.
|
|
|
|
*
|
2021-02-08 18:40:01 +00:00
|
|
|
* \param amp The #AMP handle.
|
2021-02-12 18:46:01 +00:00
|
|
|
* \param name Configuration parameter token name string.
|
2021-02-08 18:40:01 +00:00
|
|
|
*
|
|
|
|
* Searches the backend and frontend configuration parameters tables for the
|
|
|
|
* token ID.
|
|
|
|
*
|
2021-02-20 13:13:55 +00:00
|
|
|
* \return The token ID value or #RIG_CONF_END if the lookup failed.
|
2021-02-08 18:40:01 +00:00
|
|
|
*
|
|
|
|
* \sa amp_confparam_lookup()
|
2019-06-12 20:52:35 +00:00
|
|
|
*/
|
|
|
|
token_t HAMLIB_API amp_token_lookup(AMP *amp, const char *name)
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
const struct confparams *cfp;
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
cfp = amp_confparam_lookup(amp, name);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!cfp)
|
|
|
|
{
|
|
|
|
return RIG_CONF_END;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return cfp->token;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-08 18:40:01 +00:00
|
|
|
* \brief Set an amplifier configuration parameter.
|
2021-02-12 18:46:01 +00:00
|
|
|
*
|
2021-02-20 13:13:55 +00:00
|
|
|
* \param amp The #AMP handle.
|
2021-02-08 18:40:01 +00:00
|
|
|
* \param token The token of the parameter to set.
|
2021-02-20 13:13:55 +00:00
|
|
|
* \param val The value to set the parameter to.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-08 18:40:01 +00:00
|
|
|
* Sets an amplifier configuration parameter to \a val.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-08 18:40:01 +00:00
|
|
|
* \return RIG_OK if the operation has been successful, otherwise a **negative
|
|
|
|
* value** if an error occurred (in which case, cause is set appropriately).
|
|
|
|
*
|
|
|
|
* \retval RIG_OK The parameter was set successfully.
|
2021-02-15 21:38:20 +00:00
|
|
|
* \retval RIG_EINVAL \a amp is NULL or inconsistent or \a token is invalid.
|
2021-02-08 18:40:01 +00:00
|
|
|
* \retval RIG_ENAVAIL amp_caps#set_conf() capability is not available.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
|
|
|
* \sa amp_get_conf()
|
|
|
|
*/
|
|
|
|
int HAMLIB_API amp_set_conf(AMP *amp, token_t token, const char *val)
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!amp || !amp->caps)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
return -RIG_EINVAL;
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (rig_need_debug(RIG_DEBUG_VERBOSE))
|
|
|
|
{
|
|
|
|
const struct confparams *cfp;
|
|
|
|
char tokenstr[12];
|
2022-01-19 15:11:04 +00:00
|
|
|
SNPRINTF(tokenstr, sizeof(tokenstr), "%ld", token);
|
2019-11-30 16:19:08 +00:00
|
|
|
cfp = amp_confparam_lookup(amp, tokenstr);
|
|
|
|
|
|
|
|
if (!cfp)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
amp_debug(RIG_DEBUG_VERBOSE, "%s: %s='%s'\n", __func__, cfp->name, val);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (IS_TOKEN_FRONTEND(token))
|
|
|
|
{
|
|
|
|
return frontamp_set_conf(amp, token, val);
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (amp->caps->set_conf == NULL)
|
|
|
|
{
|
|
|
|
return -RIG_ENAVAIL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return amp->caps->set_conf(amp, token, val);
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2021-02-08 18:40:01 +00:00
|
|
|
* \brief Query the value of an amplifier configuration parameter.
|
2021-02-12 18:46:01 +00:00
|
|
|
*
|
|
|
|
* \param amp The #AMP handle.
|
2021-02-08 18:40:01 +00:00
|
|
|
* \param token The token of the parameter to query.
|
2021-02-12 18:46:01 +00:00
|
|
|
* \param val The location where to store the value of the configuration \a token.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-12 18:46:01 +00:00
|
|
|
* Retrieves the value of a configuration parameter associated with \a token.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
2021-02-08 18:40:01 +00:00
|
|
|
* \return RIG_OK if the operation has been successful, otherwise a **negative
|
|
|
|
* value** if an error occurred (in which case, cause is set appropriately).
|
|
|
|
*
|
|
|
|
* \retval RIG_OK Querying the parameter was successful.
|
2021-02-15 21:38:20 +00:00
|
|
|
* \retval RIG_EINVAL \a amp is NULL or inconsistent.
|
2021-02-08 18:40:01 +00:00
|
|
|
* \retval RIG_ENAVAIL amp_caps#get_conf() capability is not available.
|
2019-06-12 20:52:35 +00:00
|
|
|
*
|
|
|
|
* \sa amp_set_conf()
|
|
|
|
*/
|
2022-01-09 23:46:07 +00:00
|
|
|
int HAMLIB_API amp_get_conf2(AMP *amp, token_t token, char *val, int val_len)
|
2019-06-12 20:52:35 +00:00
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s called\n", __func__);
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (!amp || !amp->caps || !val)
|
|
|
|
{
|
|
|
|
return -RIG_EINVAL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (IS_TOKEN_FRONTEND(token))
|
|
|
|
{
|
2022-01-09 23:46:07 +00:00
|
|
|
return frontamp_get_conf2(amp, token, val, val_len);
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
if (amp->caps->get_conf == NULL)
|
|
|
|
{
|
|
|
|
return -RIG_ENAVAIL;
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return amp->caps->get_conf(amp, token, val);
|
2019-06-12 20:52:35 +00:00
|
|
|
}
|
|
|
|
|
2022-01-09 23:46:07 +00:00
|
|
|
int HAMLIB_API amp_get_conf(AMP *amp, token_t token, char *val)
|
|
|
|
{
|
|
|
|
return amp_get_conf2(amp, token, val, 128);
|
|
|
|
}
|
2019-06-12 20:52:35 +00:00
|
|
|
/** @} */
|