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:
authorDavid Crocker <dcrocker@eschertech.com>2020-01-12 00:31:56 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-01-12 00:31:56 +0300
commitce146c5bc3437aad903a2efd1b79a70a45821456 (patch)
treeb77d5f9b0ffb9fbf54edeeaf3211f08afeb284d4 /src/GCodes/GCodeFileInfo.h
parent0a4abc45d3964674aa580b452bfbb676cf8bf4a6 (diff)
Saved another 1Kb of RAM on Duet 2 build
Reduced file read buffer size in class FileInforParser from 2kb to 1Kb
Diffstat (limited to 'src/GCodes/GCodeFileInfo.h')
-rw-r--r--src/GCodes/GCodeFileInfo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/GCodes/GCodeFileInfo.h b/src/GCodes/GCodeFileInfo.h
index 7c6e09ac..a84d7591 100644
--- a/src/GCodes/GCodeFileInfo.h
+++ b/src/GCodes/GCodeFileInfo.h
@@ -28,7 +28,7 @@ struct GCodeFileInfo
unsigned int numFilaments;
bool isValid;
bool incomplete;
- String<50> generatedBy;
+ String<StringLength50> generatedBy;
};
#endif /* SRC_GCODES_GCODEFILEINFO_H_ */