Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Hammacher <bmasterc@gmail.com>2019-04-02 17:30:00 +0300
committerChristian Hammacher <bmasterc@gmail.com>2019-04-02 17:30:00 +0300
commitc92e58cab87d5afecc9272748b664d645fa99acb (patch)
tree411f464608c29b78b7e10a8542c4ccefaa1eb841 /src/GCodes/GCodeQueue.h
parenteb15d39444187e22741b3206e10961198d498a12 (diff)
More work on SPI transfers
United GCodeBuffer types to allow binary and string content Prepared GCode flow to deal with new SPI communication Linux interface can now access every GCodeBuffer instance Bug fix: When DoMacroFile could not push the stack, the file was not closed
Diffstat (limited to 'src/GCodes/GCodeQueue.h')
-rw-r--r--src/GCodes/GCodeQueue.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/GCodes/GCodeQueue.h b/src/GCodes/GCodeQueue.h
index 113d3d64..fe6feb2f 100644
--- a/src/GCodes/GCodeQueue.h
+++ b/src/GCodes/GCodeQueue.h
@@ -44,6 +44,7 @@ public:
private:
QueuedCode *next;
+ bool isBinary;
char data[BufferSizePerQueueItem];
size_t dataLength;