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>2021-02-08 13:45:06 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-02-08 13:45:06 +0300
commitdf621d7110d27549cf6dee94a9748041b9e774b3 (patch)
treee90ade8365c214b9a7b5740248d35e1e004d0afd /src/Configuration.h
parentbc6647cecbf1da1003526c848297b33d992d7cd1 (diff)
Increased max tracked objects in SAME70 and SAME5x builds
Diffstat (limited to 'src/Configuration.h')
-rw-r--r--src/Configuration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Configuration.h b/src/Configuration.h
index d8eb4b85..7e5bcef3 100644
--- a/src/Configuration.h
+++ b/src/Configuration.h
@@ -278,7 +278,7 @@ constexpr size_t maxQueuedCodes = 16; // How many codes can be queued?
// These two definitions are only used if TRACK_OBJECT_NAMES is defined, however that definition isn't available in this file
#if SAME70 || SAME5x
-constexpr size_t MaxTrackedObjects = 32; // How many build plate objects we track. Each one needs 16 bytes of storage, in addition to the string space.
+constexpr size_t MaxTrackedObjects = 40; // How many build plate objects we track. Each one needs 16 bytes of storage, in addition to the string space.
constexpr size_t ObjectNamesStringSpace = 1000; // How much space we reserve for the names of objects on the build plate
#else
constexpr size_t MaxTrackedObjects = 20; // How many build plate objects we track. Each one needs 16 bytes of storage, in addition to the string space.