File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change
1
+ ** V1.12.17 - Updates**
2
+ - Fixed a bug that prevented clients from writing the DEC offset.
3
+
1
4
** V1.12.16 - Updates**
2
5
- Fixed a bug that prevented clients from reading the DEC offset.
3
6
Original file line number Diff line number Diff line change 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
5
6
- #define VERSION "V1.12.16 "
6
+ #define VERSION "V1.12.17 "
Original file line number Diff line number Diff line change @@ -1885,10 +1885,10 @@ String MeadeCommandProcessor::handleMeadeExtraCommands(String inCmd)
1885
1885
{
1886
1886
_mount->setHomingOffset (StepperAxis::RA_STEPS, inCmd.substring (3 ).toInt ());
1887
1887
}
1888
- }
1889
- else if (inCmd. length () > 2 && inCmd[ 2 ] == ' D ' ) // :XSHD
1890
- {
1891
- _mount-> setHomingOffset (StepperAxis::DEC_STEPS, inCmd. substring ( 3 ). toInt ());
1888
+ else if (inCmd[ 2 ] == ' D ' ) // :XSHD
1889
+ {
1890
+ _mount-> setHomingOffset (StepperAxis::DEC_STEPS, inCmd. substring ( 3 ). toInt ());
1891
+ }
1892
1892
}
1893
1893
}
1894
1894
}
You can’t perform that action at this time.
0 commit comments