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/OutputMemory.cpp
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/OutputMemory.cpp')
-rw-r--r--src/OutputMemory.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/OutputMemory.cpp b/src/OutputMemory.cpp
index 13356499..5c2486ab 100644
--- a/src/OutputMemory.cpp
+++ b/src/OutputMemory.cpp
@@ -128,7 +128,7 @@ size_t OutputBuffer::copy(const char c)
last = this;
}
- // Set the date
+ // Set the data
data[0] = c;
dataLength = 1;
return 1;