forked from OpenPHDGuiding/phd2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbacklash_comp.h
182 lines (160 loc) · 6.33 KB
/
backlash_comp.h
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
180
181
182
/*
* backlash_comp.h
* PHD Guiding
*
* Created by Bruce Waddington
* Copyright (c) 2015 Bruce Waddington and Andy Galasso
* All rights reserved.
*
* This source code is distributed under the following "BSD" license
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of Bret McKee, Dad Dog Development,
* Craig Stark, Stark Labs nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef BACKLASH_COMP_H_INCLUDED
#define BACKLASH_COMP_H_INCLUDED
#include "guiding_stats.h"
class Scope;
class BLCHistory;
struct RunningStats
{
int count;
double currentSS; // Sum of squares
double currentMean;
RunningStats();
void AddDelta(double val);
void Reset();
};
// Encapsulated class for handling Dec backlash measurement
class BacklashTool
{
int m_pulseWidth;
int m_stepCount;
int m_northPulseCount;
int m_restoreCount;
int m_acceptedMoves;
double m_lastClearRslt;
double m_lastDecGuideRate;
double m_backlashResultPx; // units of pixels
double m_cumClearingDistance;
bool m_backlashExemption;
int m_backlashResultMs;
double m_northRate;
PHD_Point m_lastMountLocation;
PHD_Point m_startingPoint;
PHD_Point m_markerPoint;
PHD_Point m_endSouth;
wxString m_lastStatus; // Translated for UI
wxString m_lastStatusDebug; // Always English for debug log
Scope *m_scope;
std::vector<double> m_northBLSteps;
std::vector<double> m_southBLSteps;
double m_driftPerSec;
AxisStats m_northStats;
wxLongLong_t m_msmtStartTime;
wxLongLong_t m_msmtEndTime;
double GetLastDecGuideRate();
public:
enum BLT_STATE
{
BLT_STATE_INITIALIZE,
BLT_STATE_CLEAR_NORTH,
BLT_STATE_STEP_NORTH,
BLT_STATE_STEP_SOUTH,
BLT_STATE_ABORTED,
BLT_STATE_TEST_CORRECTION,
BLT_STATE_RESTORE,
BLT_STATE_WRAPUP,
BLT_STATE_COMPLETED
} m_bltState;
enum MeasurementConstants // To control the behavior of the measurement process
{
BACKLASH_MIN_COUNT = 3,
BACKLASH_EXPECTED_DISTANCE = 4,
BACKLASH_EXEMPTION_DISTANCE = 40,
MAX_CLEARING_STEPS = 100,
NORTH_PULSE_SIZE = 500,
MAX_NORTH_PULSES = 8000,
TRIAL_TOLERANCE_AS = 2 // arc-secs
};
enum MeasurementResults
{
MEASUREMENT_TOO_FEW_NORTH,
MEASUREMENT_TOO_FEW_SOUTH,
MEASUREMENT_BL_NOT_CLEARED,
MEASUREMENT_SANITY,
MEASUREMENT_VALID
} m_Rslt;
private:
MeasurementResults ComputeBacklashPx(double* bltPx, int* bltMs, double* northRate);
public:
BacklashTool();
~BacklashTool();
void StartMeasurement(double DriftPerMin);
void StopMeasurement();
void DecMeasurementStep(const PHD_Point& currentLoc);
void CleanUp();
BLT_STATE GetBltState() const { return m_bltState; }
MeasurementResults GetMeasurementQuality() const { return m_Rslt; }
int GetBLTMsmtPulseSize() const { return m_pulseWidth; }
double GetBacklashResultPx() const { return m_backlashResultPx; }
int GetBacklashResultMs() const { return m_backlashResultMs; }
void GetBacklashSigma(double* SigmaPx, double* SigmaMs);
bool GetBacklashExempted() const { return m_backlashExemption; }
wxString GetLastStatus() const { return m_lastStatus; }
void SetBacklashPulse(int amt);
void ShowGraph(wxDialog *pGA, const std::vector<double> &northSteps, const std::vector<double> &southSteps, int PulseSize);
bool IsGraphable();
const std::vector<double>& GetNorthSteps() const { return m_northBLSteps; }
const std::vector<double>& GetSouthSteps() const { return m_southBLSteps; }
};
class BacklashComp
{
bool m_compActive;
GUIDE_DIRECTION m_lastDirection;
int m_adjustmentFloor;
int m_adjustmentCeiling;
int m_pulseWidth;
bool m_fixedSize;
ArrayOfDbl m_residualOffsets;
Scope *m_pScope;
BLCHistory *m_pHistory;
void SetCompValues(int requestSize, int floor, int ceiling);
public:
BacklashComp(Scope *scope);
~BacklashComp();
static int GetBacklashPulseMinValue();
static int GetBacklashPulseMaxValue();
void GetBacklashCompSettings(int *pulseWidth, int *floor, int *ceiling) const;
int GetBacklashPulseWidth() const { return m_pulseWidth; }
void SetBacklashPulseWidth(int ms, int floor, int ceiling);
void EnableBacklashComp(bool enable);
bool IsEnabled() const { return m_compActive; }
// notify BLC about current raw dec offset, the result of prior moves
void TrackBLCResults(unsigned int moveOptions, double yRawOffset);
// apply a BLC adjustment to the given guide pulse (yAmount) if needed
void ApplyBacklashComp(unsigned int moveOptions, double yGuideDistance, int *yAmount);
void ResetBLCState();
};
#endif