File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 53
53
54
54
// USB serial port speed according to external controller
55
55
#define SERIAL_BAUDRATE_STELLARIUM_DIRECT 9600
56
- #define SERIAL_BAUDRATE_ASCOM 57600
56
+ #define SERIAL_BAUDRATE_ASCOM 19200
57
57
58
58
// Wifi operating modes (ESP32 only)
59
59
#define WIFI_MODE_INFRASTRUCTURE 0 // Infrastructure Only - OAT connects to an existing Router
Original file line number Diff line number Diff line change 2
2
// So 1.8.99 is ok, but 1.8.234 is not. Neither is 1.123.22
3
3
// Also, numbers are interpreted as simple numbers. _ __ _
4
4
// So 1.8 is actually 1.08, meaning that 1.12 is a later version than 1.8. \_(..)_/
5
- #define VERSION "V1.9.03 "
5
+ #define VERSION "V1.9.04 "
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ src_dir = ./src
15
15
lib_dir = ./src/libs
16
16
17
17
[common]
18
+
18
19
lib_deps =
19
20
mikalhart/TinyGPSPlus @ ^1.0.2
20
21
teemuatlut/TMCStepper @ ^0.7.1
@@ -25,7 +26,7 @@ lib_deps =
25
26
26
27
[env]
27
28
framework = arduino
28
- monitor_speed = 57600
29
+ monitor_speed = 19200
29
30
upload_speed = 115200
30
31
test_build_project_src = true
31
32
extra_scripts =
@@ -109,3 +110,4 @@ build_flags =
109
110
lib_deps =
110
111
${common.lib_deps}
111
112
WiFi
113
+
Original file line number Diff line number Diff line change @@ -152,15 +152,15 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
152
152
// -- GET Extensions --
153
153
// :GIS#
154
154
// Get DEC or RA Slewing
155
- // Returns: 1 if either RA or DEC is slewing. 0 if not.
155
+ // Returns: 1# if either RA or DEC is slewing. 0# if not.
156
156
//
157
157
// :GIT#
158
158
// Get Tracking
159
- // Returns: 1 if tracking is on. 0 if not.
159
+ // Returns: 1# if tracking is on. 0# if not.
160
160
//
161
161
// :GIG#
162
162
// Get Guiding
163
- // Returns: 1 if currently guiding. 0 if not.
163
+ // Returns: 1# if currently guiding. 0# if not.
164
164
//
165
165
// :GX#
166
166
// Get Mount Status
@@ -1237,7 +1237,7 @@ String MeadeCommandProcessor::handleMeadeQuit(String inCmd)
1237
1237
{
1238
1238
_mount->stopSlewing (ALL_DIRECTIONS | TRACKING);
1239
1239
_mount->waitUntilStopped (ALL_DIRECTIONS);
1240
- return " 1 " ;
1240
+ return " " ;
1241
1241
}
1242
1242
1243
1243
switch (inCmd[0 ])
You can’t perform that action at this time.
0 commit comments