Skip to content

Commit

Permalink
V1.13.11 - Updates
Browse files Browse the repository at this point in the history
- Fixed DEBUG_LEVEL usage in Mount.cpp
- Clarified some Meade command parameters.
  • Loading branch information
ClutchplateDude committed Dec 19, 2024
1 parent 5e7e3eb commit aa2584d
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
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

0 comments on commit aa2584d

Please sign in to comment.