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-06-04 16:44:37 +0300
committerDavid Crocker <dcrocker@eschertech.com>2021-06-04 16:44:37 +0300
commitc2f540aa1a0d227d4839062784147cae56c9c1e1 (patch)
tree516248a23dd88e6a3b0d9333e56e751eaa5c2b47
parentb227a6388d7f4f5fb34aea6f2519a30c1627742c (diff)
Increased Heat task stack size
-rw-r--r--src/Heating/Heat.cpp2
-rw-r--r--src/Version.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Heating/Heat.cpp b/src/Heating/Heat.cpp
index 5ca89ad3..a4759bd2 100644
--- a/src/Heating/Heat.cpp
+++ b/src/Heating/Heat.cpp
@@ -50,7 +50,7 @@ Licence: GPL
#endif
#if SUPPORT_CAN_EXPANSION
-constexpr uint32_t HeaterTaskStackWords = 440; // task stack size in dwords, must be large enough for auto tuning and a local CAN buffer
+constexpr uint32_t HeaterTaskStackWords = 470; // task stack size in dwords, must be large enough for auto tuning and a local CAN buffer
#else
constexpr uint32_t HeaterTaskStackWords = 420; // task stack size in dwords, must be large enough for auto tuning. 400 was not quite enough for one Duet WiFi user running 3.2.2.
#endif
diff --git a/src/Version.h b/src/Version.h
index eaaafbb0..9df2f34e 100644
--- a/src/Version.h
+++ b/src/Version.h
@@ -9,7 +9,7 @@
#define SRC_VERSION_H_
#ifndef VERSION
-# define MAIN_VERSION "3.3RC3+1"
+# define MAIN_VERSION "3.3RC3+3"
# ifdef USE_CAN0
# define VERSION_SUFFIX " (CAN0)"
# else