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>2017-05-28 20:11:09 +0300
committerDavid Crocker <dcrocker@eschertech.com>2017-05-28 20:11:26 +0300
commit6d41bf935c54051a97cff1c69d31ef8678292eea (patch)
tree0b6fc091873f1ef07b815063caff127edd800148 /src/GCodes/GCodeBuffer.cpp
parent87fc280c00216f813a2da285cc2efeb71c758796 (diff)
Verison 1.19 beta 2
Improved reliability of new interface to WiFi module Added options to control thermostatic fans based on CPU and driver temperatures Support M204 S parameter for backwards compatibility Fixes to Scara kinematics Support additional axes on delta printers Added extra info to M122 repoirt
Diffstat (limited to 'src/GCodes/GCodeBuffer.cpp')
-rw-r--r--src/GCodes/GCodeBuffer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/GCodes/GCodeBuffer.cpp b/src/GCodes/GCodeBuffer.cpp
index 62f40974..48917e20 100644
--- a/src/GCodes/GCodeBuffer.cpp
+++ b/src/GCodes/GCodeBuffer.cpp
@@ -491,7 +491,7 @@ int32_t GCodeBuffer::GetIValue()
return result;
}
-// If the specified parameter character is found, fetch 'value' and set 'seen'. Otherwise leave value and seen alone.
+// If the specified parameter character is found, fetch 'value' and set 'seen'. Otherwise leave val and seen alone.
void GCodeBuffer::TryGetFValue(char c, float& val, bool& seen)
{
if (Seen(c))
@@ -501,7 +501,7 @@ void GCodeBuffer::TryGetFValue(char c, float& val, bool& seen)
}
}
-// If the specified parameter character is found, fetch 'value' and set 'seen'. Otherwise leave value and seen alone.
+// If the specified parameter character is found, fetch 'value' and set 'seen'. Otherwise leave val and seen alone.
void GCodeBuffer::TryGetIValue(char c, int32_t& val, bool& seen)
{
if (Seen(c))