I recently pointed my scope to the moon and was surprised about INDI showing me that my tracking was set to solar rate. They are consistently mixed up for my iOptron CEM25P.
I was able to fix this with the following change:

diff --git a/drivers/telescope/ieqpro.cpp b/drivers/telescope/ieqpro.cpp
index 54ccf326..0a5be269 100644
--- a/drivers/telescope/ieqpro.cpp
+++ b/drivers/telescope/ieqpro.cpp
@@ -116,8 +116,8 @@ bool IEQPro::initProperties()
 
     /* Tracking Mode */
     AddTrackMode("TRACK_SIDEREAL", "Sidereal", true);
-    AddTrackMode("TRACK_SOLAR", "Solar");
     AddTrackMode("TRACK_LUNAR", "Lunar");
+    AddTrackMode("TRACK_SOLAR", "Solar");
     AddTrackMode("TRACK_KING", "King");
     AddTrackMode("TRACK_CUSTOM", "Custom");

Since I don't have a Github account, somebody please submit my patch for validation. I assume other iOptron mounts are also affected.

Thanks,
Max

Read More...