Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

V1.13.11 - Updates #256

Merged
merged 1 commit into from
Dec 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
**V1.13.11 - Updates**
- Fixed DEBUG macro usage.
- Clarified some Meade documentation.

**V1.13.10 - Updates**
- Fixed dependency specification for git tags

Expand Down
2 changes: 1 addition & 1 deletion Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
// Also, numbers are interpreted as simple numbers. _ __ _
// So 1.8 is actually 1.08, meaning that 1.12 is a later version than 1.8. \_(..)_/

#define VERSION "V1.13.10"
#define VERSION "V1.13.11"
8 changes: 4 additions & 4 deletions src/MeadeCommandProcessor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -952,7 +952,7 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
// This offset is added to the position of the RA ring when it is centered on the hall sensor triggered range after running.
// the RA homing command (:MHRx#)
// Parameters:
// "n" is the number of steps that are needed from the center of the Hall senser trigger range to the actual home position.
// "n" is the (positive or negative) number of steps that are needed from the center of the Hall senser trigger range to the actual home position.
// Returns:
// nothing
//
Expand All @@ -963,7 +963,7 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
// This offset is added to the position of the DEC ring when it is centered on the hall sensor triggered range after running.
// the DEC homing command (:MHDx#)
// Parameters:
// "n" is the number of steps that are needed from the center of the Hall senser trigger range to the actual home position.
// "n" is the (positive or negative) number of steps that are needed from the center of the Hall senser trigger range to the actual home position.
// Returns:
// nothing
//
Expand All @@ -973,7 +973,7 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
// Information:
// Set the number of steps the RA stepper motor needs to take to rotate by one degree.
// Parameters:
// "n.n" is the number of steps (only one decimal point is supported)
// "n.n" is the number of steps (only one decimal point is supported, must be positive)
// Returns:
// nothing
//
Expand All @@ -983,7 +983,7 @@ bool gpsAqcuisitionComplete(int &indicator); // defined in c72_menuHA_GPS.hpp
// Information:
// Set the number of steps the DEC stepper motor needs to take to rotate by one degree.
// Parameters:
// "n.n" is the number of steps (only one decimal point is supported)
// "n.n" is the number of steps (only one decimal point is supported, must be positive)
// Returns:
// nothing
//
Expand Down
2 changes: 1 addition & 1 deletion src/Mount.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1585,7 +1585,7 @@ void Mount::stopGuiding(bool ra, bool dec)
/////////////////////////////////
void Mount::guidePulse(byte direction, int duration)
{
#if (DEBUG_LEVEL & (DEBUG_STEPPERS | DEBUG_GUIDE))
#if (DEBUG_LEVEL != DEBUG_NONE)
const char *directionName = "-NE-S---W";
#endif
LOG(DEBUG_STEPPERS | DEBUG_GUIDE, "[GUIDE]: guidePulse: > Guide Pulse %c for %dms", directionName[direction], duration);
Expand Down
Loading