Have virtual printer report back with "B:" in line
Similar to Marlin with enabled COREXY. Useful for testing parser behaviour.
This commit is contained in:
parent
0bb467e884
commit
0274b0f25b
1 changed files with 1 additions and 1 deletions
|
|
@ -254,7 +254,7 @@ class VirtualPrinter():
|
|||
self._deleteSdFile(filename)
|
||||
elif "M114" in data:
|
||||
# send dummy position report
|
||||
output = "C: X:10.00 Y:3.20 Z:5.20 E:1.24"
|
||||
output = "X:10.00 Y:3.20 Z:5.20 E:1.24 Count: A:1000 B:320 C:1040"
|
||||
if not self._okBeforeCommandOutput:
|
||||
output = "ok " + output
|
||||
self.outgoing.put(output)
|
||||
|
|
|
|||
Loading…
Reference in a new issue