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-06-26 16:27:25 +0300
committerDavid Crocker <dcrocker@eschertech.com>2020-06-26 16:27:25 +0300
commit75ae6801b4bc5a9b83222333558230b2f462bd0f (patch)
tree3c85efc28c98a9be576024994ba254e5fd1a2121 /src/Configuration.h
parented4a2ed9f54d575f8ff79d7138eb6e28d1cce804 (diff)
Improvements for 5LC
Use 32-bit WiFi SPI transfers Increased sizes of write buffers, filename buffers etc. to match Duet 3
Diffstat (limited to 'src/Configuration.h')
-rw-r--r--src/Configuration.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Configuration.h b/src/Configuration.h
index c3567c6d..387e14db 100644
--- a/src/Configuration.h
+++ b/src/Configuration.h
@@ -208,7 +208,7 @@ constexpr float SILLY_Z_VALUE = -9999.0; // Millimetres
constexpr size_t MaxMessageLength = 256;
constexpr size_t MaxTitleLength = 61;
-#if SAM4E || SAM4S || SAME70 || defined(ESP_NETWORKING)
+#if SAM4E || SAM4S || SAME70 || SAME5x || defined(ESP_NETWORKING)
constexpr size_t MaxFilenameLength = 120; // Maximum length of a filename including the path
constexpr size_t MaxVariableNameLength = 120;
#else
@@ -232,7 +232,7 @@ constexpr size_t RepRapPasswordLength = StringLength20;
constexpr size_t MediumStringLength = MaxFilenameLength;
constexpr size_t StringBufferLength = StringLength256; // Length of the string buffer used by the expression parser
-#if SAM4E || SAM4S || SAME70 || defined(ESP_NETWORKING)
+#if SAM4E || SAM4S || SAME70 || SAME5x || defined(ESP_NETWORKING)
// Increased GCODE_LENGTH on the SAM4 because M587 and M589 commands on the Duet WiFi can get very long and GCode meta commands can get even longer
constexpr size_t GCODE_LENGTH = 201; // maximum number of non-comment characters in a line of GCode including the null terminator
constexpr size_t SHORT_GCODE_LENGTH = 61; // maximum length of a GCode that we can queue to synchronise it to a move