This repository has been archived on 2025-02-01. You can view files and clone it, but cannot push or open issues or pull requests.
reprapfirmware-dc42/Move.h

146 lines
3.1 KiB
C++

/****************************************************************************************************
RepRapFirmware - Move
This is all the code to deal with movement and kinematics.
-----------------------------------------------------------------------------------------------------
Version 0.1
18 November 2012
Adrian Bowyer
RepRap Professional Ltd
http://reprappro.com
Licence: GPL
****************************************************************************************************/
#ifndef MOVE_H
#define MOVE_H
enum MovementProfile
{
nothing = 0, // No movement (i.e. end-position == start).
moving = 1, // Ordinary trapezoidal-velocity-profile movement
noFlat = 2, // Triangular profile movement
change = 3 // To make this movement, the initial and final velocities must change
};
class DDA
{
friend class Move;
public:
DDA(Move* m, Platform* p, DDA* n);
MovementProfile Init(float currentPosition[], float targetPosition[], float& u, float& v);
void Start(boolean noTest);
void Step(boolean noTest);
boolean Active();
DDA* Next();
private:
Move* move;
Platform* platform;
DDA* next;
long counter[DRIVES+1];
long delta[DRIVES+1];
boolean directions[DRIVES+1];
long totalSteps;
long stepCount;
float timeStep;
float velocity;
long stopAStep;
long startDStep;
float distance;
float dCross;
float acceleration;
float jerk;
volatile boolean active;
};
class Move
{
public:
Move(Platform* p, GCodes* g);
void Init();
void Spin();
void Exit();
void Qmove();
void GetCurrentState(float m[]);
void Interrupt();
void InterruptTime();
friend class DDA;
private:
boolean DDARingAdd(float currentPosition[], float targetPosition[], float& u, float& v);
DDA* DDARingGet();
boolean DDARingEmpty();
boolean DDARingFull();
boolean GetDDARingLock();
void ReleaseDDARingLock();
Platform* platform;
GCodes* gCodes;
DDA* dda;
DDA* ddaRingAddPointer;
DDA* ddaRingGetPointer;
volatile boolean ddaRingLocked;
unsigned long lastTime;
boolean active;
boolean moveWaiting;
float currentFeedrate;
float currentPosition[AXES]; // Note - drives above AXES are always relative moves
float nextMove[DRIVES + 1]; // Extra is for feedrate
float stepDistances[(1<<AXES)]; // Index bits: lsb -> dx, dy, dz <- msb
float extruderStepDistances[(1<<(DRIVES-AXES))]; // NB - limits us to 5 extruders
};
//********************************************************************************************************
inline boolean DDA::Active()
{
return active;
}
inline DDA* DDA::Next()
{
return next;
}
inline boolean Move::DDARingEmpty()
{
return ddaRingGetPointer == ddaRingAddPointer;
}
// Leave a gap of 2 as the last Get result may still be being processed
inline boolean Move::DDARingFull()
{
return ddaRingGetPointer->Next()->Next() == ddaRingAddPointer;
}
inline boolean Move::GetDDARingLock()
{
if(ddaRingLocked)
return false;
ddaRingLocked = true;
return true;
}
inline void Move::ReleaseDDARingLock()
{
ddaRingLocked = false;
}
#endif