wotalota created a new topic ' Advice on debug of Dome interfacing' in the forum. 1 year ago

I noticed a problem with my rolloffino driver when using the Observatory Unpark button. I would like to ask a developer if the following is really an issue or am I looking in the wrong version/places. It appears that Observatory and Dome drivers might be directed to different definitions.

KStars: kstars/indi/indidome.h

typedef enum
{
DOME_IDLE,
DOME_MOVING_CW,
DOME_MOVING_CCW,
DOME_TRACKING,
DOME_PARKING,
DOME_UNPARKING,
DOME_PARKED,
DOME_ERROR
} Status;

INDI: libs/indibase/indidome.h

typedef enum
{
DOME_IDLE, /*!< Dome is idle */
DOME_MOVING, /*!< Dome is in motion */
DOME_SYNCED, /*!< Dome is synced */
DOME_PARKING, /*!< Dome is parking */
DOME_UNPARKING, /*!< Dome is unparking */
DOME_PARKED, /*!< Dome is parked */
DOME_UNPARKED, /*!< Dome is unparked */
DOME_UNKNOWN, /*!< Dome state is known */
DOME_ERROR, /*!< Dome has errors */
} DomeState;

Read More...