Instrument Neutral Distributed Interface INDI  2.0.2
deepskydad_af2.h
Go to the documentation of this file.
1 /*
2  Deep Sky Dad AF2
3 
4  Copyright (C) 2019 Pavle Gartner
5 
6  Based on Moonline driver.
7  Copyright (C) 2013-2019 Jasem Mutlaq (mutlaqja@ikarustech.com)
8 
9  This library is free software; you can redistribute it and/or
10  modify it under the terms of the GNU Lesser General Public
11  License as published by the Free Software Foundation; either
12  version 2.1 of the License, or (at your option) any later version.
13 
14  This library is distributed in the hope that it will be useful,
15  but WITHOUT ANY WARRANTY; without even the implied warranty of
16  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17  Lesser General Public License for more details.
18 
19  You should have received a copy of the GNU Lesser General Public
20  License along with this library; if not, write to the Free Software
21  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
22 
23 */
24 
25 #pragma once
26 
27 #include "indifocuser.h"
28 
29 #include <chrono>
30 
32 {
33  public:
34  DeepSkyDadAF2();
35  virtual ~DeepSkyDadAF2() override = default;
36 
37  typedef enum { FULL, HALF, QUARTER, EIGHT } FocusStepMode;
38 
41 
42  const char * getDefaultName() override;
43  virtual bool initProperties() override;
44  virtual bool updateProperties() override;
45  virtual bool ISNewSwitch(const char * dev, const char * name, ISState * states, char * names[], int n) override;
46  virtual bool ISNewNumber(const char * dev, const char * name, double values[], char * names[], int n) override;
47 
48  static void timedMoveHelper(void * context);
49  protected:
50  /*
51  * @brief Handshake Try to communicate with Focuser and see if there is a valid response.
52  * @return True if communication is successful, false otherwise.
53  */
54  virtual bool Handshake() override;
55 
63  virtual IPState MoveFocuser(FocusDirection dir, int speed, uint16_t duration) override;
64 
70  virtual IPState MoveAbsFocuser(uint32_t targetTicks) override;
71 
78  virtual IPState MoveRelFocuser(FocusDirection dir, uint32_t ticks) override;
79 
80  virtual bool SyncFocuser(uint32_t ticks) override;
81  virtual bool ReverseFocuser(bool enabled) override;
82  virtual bool AbortFocuser() override;
83  virtual void TimerHit() override;
84  virtual bool saveConfigItems(FILE * fp) override;
85 
86  private:
87  bool Ack();
95  bool sendCommand(const char * cmd, char * res = nullptr);
96  bool sendCommandSet(const char * cmd);
97 
98  // Get initial focuser parameter when we first connect
99  void GetFocusParams();
100  bool readStepMode();
101  bool readPosition();
102  bool readMaxPosition();
103  bool readMaxMovement();
104  bool readSettleBuffer();
105  bool readIdleCoilsTimeout();
106  bool readCoilsMode();
107  bool readCurrentMove();
108  bool readCurrentHold();
109  bool isMoving();
110  bool readTemperature();
111 
112  void timedMoveCallback();
113 
114  bool MoveFocuser(uint32_t position);
115 
116  double targetPos { 0 }, lastPos { 0 }, lastTemperature { 0 };
117 
118  // Step modes
119  ISwitch StepModeS[4];
120  ISwitchVectorProperty StepModeSP;
121 
122  // Coils mode
123  ISwitch CoilsModeS[3];
124  ISwitchVectorProperty CoilsModeSP;
125 
126  //Current move
127  ISwitch CurrentMoveS[4];
128  ISwitchVectorProperty CurrentMoveSP;
129 
130  //Current hold
131  ISwitch CurrentHoldS[4];
132  ISwitchVectorProperty CurrentHoldSP;
133 
134  // Max movement
135  INumber FocusMaxMoveN[1];
136  INumberVectorProperty FocusMaxMoveNP;
137 
138  // Settle buffer
139  INumber SettleBufferN[1];
140  INumberVectorProperty SettleBufferNP;
141 
142  // Idle coils timeout (ms)
143  INumber IdleCoilsTimeoutN[1];
144  INumberVectorProperty IdleCoilsTimeoutNP;
145 
146  INumber TemperatureN[1];
147  INumberVectorProperty TemperatureNP;
148 
149  // Response Buffer
150 
151  static const uint8_t DSD_RES { 32 };
152  static const char DSD_DEL { ')' };
153  static const uint8_t DSD_TIMEOUT { 3 };
154 };
virtual bool AbortFocuser() override
AbortFocuser all focus motion.
virtual bool ISNewSwitch(const char *dev, const char *name, ISState *states, char *names[], int n) override
Process the client newSwitch command.
virtual bool ISNewNumber(const char *dev, const char *name, double values[], char *names[], int n) override
Process the client newNumber command.
virtual void TimerHit() override
Callback function to be called once SetTimer duration elapses.
virtual ~DeepSkyDadAF2() override=default
virtual bool SyncFocuser(uint32_t ticks) override
SyncFocuser Set current position to ticks without moving the focuser.
virtual bool updateProperties() override
updateProperties is called whenever there is a change in the CONNECTION status of the driver....
virtual bool saveConfigItems(FILE *fp) override
saveConfigItems Saves the Device Port and Focuser Presets in the configuration file
virtual IPState MoveAbsFocuser(uint32_t targetTicks) override
MoveAbsFocuser Move to an absolute target position.
virtual bool ReverseFocuser(bool enabled) override
ReverseFocuser Reverse focuser motion direction.
virtual bool initProperties() override
Initilize properties initial state and value. The child class must implement this function.
virtual IPState MoveFocuser(FocusDirection dir, int speed, uint16_t duration) override
MoveFocuser Move focuser in a specific direction and speed for period of time.
virtual IPState MoveRelFocuser(FocusDirection dir, uint32_t ticks) override
MoveRelFocuser Move focuser for a relative amount of ticks in a specific direction.
const char * getDefaultName() override
static void timedMoveHelper(void *context)
virtual bool Handshake() override
perform handshake with device to check communication
ISState
Switch state.
Definition: indiapi.h:150
IPState
Property state.
Definition: indiapi.h:160
__u8 cmd[4]
Definition: pwc-ioctl.h:2
One number descriptor.
One switch descriptor.
Number vector property descriptor.
Definition: indiapi.h:319
Switch vector property descriptor.
Definition: indiapi.h:367