You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Fixed all known issues related to running in the southern hemisphere.
- Added support for DIR inversion to interrupt stepper library.
- Hemisphere no longer needs to be defined in config, firmware determines it automatically from the given Latitude, switching at the equator.
- Fixed the logic in Sync call to account for both hemispheres.
- Fixed some logic that stopped tracking when setting home position.
- Fixed a bug that caused the firmware to fail to recognize the end of very short slews.
- Added Meade Extension command to query remaining tracking time
- Added Meade Extension command to query the hemisphere that is set.
Copy file name to clipboardExpand all lines: src/Declination.cpp
+18-14Lines changed: 18 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,5 @@
1
-
#include"../Configuration.hpp"// For NORTHERN_HEMISPHERE only
1
+
#include"./inc/Globals.hpp"
2
+
#include"../Configuration.hpp"
2
3
#include"Utility.hpp"
3
4
#include"Declination.hpp"
4
5
@@ -11,13 +12,13 @@
11
12
// Parses the RA or DEC from a string that has an optional sign, a two digit degree, a seperator, a two digit minute, a seperator and a two digit second.
12
13
// For example: -45*32:11 or 23:44:22
13
14
14
-
// In the northern hemisphere, 0 is north pole, 180 and -180 is south pole
15
+
// In the NORTHERN hemisphere, 0 is north pole, 180 and -180 is south pole
15
16
//------------------ S---------------------------------------- N ---------------------------------- S
0 commit comments