2015-01-06 17:37:15 +00:00
|
|
|
/*
|
|
|
|
* Hamlib Rotator backend - LinuxCNC no hardware port
|
|
|
|
* Copyright (c) 2015 by Robert Freeman
|
|
|
|
* Adapted from AMSAT code 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h> /* String function definitions */
|
|
|
|
#include <unistd.h> /* UNIX standard function definitions */
|
|
|
|
|
|
|
|
#ifdef HAVE_SYS_IOCTL_H
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "hamlib/rotator.h"
|
|
|
|
#include "misc.h"
|
|
|
|
#include "register.h"
|
|
|
|
|
|
|
|
char axcmd[512];
|
|
|
|
|
|
|
|
static int
|
|
|
|
cnctrk_set_position(ROT *rot, azimuth_t az, elevation_t el)
|
|
|
|
{
|
|
|
|
int retval;
|
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
retval = system("/usr/bin/axis-remote --ping");
|
|
|
|
|
2015-01-06 17:37:15 +00:00
|
|
|
if (retval != 0)
|
2019-11-30 16:19:08 +00:00
|
|
|
{
|
2015-01-06 17:37:15 +00:00
|
|
|
return retval;
|
2019-11-30 16:19:08 +00:00
|
|
|
}
|
2015-01-06 17:37:15 +00:00
|
|
|
|
|
|
|
sprintf(axcmd, "/usr/bin/axis-remote --mdi 'G00 X %6.2f Y %6.2f' \n", az, el);
|
2019-12-21 04:46:44 +00:00
|
|
|
return system(axcmd);
|
2015-01-06 17:37:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/** CNCTRK implements essentially only the set position function.
|
|
|
|
it assumes there is a LinuxCNC running with the Axis GUI */
|
2019-11-30 16:19:08 +00:00
|
|
|
const struct rot_caps cnctrk_rot_caps =
|
|
|
|
{
|
2020-03-06 05:48:14 +00:00
|
|
|
ROT_MODEL(ROT_MODEL_CNCTRK),
|
2019-11-30 16:19:08 +00:00
|
|
|
.model_name = "CNCTRK",
|
|
|
|
.mfg_name = "CNCTRK",
|
2020-06-08 21:13:08 +00:00
|
|
|
.version = "20191220.0",
|
2019-11-30 16:19:08 +00:00
|
|
|
.copyright = "LGPL",
|
|
|
|
.status = RIG_STATUS_UNTESTED,
|
|
|
|
.rot_type = ROT_TYPE_OTHER,
|
|
|
|
.port_type = RIG_PORT_NONE,
|
|
|
|
.write_delay = 0,
|
|
|
|
.post_write_delay = 0,
|
|
|
|
.timeout = 200,
|
|
|
|
.retry = 3,
|
|
|
|
|
|
|
|
.min_az = 0,
|
|
|
|
.max_az = 360,
|
|
|
|
.min_el = -20,
|
|
|
|
.max_el = 180,
|
|
|
|
|
|
|
|
.set_position = cnctrk_set_position,
|
2015-01-06 17:37:15 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* ************************************************************************* */
|
|
|
|
|
|
|
|
DECLARE_INITROT_BACKEND(cnctrk)
|
|
|
|
{
|
2019-11-30 16:19:08 +00:00
|
|
|
rig_debug(RIG_DEBUG_VERBOSE, "%s: _init called\n", __func__);
|
2015-01-06 17:37:15 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
rot_register(&cnctrk_rot_caps);
|
2015-01-06 17:37:15 +00:00
|
|
|
|
2019-11-30 16:19:08 +00:00
|
|
|
return RIG_OK;
|
2015-01-06 17:37:15 +00:00
|
|
|
}
|