1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135
|
/*
* Hamlib Rotator backend - PcRotor/WA6UFQ parallel port
* Copyright (c) 2001-2008 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
*
*/
#include <stdlib.h>
#include "hamlib/rotator.h"
#include "parallel.h"
/* ************************************************************************* */
//pcrotor_set_position(ROT *rot, azimuth_t az, elevation_t el)
#define PCROTOR_POWER 0x20
#define PCROTOR_CW 0x40
#define PCROTOR_CCW 0x80
#define PCROTOR_MASK (PCROTOR_CCW|PCROTOR_CW|PCROTOR_POWER)
static int setDirection(hamlib_port_t *port, unsigned char outputvalue)
{
int ret;
par_lock(port);
/* set the data bits.
* Should we read before write to not trample the lower significant bits?
*/
ret = par_write_data(port, outputvalue);
par_unlock(port);
return ret;
}
static int
pcrotor_stop(ROT *rot)
{
/* CW=0, CCW=0, Power-up=0 */
return setDirection(ROTPORT(rot), 0);
}
static int
pcrotor_move(ROT *rot, int direction, int speed)
{
unsigned char outputvalue;
rig_debug(RIG_DEBUG_TRACE, "%s called: %d %d\n", __func__, direction, speed);
switch (direction)
{
case ROT_MOVE_CCW:
outputvalue = PCROTOR_POWER | PCROTOR_CCW;
break;
case ROT_MOVE_CW:
outputvalue = PCROTOR_POWER | PCROTOR_CCW;
break;
case 0:
/* Stop */
outputvalue = 0;
break;
default:
return -RIG_EINVAL;
}
return setDirection(ROTPORT(rot), outputvalue);
}
/* ************************************************************************* */
/*
* PcRotor rotator capabilities.
*
* Control Interface schematics from, courtesy of Bob Hillard WA6UFQ:
* http://www.dxzone.com/cgi-bin/dir/jump2.cgi?ID=11173
*
* DB25-7=Data-5= Power up/Sleep
* DB25-8=Data-6= CW
* DB25-9=Data-7= CCW
*
* There's no feedback.
*/
/** Fodtrack implement essentially only the set position function.
*
*/
const struct rot_caps pcrotor_caps =
{
ROT_MODEL(ROT_MODEL_PCROTOR),
.model_name = "PcRotor",
.mfg_name = "WA6UFQ",
.version = "20081013.0",
.copyright = "LGPL",
.status = RIG_STATUS_STABLE,
.rot_type = ROT_TYPE_OTHER,
.port_type = RIG_PORT_PARALLEL,
.write_delay = 0,
.post_write_delay = 0,
.timeout = 200,
.retry = 3,
.min_az = 0,
.max_az = 360,
.min_el = 0,
.max_el = 0,
.priv = NULL, /* priv */
.move = pcrotor_move,
.stop = pcrotor_stop,
//.set_position = pcrotor_set_position,
//.get_position = pcrotor_get_position,
};
/* end of file */
|