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:
Gina Häußge 2016-06-15 16:22:37 +02:00
parent 0bb467e884
commit 0274b0f25b

View file

@ -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)