Skip to content

Commit

Permalink
V1.13.2 - Updates
Browse files Browse the repository at this point in the history
- Fix for RA steps being incrrectly set on every boot.
  • Loading branch information
ClutchplateDude committed Apr 25, 2024
1 parent d96bab3 commit 0474a83
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
**V1.13.2 - Updates**
- Fix for RA steps being incrrectly set on every boot.

**V1.13.1 - Updates**
- Fix for uploading on AVR platform. Apparently [email protected] (current stable) is broken and can't upload, so we peg it at [email protected] for now.

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.1"
#define VERSION "V1.13.2"
2 changes: 1 addition & 1 deletion src/EPROMStore.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -391,7 +391,7 @@ float EEPROMStore::getRAStepsPerDegree()
if (isPresentExtended(RA_NORM_STEPS_MARKER_FLAG))
{
// Latest version stores 100x steps/deg for 256 MS
const float factor = SteppingStorageNormalized / RA_TRACKING_MICROSTEPPING;
const float factor = SteppingStorageNormalized / RA_SLEW_MICROSTEPPING;
raStepsPerDegree = readInt32(RA_NORM_STEPS_DEGREE_ADDR) / factor;
LOG(DEBUG_EEPROM, "[EEPROM]: RA Normed Marker Present! RA steps/deg is %f", raStepsPerDegree);
}
Expand Down

0 comments on commit 0474a83

Please sign in to comment.