Added girder translation axis drivers

This commit is contained in:
Mathis Stefan
2024-07-18 13:43:12 +02:00
parent 30228adf50
commit c972cce072
5 changed files with 335 additions and 2 deletions

View File

@@ -189,4 +189,21 @@ protected:
time_t det_startTime;
};
/*----------------------------------------------------------------------------------------------*/
class GirderAxis: public pmacV3Axis {
public:
GirderAxis(pmacController *pController, int axisNo);
asynStatus move(double position, int relative, double min_velocity, double max_velocity, double acceleration);
asynStatus stop(double acceleration);
asynStatus poll(bool *moving);
protected:
int IsEnable;
friend class pmacController;
friend class pmacV3Controller;
};
#endif /* pmacAxis_H */