-
Notifications
You must be signed in to change notification settings - Fork 169
/
Home.ino
179 lines (150 loc) · 5.93 KB
/
Home.ino
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
// -----------------------------------------------------------------------------------
// Functions related to Homing the mount
#if (HOME_SENSE != OFF)
enum findHomeModes { FH_OFF,FH_FAST,FH_IDLE,FH_SLOW,FH_DONE };
findHomeModes findHomeMode=FH_OFF;
int PierSideStateAxis1=LOW;
int PierSideStateAxis2=LOW;
unsigned long findHomeTimeout=0L;
void checkHome() {
// check if find home timed out or stopped
if (findHomeMode == FH_FAST || findHomeMode == FH_SLOW) {
if ((long)(millis()-findHomeTimeout) > 0L || (guideDirAxis1 == 0 && guideDirAxis2 == 0)) {
if ((long)(millis()-findHomeTimeout) > 0L) generalError=ERR_LIMIT_SENSE;
if (guideDirAxis1 == 'e' || guideDirAxis1 == 'w') guideDirAxis1='b';
if (guideDirAxis2 == 'n' || guideDirAxis2 == 's') guideDirAxis2='b';
safetyLimitsOn=true;
findHomeMode=FH_OFF;
} else {
if (digitalRead(Axis1_HOME) != PierSideStateAxis1 && (guideDirAxis1 == 'e' || guideDirAxis1 == 'w')) StopAxis1();
if (digitalRead(Axis2_HOME) != PierSideStateAxis2 && (guideDirAxis2 == 'n' || guideDirAxis2 == 's')) StopAxis2();
}
}
// we are idle and waiting for a fast guide to stop before the final slow guide to refine the home position
if (findHomeMode == FH_IDLE && guideDirAxis1 == 0 && guideDirAxis2 == 0) {
findHomeMode=FH_OFF;
goHome(false);
}
// we are finishing off the find home
if (findHomeMode == FH_DONE && guideDirAxis1 == 0 && guideDirAxis2 == 0) {
findHomeMode=FH_OFF;
VLF("MSG: Homing done");
#if AXIS2_TANGENT_ARM == ON
trackingState=abortTrackingState;
cli();
targetAxis2.part.m = 0; targetAxis2.part.f = 0;
posAxis2 = 0;
sei();
#else
// at the home position
initStartPosition();
atHome=true;
#endif
}
}
void StopAxis1() {
guideDirAxis1='b';
VLF("MSG: Homing switch detected, stopping guide on Axis1");
if (guideDirAxis2 != 'n' && guideDirAxis2 != 's') { if (findHomeMode == FH_SLOW) findHomeMode=FH_DONE; if (findHomeMode == FH_FAST) findHomeMode=FH_IDLE; }
}
void StopAxis2() {
guideDirAxis2='b';
VLF("MSG: Homing switch detected, stopping guide on Axis2");
if (guideDirAxis1 != 'e' && guideDirAxis1 != 'w') { if (findHomeMode == FH_SLOW) findHomeMode=FH_DONE; if (findHomeMode == FH_FAST) findHomeMode=FH_IDLE; }
}
#endif
// moves telescope to the home position, then stops tracking
CommandErrors goHome(bool fast) {
CommandErrors e=validateGoto();
#if HOME_SENSE != OFF
if (e != CE_NONE && e != CE_SLEW_ERR_IN_STANDBY) return e;
if (findHomeMode != FH_OFF) return CE_MOUNT_IN_MOTION;
// stop tracking
abortTrackingState=trackingState;
trackingState=TrackingNone;
// decide direction to guide
char a1; if (digitalRead(Axis1_HOME) == HOME_SENSE_STATE_AXIS1) a1='w'; else a1='e';
char a2; if (digitalRead(Axis2_HOME) == HOME_SENSE_STATE_AXIS2) a2='n'; else a2='s';
// attach interrupts to stop guide
PierSideStateAxis1=digitalRead(Axis1_HOME);
PierSideStateAxis2=digitalRead(Axis2_HOME);
// disable limits
safetyLimitsOn=false;
// start guides
if (fast) {
#if AXIS2_TANGENT_ARM == OFF
// make sure tracking is disabled
trackingState=TrackingNone;
#endif
// make sure motors are powered on
enableStepperDrivers();
findHomeMode=FH_FAST;
double secPerDeg=3600.0/(double)guideRates[8];
findHomeTimeout=millis()+(unsigned long)(secPerDeg*180.0*1000.0);
// 8=HalfMaxRate
if (AXIS2_TANGENT_ARM == OFF) e=startGuideAxis1(a1,8,0,false);
if (e == CE_NONE) e=startGuideAxis2(a2,8,0,false,true);
if (e == CE_NONE) VLF("MSG: Homing started phase 1"); else VLF("MSG: Homing start phase 1 failed");
} else {
findHomeMode=FH_SLOW;
findHomeTimeout=millis()+30000UL;
// 7=48x sidereal
if (AXIS2_TANGENT_ARM == OFF) e=startGuideAxis1(a1,7,0,false);
if (e == CE_NONE) e=startGuideAxis2(a2,7,0,false,true);
if (e == CE_NONE) VLF("MSG: Homing started phase 2"); else VLF("MSG: Homing start phase 2 failed");
}
if (e != CE_NONE) stopSlewingAndTracking(SS_ALL_FAST);
return e;
#else
if (e != CE_NONE) return e;
abortTrackingState=trackingState;
#if AXIS2_TANGENT_ARM == ON
double h=getInstrAxis1();
double i2=indexAxis2;
int p=getInstrPierSide();
if (latitude >= 0) { if (p == PierSideWest) i2=180.0-i2; } else { if (p == PierSideWest) i2=-180.0-i2; }
e=goTo(h,i2,h,i2,p);
#else
trackingState=TrackingNone;
e=goTo(homePositionAxis1,homePositionAxis2,homePositionAxis1,homePositionAxis2,PierSideEast);
#endif
if (e == CE_NONE) { VLF("MSG: Homing started"); homeMount=true; } else { VLF("MSG: Homing failed"); trackingState=abortTrackingState; }
return e;
#endif
}
bool isHoming() {
#if HOME_SENSE != OFF
return (homeMount || (findHomeMode != FH_OFF));
#else
return homeMount;
#endif
}
// sets telescope home position; user manually moves to Hour Angle 90 and Declination 90 (CWD position),
// then the first gotoEqu will set the pier side and turn on tracking
CommandErrors setHome() {
if (isSlewing()) return CE_MOUNT_IN_MOTION;
// back to startup state
reactivateBacklashComp();
initStartupValues();
initStartPosition();
currentAlt=45.0;
doFastAltCalc(true);
safetyLimitsOn=true;
// initialize and disable the stepper drivers
StepperModeTrackingInit();
// not parked, but don't wipe the park position if it's saved - we can still use it
parkStatus=NotParked;
nv.write(EE_parkStatus,parkStatus);
// reset PEC, unless we have an index to recover from this
pecRecorded=nv.read(EE_pecRecorded);
if (pecRecorded != true && pecRecorded != false) { pecRecorded=false; DLF("ERR, setHome(): bad NV pecRecorded"); }
#if PEC_SENSE == OFF
pecStatus=IgnorePEC;
nv.write(EE_pecStatus,pecStatus);
#else
pecStatus=nv.read(EE_pecStatus);
if (pecStatus < PEC_STATUS_FIRST || pecStatus > PEC_STATUS_LAST) { pecStatus=IgnorePEC; DLF("ERR, setHome(): bad NV pecStatus"); }
#endif
if (!pecRecorded) pecStatus=IgnorePEC;
return CE_NONE;
}