farmbot-arduino-firmware/src/StepperControl.cpp

644 lines
17 KiB
C++
Raw Normal View History

#include "StepperControl.h"
2015-06-14 15:08:57 -06:00
#include "TimerOne.h"
static StepperControl* instance;
StepperControl * StepperControl::getInstance() {
if (!instance) {
instance = new StepperControl();
};
return instance;
}
;
2015-07-13 15:22:43 -06:00
const int MOVEMENT_INTERRUPT_SPEED = 100; // Interrupt cycle in micro seconds
2015-06-14 15:08:57 -06:00
StepperControl::StepperControl() {
2015-08-01 16:22:07 -06:00
axisX = StepperControlAxis();
axisY = StepperControlAxis();
axisZ = StepperControlAxis();
axisX.loadPinNumbers(X_STEP_PIN, X_DIR_PIN, X_ENABLE_PIN, X_MIN_PIN, X_MAX_PIN);
axisY.loadPinNumbers(Y_STEP_PIN, Y_DIR_PIN, Y_ENABLE_PIN, Y_MIN_PIN, Y_MAX_PIN);
axisZ.loadPinNumbers(Z_STEP_PIN, Z_DIR_PIN, Z_ENABLE_PIN, Z_MIN_PIN, Z_MAX_PIN);
}
2014-06-25 14:22:52 -06:00
/**
* xDest - destination X in steps
* yDest - destination Y in steps
* zDest - destination Z in steps
* maxStepsPerSecond - maximum number of steps per second
* maxAccelerationStepsPerSecond - maximum number of acceleration in steps per second
*/
2015-08-03 15:12:49 -06:00
int StepperControl::moveToCoords( long xDest, long yDest, long zDest,
2014-08-06 16:04:40 -06:00
unsigned int xMaxSpd, unsigned int yMaxSpd, unsigned int zMaxSpd,
bool xHome, bool yHome, bool zHome) {
2014-07-15 14:23:01 -06:00
2015-08-01 16:22:07 -06:00
// Load settings
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
bool homeIsUp[3] = {false,false,false};
2015-06-15 15:16:33 -06:00
homeIsUp[0] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_X);
homeIsUp[1] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_Y);
homeIsUp[2] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_Z);
2015-06-14 15:08:57 -06:00
2015-08-01 16:22:07 -06:00
long speedMax[3] = {0,0,0};
2015-06-15 15:16:33 -06:00
speedMax[0] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_X);
speedMax[1] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_Y);
speedMax[2] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_Z);
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
long speedMin[3] = {0,0,0};
2015-06-15 15:16:33 -06:00
speedMin[0] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_X);
speedMin[1] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_Y);
speedMin[2] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_Z);
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
long stepsAcc[3] = {0,0,0};
2015-06-15 15:16:33 -06:00
stepsAcc[0] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_X);
stepsAcc[1] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_Y);
stepsAcc[2] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_Z);
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
bool motorInv[3] = {false,false,false};
2015-06-15 15:16:33 -06:00
motorInv[0] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_X);
motorInv[1] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Y);
motorInv[2] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Z);
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
bool endStInv[3] = {false,false,false};
2015-06-15 15:16:33 -06:00
endStInv[0] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_X);
endStInv[1] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_Y);
endStInv[2] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_Z);
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
long timeOut[3] = {0,0,0};
2015-06-15 15:16:33 -06:00
timeOut[0] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_X);
timeOut[1] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_X);
timeOut[2] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_X);
2014-08-06 16:04:40 -06:00
2015-06-21 15:39:45 -06:00
2014-07-29 16:12:19 -06:00
unsigned long currentMillis = 0;
2014-07-25 14:32:37 -06:00
unsigned long timeStart = millis();
2014-07-15 14:23:01 -06:00
2015-06-14 15:08:57 -06:00
2014-10-24 16:02:50 -06:00
int incomingByte = 0;
2014-07-25 14:32:37 -06:00
int error = 0;
2014-08-06 16:04:40 -06:00
// if a speed is given in the command, use that instead of the config speed
if (xMaxSpd > 0 && xMaxSpd < speedMax[0]) {
speedMax[0] = xMaxSpd;
}
if (yMaxSpd > 0 && yMaxSpd < speedMax[1]) {
speedMax[1] = yMaxSpd;
}
if (zMaxSpd > 0 && zMaxSpd < speedMax[2]) {
speedMax[2] = zMaxSpd;
2014-07-29 16:12:19 -06:00
}
2014-08-06 16:04:40 -06:00
2015-08-01 16:22:07 -06:00
homeIsUp[0] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_X);
homeIsUp[1] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_Y);
homeIsUp[2] = ParameterList::getInstance()->getValue(MOVEMENT_HOME_UP_Z);
speedMax[0] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_X);
speedMax[1] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_Y);
speedMax[2] = ParameterList::getInstance()->getValue(MOVEMENT_MAX_SPD_Z);
speedMin[0] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_X);
speedMin[1] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_Y);
speedMin[2] = ParameterList::getInstance()->getValue(MOVEMENT_MIN_SPD_Z);
stepsAcc[0] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_X);
stepsAcc[1] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_Y);
stepsAcc[2] = ParameterList::getInstance()->getValue(MOVEMENT_STEPS_ACC_DEC_Z);
motorInv[0] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_X);
motorInv[1] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Y);
motorInv[2] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Z);
endStInv[0] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_X);
endStInv[1] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_Y);
endStInv[2] = ParameterList::getInstance()->getValue(MOVEMENT_INVERT_ENDPOINTS_Z);
timeOut[0] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_X);
timeOut[1] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_Y);
timeOut[2] = ParameterList::getInstance()->getValue(MOVEMENT_TIMEOUT_Z);
axisX.loadMotorSettings(speedMax[0], speedMin[0], stepsAcc[0], timeOut[0], homeIsUp[0], motorInv[0], endStInv[0], MOVEMENT_INTERRUPT_SPEED);
axisY.loadMotorSettings(speedMax[1], speedMin[1], stepsAcc[1], timeOut[1], homeIsUp[1], motorInv[1], endStInv[1], MOVEMENT_INTERRUPT_SPEED);
axisZ.loadMotorSettings(speedMax[2], speedMin[2], stepsAcc[2], timeOut[2], homeIsUp[2], motorInv[2], endStInv[2], MOVEMENT_INTERRUPT_SPEED);
2015-08-02 16:16:35 -06:00
// Load coordinates
2015-06-24 14:58:45 -06:00
2015-08-02 16:16:35 -06:00
long sourcePoint[3] = {0,0,0};
2015-08-01 16:22:07 -06:00
sourcePoint[0] = CurrentState::getInstance()->getX();
sourcePoint[1] = CurrentState::getInstance()->getY();
sourcePoint[2] = CurrentState::getInstance()->getZ();
2015-08-02 16:16:35 -06:00
long currentPoint[3] = {0,0,0};
2015-08-01 16:22:07 -06:00
currentPoint[0] = CurrentState::getInstance()->getX();
currentPoint[1] = CurrentState::getInstance()->getY();
currentPoint[2] = CurrentState::getInstance()->getZ();
2015-08-02 16:16:35 -06:00
long destinationPoint[3]= {0,0,0};
2015-08-01 16:22:07 -06:00
destinationPoint[0] = xDest;
destinationPoint[1] = yDest;
destinationPoint[2] = zDest;
2015-08-02 16:16:35 -06:00
// Limit normal movmement to the home position
for (int i = 0; i < 3; i++) {
if (!homeIsUp[i] && destinationPoint[i] < 0) {
destinationPoint[i] = 0;
}
2015-08-01 16:22:07 -06:00
2015-08-02 16:16:35 -06:00
if ( homeIsUp[i] && destinationPoint[i] > 0) {
destinationPoint[i] = 0;
}
}
2015-08-01 16:22:07 -06:00
axisX.loadCoordinates(currentPoint[0],destinationPoint[0],xHome);
axisY.loadCoordinates(currentPoint[1],destinationPoint[1],yHome);
axisZ.loadCoordinates(currentPoint[2],destinationPoint[2],zHome);
2015-06-24 14:58:45 -06:00
2015-08-02 16:16:35 -06:00
// Prepare for movement
2015-08-01 16:22:07 -06:00
//axisX.setDirection()
//axisY.setDirection()
//axisZ.setDirection()
2014-08-06 16:04:40 -06:00
2014-07-23 01:46:21 -06:00
storeEndStops();
2014-07-15 14:23:01 -06:00
reportEndStops();
2015-08-01 16:22:07 -06:00
2015-08-02 16:16:35 -06:00
enableMotors();
2014-06-25 14:22:52 -06:00
2014-08-06 16:04:40 -06:00
// Start movement
2015-06-15 15:16:33 -06:00
axisActive[0] = true;
axisActive[1] = true;
axisActive[2] = true;
2015-06-14 15:08:57 -06:00
2015-08-02 16:16:35 -06:00
axisX.checkMovement();
axisY.checkMovement();
axisZ.checkMovement();
2015-06-14 15:08:57 -06:00
2015-08-01 16:22:07 -06:00
//Timer1.start();
2015-06-21 15:39:45 -06:00
2015-06-14 15:08:57 -06:00
// Let the interrupt handle all the movements
2015-06-15 15:16:33 -06:00
while (axisActive[0] || axisActive[1] || axisActive[2]) {
2015-08-01 16:22:07 -06:00
2015-07-13 15:22:43 -06:00
//delay(50);
delayMicroseconds(100);
2014-07-15 14:23:01 -06:00
2015-08-01 16:22:07 -06:00
//Serial.print("R99 ");
//Serial.print(" maximim speed ");
//Serial.print(speedMax[0]);
//Serial.print("\n");
2015-06-24 14:58:45 -06:00
2015-08-02 16:16:35 -06:00
axisX.checkTiming();
axisY.checkTiming();
axisZ.checkTiming();
2015-06-21 15:39:45 -06:00
2015-08-01 16:22:07 -06:00
axisActive[0] = axisX.isAxisActive();
axisActive[1] = axisY.isAxisActive();
axisActive[2] = axisZ.isAxisActive();
2015-06-21 15:39:45 -06:00
2015-08-01 16:22:07 -06:00
//axisActive[0] = false;
//axisActive[1] = false;
//axisActive[2] = false;
2015-07-13 15:22:43 -06:00
2014-07-23 01:46:21 -06:00
storeEndStops();
2015-06-14 15:08:57 -06:00
// Check timeouts
2015-07-13 15:22:43 -06:00
if (axisActive[0] == true && ((millis() >= timeStart && millis() - timeStart > timeOut[0] * 1000) || (millis() < timeStart && millis() > timeOut[0] * 1000))) {
2015-06-14 15:08:57 -06:00
error = 1;
}
2015-07-13 15:22:43 -06:00
if (axisActive[1] == true && ((millis() >= timeStart && millis() - timeStart > timeOut[0] * 1000) || (millis() < timeStart && millis() > timeOut[0] * 1000))) {
2015-06-14 15:08:57 -06:00
error = 1;
}
2015-07-13 15:22:43 -06:00
if (axisActive[2] == true && ((millis() >= timeStart && millis() - timeStart > timeOut[0] * 1000) || (millis() < timeStart && millis() > timeOut[0] * 1000))) {
2015-06-14 15:08:57 -06:00
error = 1;
}
2014-10-24 16:02:50 -06:00
// Check if there is an emergency stop command
if (Serial.available() > 0) {
incomingByte = Serial.read();
if (incomingByte == 69 || incomingByte == 101) {
2015-06-14 15:08:57 -06:00
error = 1;
}
2014-10-24 16:02:50 -06:00
}
2015-06-14 15:08:57 -06:00
if (error == 1) {
2015-08-01 16:22:07 -06:00
//Serial.print("R99 error\n");
2015-06-14 15:08:57 -06:00
Timer1.stop();
2015-06-15 15:16:33 -06:00
axisActive[0] = false;
axisActive[1] = false;
axisActive[2] = false;
2014-06-25 14:22:52 -06:00
}
2014-10-12 15:57:07 -06:00
2015-06-14 15:08:57 -06:00
// Periodically send message still active
2014-06-25 14:22:52 -06:00
currentMillis++;
2015-06-14 15:08:57 -06:00
if (currentMillis % 2500 == 0)
2014-10-12 15:57:07 -06:00
{
Serial.print("R04\n");
}
2014-06-25 14:22:52 -06:00
}
2015-08-01 16:22:07 -06:00
/**/Serial.print("R99 stopped\n");
2015-06-21 15:39:45 -06:00
2015-06-14 15:08:57 -06:00
Timer1.stop();
2015-08-02 16:16:35 -06:00
disableMotors();
2014-07-23 01:46:21 -06:00
CurrentState::getInstance()->setX(currentPoint[0]);
CurrentState::getInstance()->setY(currentPoint[1]);
CurrentState::getInstance()->setZ(currentPoint[2]);
2014-07-23 01:46:21 -06:00
storeEndStops();
reportEndStops();
2014-07-25 14:32:37 -06:00
reportPosition();
2014-08-27 15:11:09 -06:00
2014-07-25 14:32:37 -06:00
return error;
}
2014-09-04 15:10:47 -06:00
//
// Calibration
//
int StepperControl::calibrateAxis(int axis) {
2015-08-01 16:22:07 -06:00
int error = 1;
2014-09-04 15:10:47 -06:00
2015-08-01 16:22:07 -06:00
/*
2014-09-22 14:35:01 -06:00
int parMotInv[3] = { 31, 32, 33};
int parEndInv[3] = { 21, 22, 23};
2014-10-09 15:35:26 -06:00
int parNbrStp[3] = {801,802,803};
2014-09-22 14:35:01 -06:00
2014-09-21 14:42:44 -06:00
bool motorInv[3] = { ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_X),
ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Y),
ParameterList::getInstance()->getValue(MOVEMENT_INVERT_MOTOR_Z) };
bool homeAxis[3] = {false,false,false};
bool homeIsUp[3] = {false,false,false};
long speedMin[3] = {200,200,200};
bool endStInv[3] = {false,false,false};
long timeOut[3] = {5000,5000,5000};
2014-09-04 15:10:47 -06:00
long stepPin[3] = { X_STEP_PIN,
Y_STEP_PIN,
Z_STEP_PIN };
long dirPin[3] = { X_DIR_PIN,
Y_DIR_PIN,
Z_DIR_PIN };
// Set the coordinate variables for homing, so the default functions can be used for settign direction
2014-09-21 14:42:44 -06:00
long sourcePoint[3] = { 0, 0, 0 };
long destinationPoint[3] = { 0, 0, 0 };
2014-09-04 15:10:47 -06:00
unsigned long currentMillis = 0;
unsigned long currentSteps = 0;
unsigned long lastStepMillis = 0;
unsigned long timeStart = millis();
bool movementDone = false;
2014-09-22 14:35:01 -06:00
int paramValueInt = 0;
2014-09-21 14:42:44 -06:00
bool invertEndStops = false;
int stepsCount = 0;
2015-06-24 14:58:45 -06:00
int incomingByte = 0;
int error = 0;
2014-09-04 15:10:47 -06:00
// Prepare for movement
storeEndStops();
reportEndStops();
2014-09-21 14:42:44 -06:00
// Preliminary checks
if (endStopMin(axis) || endStopMax(axis)) {
2014-10-12 15:57:07 -06:00
Serial.print("R99 Calibration error: end stop active before start\n");
2014-09-21 14:42:44 -06:00
return 1;
}
2015-08-01 16:22:07 -06:00
*/
2014-10-12 15:57:07 -06:00
/*
Serial.print("R99");
Serial.print(" ");
Serial.print("calibration start");
Serial.print("\n");
*/
2015-08-01 16:22:07 -06:00
/*
2014-09-04 15:10:47 -06:00
// Move towards home
2014-09-21 14:42:44 -06:00
enableMotors(true);
2014-09-04 15:10:47 -06:00
movementDone = false;
2014-09-21 14:42:44 -06:00
setDirectionAxis(dirPin[0], 0, -1, homeAxis[axis], homeIsUp[axis], motorInv[axis]);
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
while (!movementDone && error == 0) {
2014-09-04 15:10:47 -06:00
2014-10-24 16:02:50 -06:00
// Check if there is an emergency stop command
if (Serial.available() > 0) {
incomingByte = Serial.read();
if (incomingByte == 69 || incomingByte == 101) {
movementDone = true;
error = 1;
}
}
2014-09-04 15:10:47 -06:00
// Move until the end stop for home position is reached
2014-10-24 16:02:50 -06:00
if ((!endStopMin(axis) && !endStopMax(axis)) && !movementDone) {
2014-09-04 15:10:47 -06:00
2015-07-13 15:22:43 -06:00
if ((millis() >= timeStart && millis() - timeStart > timeOut[axis] * 1000) || (millis() < timeStart && millis() > timeOut[axis] * 1000)) {
2014-09-04 15:10:47 -06:00
movementDone = true;
error = 1;
} else {
2014-09-21 14:42:44 -06:00
// Only do a step every x milliseconds (x is calculated above)
if (currentMillis - lastStepMillis >= MOVEMENT_SPEED_BASE_TIME / speedMin[axis]) {
digitalWrite(X_STEP_PIN, HIGH);
2014-10-12 15:57:07 -06:00
lastStepMillis = currentMillis;
2014-09-04 15:10:47 -06:00
}
}
2014-10-12 15:57:07 -06:00
delayMicroseconds(MOVEMENT_DELAY);
2014-09-04 15:10:47 -06:00
currentMillis++;
2014-10-12 15:57:07 -06:00
if (currentMillis % 10000 == 0)
{
// Periodically send message still active
Serial.print("R04\n");
}
2014-09-04 15:10:47 -06:00
digitalWrite(X_STEP_PIN, LOW);
2014-10-12 15:57:07 -06:00
delayMicroseconds(MOVEMENT_DELAY);
2014-09-04 15:10:47 -06:00
} else {
movementDone = true;
2014-09-21 14:42:44 -06:00
// If end stop for home is active, set the position to zero
if (endStopMax(axis))
{
invertEndStops = true;
}
2014-09-04 15:10:47 -06:00
}
}
2015-08-01 16:22:07 -06:00
*/
2014-10-12 15:57:07 -06:00
/*
Serial.print("R99");
Serial.print(" ");
Serial.print("calibration halfway");
Serial.print(" ");
Serial.print("end stop invert");
Serial.print(" ");
Serial.print(invertEndStops);
Serial.print(" ");
Serial.print("error");
Serial.print(" ");
Serial.print(error);
Serial.print("\n");
*/
2015-08-01 16:22:07 -06:00
/*
2014-09-22 14:35:01 -06:00
// Report back the end stop setting
if (error == 0) {
if (invertEndStops) {
paramValueInt = 1;
} else {
paramValueInt = 0;
}
Serial.print("R23");
Serial.print(" ");
Serial.print("P");
Serial.print(parEndInv[axis]);
Serial.print(" ");
Serial.print("V");
2014-10-09 15:35:26 -06:00
Serial.print(paramValueInt);
Serial.print("\n");
2014-09-22 14:35:01 -06:00
}
2014-09-04 15:10:47 -06:00
2014-09-22 14:35:01 -06:00
// Store the status of the system
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
storeEndStops();
reportEndStops();
2014-09-22 14:35:01 -06:00
//reportPosition();
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
// Move into the other direction now, and measure the number of steps
2014-09-04 15:10:47 -06:00
2014-10-12 15:57:07 -06:00
stepsCount = 0;
2014-09-21 14:42:44 -06:00
movementDone = false;
setDirectionAxis(dirPin[0], 0, 1, homeAxis[axis], homeIsUp[axis], motorInv[axis]);
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
while (!movementDone && error == 0) {
2014-09-04 15:10:47 -06:00
2014-10-24 16:02:50 -06:00
// Check if there is an emergency stop command
if (Serial.available() > 0) {
incomingByte = Serial.read();
if (incomingByte == 69 || incomingByte == 101) {
movementDone = true;
error = 1;
}
}
2014-09-21 14:42:44 -06:00
// Move until the end stop at the other side of the axis is reached
2014-10-24 16:02:50 -06:00
if (((!invertEndStops && !endStopMax(axis)) || (invertEndStops && !endStopMin(axis))) && !movementDone) {
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
if (millis() - timeStart > timeOut[axis] * MOVEMENT_SPEED_BASE_TIME) {
movementDone = true;
error = 1;
} else {
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
// Only do a step every x milliseconds (x is calculated above)
if (currentMillis - lastStepMillis >= MOVEMENT_SPEED_BASE_TIME / speedMin[axis]) {
digitalWrite(X_STEP_PIN, HIGH);
stepsCount++;
2014-10-12 15:57:07 -06:00
lastStepMillis = currentMillis;
2014-09-21 14:42:44 -06:00
}
}
2014-09-04 15:10:47 -06:00
2014-10-12 15:57:07 -06:00
delayMicroseconds(MOVEMENT_DELAY);
2014-09-21 14:42:44 -06:00
currentMillis++;
2014-10-12 15:57:07 -06:00
if (currentMillis % 10000 == 0)
{
// Periodically send message still active
Serial.print("R04\n");
}
2014-09-21 14:42:44 -06:00
digitalWrite(X_STEP_PIN, LOW);
2014-10-12 15:57:07 -06:00
delayMicroseconds(MOVEMENT_DELAY);
2014-09-04 15:10:47 -06:00
2014-09-21 14:42:44 -06:00
} else {
2014-09-04 15:10:47 -06:00
movementDone = true;
}
}
2014-10-12 15:57:07 -06:00
2015-08-01 16:22:07 -06:00
*/
2014-10-12 15:57:07 -06:00
/*
Serial.print("R99");
Serial.print(" ");
Serial.print("calibration done");
Serial.print(" ");
Serial.print("nr steps");
Serial.print(" ");
Serial.print(stepsCount);
Serial.print(" ");
Serial.print("error");
Serial.print(" ");
Serial.print(error);
Serial.print("\n");
*/
2015-08-01 16:22:07 -06:00
/*
2014-09-22 14:35:01 -06:00
// Report back the end stop setting
if (error == 0) {
Serial.print("R23");
Serial.print(" ");
Serial.print("P");
Serial.print(parNbrStp[axis]);
Serial.print(" ");
Serial.print("V");
2014-10-12 15:57:07 -06:00
Serial.print(stepsCount);
2014-10-09 15:35:26 -06:00
Serial.print("\n");
2014-09-22 14:35:01 -06:00
}
2014-09-04 15:10:47 -06:00
2014-09-22 14:35:01 -06:00
enableMotors(false);
2014-09-04 15:10:47 -06:00
storeEndStops();
reportEndStops();
2014-10-12 15:57:07 -06:00
switch (axis) {
case 0:
CurrentState::getInstance()->setX(stepsCount);
break;
case 1:
CurrentState::getInstance()->setY(stepsCount);
break;
case 2:
CurrentState::getInstance()->setZ(stepsCount);
break;
}
reportPosition();
2015-08-01 16:22:07 -06:00
*/
2014-09-04 15:10:47 -06:00
return error;
}
2015-06-14 15:08:57 -06:00
2015-08-02 16:16:35 -06:00
// Handle movement by checking each axis
void StepperControl::handleMovementInterrupt(void){
//Serial.print("R99 interrupt\n");
//Serial.print("R99 interrupt data ");
//Serial.print(" destination point ");
//Serial.print(destinationPoint[0]);
//Serial.print(" ");
//Serial.print("test ");
//Serial.print(test);
//Serial.print("\n");
axisX.checkTiming();
axisY.checkTiming();
axisZ.checkTiming();
}
bool interruptBusy = false;
void handleMovementInterruptTest(void) {
if (interruptBusy == false) {
interruptBusy = true;
StepperControl::getInstance()->handleMovementInterrupt();
//blinkLed();
interruptBusy = false;
}
}
// Start the interrupt used for moviing
// Interrupt management code library written by Paul Stoffregen
void StepperControl::initInterrupt() {
//Timer1.attachInterrupt(StepperControl::getInstance()->handleMovementInterrupt);
Timer1.attachInterrupt(handleMovementInterruptTest);
Timer1.initialize(MOVEMENT_INTERRUPT_SPEED);
Timer1.stop();
}
unsigned long StepperControl::getMaxLength(unsigned long lengths[3]) {
unsigned long max = lengths[0];
for (int i = 1; i < 3; i++) {
if (lengths[i] > max) {
max = lengths[i];
}
}
return max;
}
void StepperControl::enableMotors() {
axisX.enableMotor();
axisY.enableMotor();
axisZ.enableMotor();
delay(100);
}
void StepperControl::disableMotors() {
axisX.disableMotor();
axisY.disableMotor();
axisZ.disableMotor();
delay(100);
}
bool StepperControl::endStopsReached() {
if ( axisX.endStopsReached() ||
axisY.endStopsReached() ||
axisZ.endStopsReached()) {
return true;
}
return false;
}
void StepperControl::reportEndStops() {
CurrentState::getInstance()->printEndStops();
}
void StepperControl::reportPosition(){
CurrentState::getInstance()->printPosition();
}
void StepperControl::storeEndStops() {
CurrentState::getInstance()->storeEndStops();
}
/**
* water is dosed by setting the pin for the water high for a number of miliseconds
*
*/
//void StepperControl::doseWaterByTime(long time) {
// digitalWrite(HEATER_1_PIN, HIGH);
// delay(time);
// digitalWrite(HEATER_1_PIN, LOW);
//}