Tidying small errors introduced (deliberately) at the last commit. This one should work.
This commit is contained in:
parent
ba04363345
commit
ebfc9bd75b
4 changed files with 4 additions and 4 deletions
|
@ -24,8 +24,8 @@ Licence: GPL
|
|||
#define CONFIGURATION_H
|
||||
|
||||
#define NAME "RepRapFirmware"
|
||||
#define VERSION "0.59"
|
||||
#define DATE "2014-02-19"
|
||||
#define VERSION "0.60"
|
||||
#define DATE "2014-02-20"
|
||||
#define LAST_AUTHOR "reprappro"
|
||||
|
||||
// Other firmware that we might switch to be compatible with.
|
||||
|
|
4
GCodes.h
4
GCodes.h
|
@ -80,7 +80,7 @@ class GCodes
|
|||
bool PrintingAFile() const; // Are we in the middle of printing a file?
|
||||
void Diagnostics(); // Send helpful information out
|
||||
bool HaveIncomingData() const; // Is there something that we have to do?
|
||||
//bool GetAxisIsHomed(uint8_t axis) const { return axisIsHomed[axis]; } // Not needed on voyage?
|
||||
bool GetAxisIsHomed(uint8_t axis) const { return axisIsHomed[axis]; } // Is the axis at 0?
|
||||
|
||||
private:
|
||||
|
||||
|
@ -156,7 +156,7 @@ class GCodes
|
|||
bool homeX; // True to home the X axis this move
|
||||
bool homeY; // True to home the Y axis this move
|
||||
bool homeZ; // True to home the Z axis this move
|
||||
//int8_t homeAxisMoveCount; // Not needed on voyage?
|
||||
int8_t homeAxisMoveCount; // Counts homing moves
|
||||
float gFeedRate; // Store for the current feedrate
|
||||
int probeCount; // Counts multiple probe points
|
||||
int8_t cannedCycleMoveCount; // Counts through internal (i.e. not macro) canned cycle moves
|
||||
|
|
Binary file not shown.
Binary file not shown.
Reference in a new issue