Skip to content

Commit 25841d1

Browse files
Merge pull request #86 from OpenAstroTech/low-baudrate
V1.9.04 - Updates
2 parents d630d79 + 360e2f7 commit 25841d1

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

Constants.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353

5454
// USB serial port speed according to external controller
5555
#define SERIAL_BAUDRATE_STELLARIUM_DIRECT 9600
56-
#define SERIAL_BAUDRATE_ASCOM 57600
56+
#define SERIAL_BAUDRATE_ASCOM 19200
5757

5858
// Wifi operating modes (ESP32 only)
5959
#define WIFI_MODE_INFRASTRUCTURE 0 // Infrastructure Only - OAT connects to an existing Router

Version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
// So 1.8.99 is ok, but 1.8.234 is not. Neither is 1.123.22
33
// Also, numbers are interpreted as simple numbers. _ __ _
44
// 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"

platformio.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ src_dir = ./src
1515
lib_dir = ./src/libs
1616

1717
[common]
18+
1819
lib_deps =
1920
mikalhart/TinyGPSPlus @ ^1.0.2
2021
teemuatlut/TMCStepper @ ^0.7.1
@@ -25,7 +26,7 @@ lib_deps =
2526

2627
[env]
2728
framework = arduino
28-
monitor_speed = 57600
29+
monitor_speed = 19200
2930
upload_speed = 115200
3031
test_build_project_src = true
3132
extra_scripts =
@@ -109,3 +110,4 @@ build_flags =
109110
lib_deps =
110111
${common.lib_deps}
111112
WiFi
113+

src/MeadeCommandProcessor.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
152152
// -- GET Extensions --
153153
// :GIS#
154154
// 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.
156156
//
157157
// :GIT#
158158
// Get Tracking
159-
// Returns: 1 if tracking is on. 0 if not.
159+
// Returns: 1# if tracking is on. 0# if not.
160160
//
161161
// :GIG#
162162
// Get Guiding
163-
// Returns: 1 if currently guiding. 0 if not.
163+
// Returns: 1# if currently guiding. 0# if not.
164164
//
165165
// :GX#
166166
// Get Mount Status
@@ -1237,7 +1237,7 @@ String MeadeCommandProcessor::handleMeadeQuit(String inCmd)
12371237
{
12381238
_mount->stopSlewing(ALL_DIRECTIONS | TRACKING);
12391239
_mount->waitUntilStopped(ALL_DIRECTIONS);
1240-
return "1";
1240+
return "";
12411241
}
12421242

12431243
switch (inCmd[0])

0 commit comments

Comments
 (0)