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>2018-04-04 20:43:41 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-04-04 20:43:41 +0300
commita2ecb67c8a8c08f1d5fcb455378e000066957ff2 (patch)
tree6c697f3b0c543ce8d95eebc5882ffcb0d036d524 /src/Configuration.h
parent46d4d32b2fcdc11d65e314c6e37dfb67513b6380 (diff)
More RTOS work again
Increased main task stack size to handle delta auto calibration Replaced strtod by our own version. The one in newlib isn't threadsafe unless we enable reetrant newlib in FreeRTOS, but the _reent struct define in new lib contains lots of stuff we don't need that makes tasks much bigger, using up many kb of memory Use newlib nano instead of regular newlib Note: in this release the network still disconnects at intervals, but it can be reconnected.
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 6c2a4bda..89d1555d 100644
--- a/src/Configuration.h
+++ b/src/Configuration.h
@@ -194,7 +194,7 @@ constexpr size_t MaxHeaterNameLength = 20; // Maximum number of characters in
// Output buffer lengths
#if SAM4E || SAM4S || SAME70
constexpr uint16_t OUTPUT_BUFFER_SIZE = 128; // How many bytes does each OutputBuffer hold?
-constexpr size_t OUTPUT_BUFFER_COUNT = 32; // How many OutputBuffer instances do we have?
+constexpr size_t OUTPUT_BUFFER_COUNT = 40; // How many OutputBuffer instances do we have?
constexpr size_t RESERVED_OUTPUT_BUFFERS = 2; // Number of reserved output buffers after long responses. Must be enough for an HTTP header
#elif SAM3XA
constexpr uint16_t OUTPUT_BUFFER_SIZE = 128; // How many bytes does each OutputBuffer hold?