Skip to content

Commit

Permalink
Remove unnecessary libindi prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
knro committed Sep 10, 2021
1 parent 1645b73 commit ef882b3
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions indi-celestronaux/celestronaux.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#pragma once

#include <indicom.h>
#include <libindi/indiguiderinterface.h>
#include <indiguiderinterface.h>
#include <inditelescope.h>
#include <connectionplugins/connectionserial.h>
#include <connectionplugins/connectiontcp.h>
Expand All @@ -48,8 +48,8 @@ class CelestronAUX :
virtual bool ISNewSwitch(const char *dev, const char *name, ISState *states, char *names[], int n) override;
virtual bool ISNewText(const char *dev, const char *name, char *texts[], char *names[], int n) override;
virtual bool ISSnoopDevice(XMLEle *root) override;
long requestedCordwrapPos;
double getNorthAz();
long requestedCordwrapPos;
double getNorthAz();

protected:
virtual bool initProperties() override;
Expand All @@ -73,7 +73,7 @@ class CelestronAUX :
virtual IPState GuideEast(uint32_t ms) override;
virtual IPState GuideWest(uint32_t ms) override;

virtual bool HandleGetAutoguideRate(INDI_EQ_AXIS axis,uint8_t rate);
virtual bool HandleGetAutoguideRate(INDI_EQ_AXIS axis, uint8_t rate);
virtual bool HandleSetAutoguideRate(INDI_EQ_AXIS axis);
virtual bool HandleGuidePulse(INDI_EQ_AXIS axis);
virtual bool HandleGuidePulseDone(INDI_EQ_AXIS axis, bool done);
Expand Down Expand Up @@ -202,7 +202,7 @@ class CelestronAUX :
bool sendAUXCommand(AUXCommand &c);
void formatVersionString(char *s, int n, uint8_t *verBuf);

// Current steps from controller
// Current steps from controller
// AUX protocol uses signed 24bit integers for positions
int32_t m_AltSteps {0};
int32_t m_AzSteps {0};
Expand Down Expand Up @@ -283,7 +283,7 @@ class CelestronAUX :
ISwitchVectorProperty GPSEmuSP;
enum { GPSEMU_OFF, GPSEMU_ON };
// guide
INumber GuideRateN[2]{};
INumber GuideRateN[2] {};
INumberVectorProperty GuideRateNP;

///////////////////////////////////////////////////////////////////////////////
Expand Down

0 comments on commit ef882b3

Please sign in to comment.