mirror of
https://github.com/Doodle3D/doodle3d-firmware.git
synced 2024-12-22 02:53:49 +01:00
append end G-code correctly
This commit is contained in:
parent
ae46535275
commit
d9e84308dd
@ -54,7 +54,6 @@ end
|
|||||||
|
|
||||||
function readGCodeArg(argi)
|
function readGCodeArg(argi)
|
||||||
local gcodeFile = arg[argi]
|
local gcodeFile = arg[argi]
|
||||||
total_lines = total_lines + countlines(gcodeFile)
|
|
||||||
return io.open(gcodeFile):read('*a')
|
return io.open(gcodeFile):read('*a')
|
||||||
end
|
end
|
||||||
|
|
||||||
@ -88,7 +87,7 @@ do
|
|||||||
log("finished fetching gcode")
|
log("finished fetching gcode")
|
||||||
if endCode ~= nil then
|
if endCode ~= nil then
|
||||||
log("appending end gcode")
|
log("appending end gcode")
|
||||||
printer:appendGcode(endCode)
|
printer:appendGcode(endCode, total_lines, { seq_number = -1, seq_total = -1, source = id })
|
||||||
end
|
end
|
||||||
finished = true
|
finished = true
|
||||||
break
|
break
|
||||||
|
Loading…
Reference in New Issue
Block a user