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:
authorChristian Hammacher <bmasterc@gmail.com>2020-03-11 17:54:12 +0300
committerChristian Hammacher <bmasterc@gmail.com>2020-03-11 17:54:12 +0300
commitab57b7730c34b5d16502b072ecbfebb55dbeaa43 (patch)
tree2b506ce7fbcf9723f88cd475786a13be7b2cd6de /src/FilamentMonitors
parent226c386479345204aecbc2f340bb3a126311260d (diff)
Added some more missing OM fields
Diffstat (limited to 'src/FilamentMonitors')
-rw-r--r--src/FilamentMonitors/LaserFilamentMonitor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/FilamentMonitors/LaserFilamentMonitor.cpp b/src/FilamentMonitors/LaserFilamentMonitor.cpp
index 0af69841..498c8ecd 100644
--- a/src/FilamentMonitors/LaserFilamentMonitor.cpp
+++ b/src/FilamentMonitors/LaserFilamentMonitor.cpp
@@ -45,7 +45,7 @@ constexpr ObjectModelTableEntry LaserFilamentMonitor::objectModelTable[] =
// 2. LaserFilamentMonitor.configured members
{ "percentMax", OBJECT_MODEL_FUNC(ConvertToPercent(self->maxMovementAllowed)), ObjectModelEntryFlags::none },
{ "percentMin", OBJECT_MODEL_FUNC(ConvertToPercent(self->minMovementAllowed)), ObjectModelEntryFlags::none },
- { "sampleDistance", OBJECT_MODEL_FUNC(self->minimumExtrusionCheckLength, 1), ObjectModelEntryFlags::none },
+ { "sampleDistance", OBJECT_MODEL_FUNC(self->minimumExtrusionCheckLength, 1), ObjectModelEntryFlags::none },
};
constexpr uint8_t LaserFilamentMonitor::objectModelTableDescriptor[] = { 3, 5, 4, 3 };