-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpimoco_mount_guide.cpp
executable file
·159 lines (124 loc) · 5.09 KB
/
pimoco_mount_guide.cpp
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
/*
PiMoCo: Raspberry Pi Telescope Mount and Focuser Control
Copyright (C) 2021 Markus Noga
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program 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 General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "pimoco_mount.h"
#include <libindi/indilogger.h>
IPState PimocoMount::GuideNorth(uint32_t ms) {
if(TrackState!=SCOPE_TRACKING) {
LOG_ERROR("Can only guide while tracking");
return IPS_ALERT;
} else if(ms>GuiderMaxPulseN[0].value && GuiderMaxPulseN[0].value>0) {
LOGF_WARN("Restricting guider pulse of %d ms to maximum of %d ms.", ms, GuiderMaxPulseN[0].value);
ms=GuiderMaxPulseN[0].value;
}
// Indi: North is defined as DEC+
double arcsecPerSec=getTrackRateDec() + GuiderSpeedN[0].value * trackRates[0];
if(!stepperDec.setTargetVelocityArcsecPerSec(arcsecPerSec))
return IPS_ALERT;
guiderActiveDec=true;
guiderTimeoutDec=getTimeMillis()+ms;
if(!guiderActiveRA || guiderTimeoutDec<=guiderTimeoutRA)
SetTimer(ms);
//LOGF_INFO("Guide north %d ms speed %f", ms, arcsecPerSec);
return IPS_BUSY;
}
IPState PimocoMount::GuideSouth(uint32_t ms) {
if(TrackState!=SCOPE_TRACKING) {
LOG_ERROR("Can only guide while tracking");
return IPS_ALERT;
} else if(ms>GuiderMaxPulseN[0].value && GuiderMaxPulseN[0].value>0) {
LOGF_WARN("Restricting guider pulse of %d ms to maximum of %d ms.", ms, GuiderMaxPulseN[0].value);
ms=GuiderMaxPulseN[0].value;
}
// Indi: South is defined as DEC-
double arcsecPerSec=getTrackRateDec() - GuiderSpeedN[0].value * trackRates[0];
if(!stepperDec.setTargetVelocityArcsecPerSec(arcsecPerSec))
return IPS_ALERT;
guiderActiveDec=true;
guiderTimeoutDec=getTimeMillis()+ms;
if(!guiderActiveRA || guiderTimeoutDec<=guiderTimeoutRA)
SetTimer(ms);
//LOGF_INFO("Guide south %d ms speed %f", ms, arcsecPerSec);
return IPS_BUSY;
}
IPState PimocoMount::GuideEast(uint32_t ms) {
if(TrackState!=SCOPE_TRACKING) {
LOG_ERROR("Can only guide while tracking");
return IPS_ALERT;
} else if(ms>GuiderMaxPulseN[0].value && GuiderMaxPulseN[0].value>0) {
LOGF_WARN("Restricting guider pulse of %d ms to maximum of %d ms.", ms, GuiderMaxPulseN[0].value);
ms=GuiderMaxPulseN[0].value;
}
// Indi: East is defined as RA+, so HA-
double arcsecPerSec=getTrackRateRA() - GuiderSpeedN[0].value * trackRates[0];
if(!stepperHA.setTargetVelocityArcsecPerSec(arcsecPerSec))
return IPS_ALERT;
guiderActiveRA=true;
guiderTimeoutRA=getTimeMillis()+ms;
if(!guiderActiveDec || guiderTimeoutRA<=guiderTimeoutDec)
SetTimer(ms);
//LOGF_INFO("Guide east %d ms speed %f", ms, arcsecPerSec);
return IPS_BUSY;
}
IPState PimocoMount::GuideWest(uint32_t ms) {
if(TrackState!=SCOPE_TRACKING) {
LOG_ERROR("Can only guide while tracking");
return IPS_ALERT;
} else if(ms>GuiderMaxPulseN[0].value && GuiderMaxPulseN[0].value>0) {
LOGF_WARN("Restricting guider pulse of %d ms to maximum of %d ms.", ms, GuiderMaxPulseN[0].value);
ms=GuiderMaxPulseN[0].value;
}
// Indi: West is defined as RA-, so HA+
double arcsecPerSec=getTrackRateRA() + GuiderSpeedN[0].value * trackRates[0];
if(!stepperHA.setTargetVelocityArcsecPerSec(arcsecPerSec))
return IPS_ALERT;
guiderActiveRA=true;
guiderTimeoutRA=getTimeMillis()+ms;
if(!guiderActiveDec || guiderTimeoutRA<=guiderTimeoutDec)
SetTimer(ms);
//LOGF_INFO("Guide west %d ms speed %f", ms, arcsecPerSec);
return IPS_BUSY;
}
bool PimocoMount::guiderTimerHit() {
uint64_t now=getTimeMillis();
bool rc=true;
if(guiderActiveRA && guiderTimeoutRA<=now) {
if(!stepperHA.setTargetVelocityArcsecPerSec(getTrackRateRA())) {
LOG_ERROR("Error resetting RA speed after guiding");
rc=false;
}
guiderActiveRA=false;
if(stepperHA.getDebugLevel()>=Stepper::TMC_DEBUG_DEBUG)
LOGF_DEBUG("Guide EW done %d ms after requested pulse", now-guiderTimeoutRA);
GuideComplete(AXIS_RA);
}
if(guiderActiveDec && guiderTimeoutDec<=now) {
if(!stepperDec.setTargetVelocityArcsecPerSec(getTrackRateDec())) {
LOG_ERROR("Error resetting Dec speed after guiding");
rc=false;
}
guiderActiveDec=false;
if(stepperDec.getDebugLevel()>=Stepper::TMC_DEBUG_DEBUG)
LOGF_DEBUG("Guide NS done %d ms after requested pulse", now-guiderTimeoutDec);
GuideComplete(AXIS_DE);
}
return rc;
}
uint32_t PimocoMount::getGuiderTimerInterval() {
if(guiderActiveRA && (!guiderActiveDec || guiderTimeoutRA<=guiderTimeoutDec))
return guiderTimeoutRA - getTimeMillis();
else if(guiderActiveDec)
return guiderTimeoutDec- getTimeMillis();
return (uint32_t) 0x0ffffffff;
}