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 01:32:18 +0300
committerDavid Crocker <dcrocker@eschertech.com>2018-04-04 01:32:18 +0300
commit46d4d32b2fcdc11d65e314c6e37dfb67513b6380 (patch)
tree30f487f4de322e9aefc8c5ef7dafdb3818490191 /src/Networking/TelnetResponder.cpp
parent8f3f4431bc6db2405e82883323c64d80d07cdd87 (diff)
Yet more RTOS work
Added malloc lock/unlock functions to avoid crash in sprintf etc. Allow jerk values down to 0.1mm/sec Add missing call to HttpResponder::CheckSessions() Added mutex around the access to HttpResponder::gcodeReply Warn if M500 used without M502 in config.g M114 now sends user coordinates first Condensed memory diagnostics a little Embed OutputStack objects instead of creating them dynamically
Diffstat (limited to 'src/Networking/TelnetResponder.cpp')
-rw-r--r--src/Networking/TelnetResponder.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Networking/TelnetResponder.cpp b/src/Networking/TelnetResponder.cpp
index 6806cd3b..5374990c 100644
--- a/src/Networking/TelnetResponder.cpp
+++ b/src/Networking/TelnetResponder.cpp
@@ -88,7 +88,7 @@ bool TelnetResponder::SendGCodeReply()
}
// Send the whole G-Code reply as plain text to the client
- outStack->Push(gcodeReply);
+ outStack.Push(gcodeReply);
// Possibly clean up the G-code reply once again
if (clearReply)