File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
Software/Arduino code/OpenAstroTracker Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 1
- #define VERSION "V1.8.43 "
1
+ #define VERSION "V1.8.44 "
Original file line number Diff line number Diff line change @@ -68,12 +68,14 @@ bool processHAKeys()
68
68
LOGV1 (DEBUG_INFO, F (" HA: GPS acquired" ));
69
69
GPS_SERIAL_PORT.end ();
70
70
haState = SHOWING_HA_SYNC;
71
+ #if SUPPORT_GUIDED_STARTUP == 1
71
72
if (startupState == StartupWaitForHACompletion)
72
73
{
73
74
LOGV1 (DEBUG_INFO, F (" HA: We were in startup, so confirm HA" ));
74
75
startupState = StartupHAConfirmed;
75
76
inStartup = true ;
76
77
}
78
+ #endif
77
79
}
78
80
}
79
81
@@ -114,11 +116,13 @@ bool processHAKeys()
114
116
lcdMenu.printMenu (" Stored." );
115
117
mount.delay (500 );
116
118
haState = SHOWING_HA_SET;
119
+ #if SUPPORT_GUIDED_STARTUP == 1
117
120
if (startupState == StartupWaitForHACompletion)
118
121
{
119
122
startupState = StartupHAConfirmed;
120
123
inStartup = true ;
121
124
}
125
+ #endif
122
126
}
123
127
else if (key == btnUP)
124
128
{
@@ -153,12 +157,14 @@ bool processHAKeys()
153
157
GPS_SERIAL_PORT.end ();
154
158
haState = SHOWING_HA_SYNC;
155
159
}
160
+ #if SUPPORT_GUIDED_STARTUP == 1
156
161
else if (startupState == StartupWaitForHACompletion)
157
162
{
158
163
LOGV1 (DEBUG_INFO, F (" HA: In Startup, not in GPS Start mode, leaving" ));
159
164
startupState = StartupHAConfirmed;
160
165
inStartup = true ;
161
166
}
167
+ #endif
162
168
else
163
169
{
164
170
LOGV1 (DEBUG_INFO, F (" HA: leaving HA" ));
You can’t perform that action at this time.
0 commit comments