Initial commit, WIP
This commit is contained in:
12
src/seleneAngleAxis.cpp
Normal file
12
src/seleneAngleAxis.cpp
Normal file
@@ -0,0 +1,12 @@
|
||||
#include "seleneAngleAxis.h"
|
||||
#include "seleneLiftAxis.h"
|
||||
|
||||
seleneAngleAxis::seleneAngleAxis(turboPmacController *pController, int axisNo) {
|
||||
// Initialize the associated lift axis as a nullptr. It is populated in the
|
||||
// constructor of seleneLiftAxis.
|
||||
liftAxis_ = nullptr;
|
||||
}
|
||||
|
||||
asynStatus seleneAngleAxis::stop(double acceleration) {
|
||||
return liftAxis_->stop(acceleration);
|
||||
}
|
||||
Reference in New Issue
Block a user