Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2018-09-12 12:54:35 +0300
committerGhostkeeper <rubend@tutanota.com>2018-09-12 12:54:35 +0300
commitd7649f9ee4286ca756600326d16e8ba8aa7dc07d (patch)
tree120ca57443da5adf49ec405fb9cf65ebe379e43a /scripts
parentf628b63c29638766d5ad70729efc0a4f105c78d2 (diff)
Print buffer filling rate rather than time frame
The filling rate is more interesting. It's our input.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/check_gcode_buffer.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/check_gcode_buffer.py b/scripts/check_gcode_buffer.py
index d3410096c5..2024ce2214 100755
--- a/scripts/check_gcode_buffer.py
+++ b/scripts/check_gcode_buffer.py
@@ -351,7 +351,7 @@ class CommandBuffer:
self.previous_feedrate = [0, 0, 0, 0]
self.previous_nominal_feedrate = 0
- print("Time Frame: %s" % self._detection_time_frame)
+ print("Command speed: %s" % buffer_filling_rate)
print("Code Limit: %s" % self._code_count_limit)
self._bad_frame_ranges = []