Been meaning to ask for some time now if there is way to make this go away. I get the warnings in the screenshot below, but only when I set the refdistance variable in the operation window.
Go to Options->machine->post processor and click on the ‘edit post’ button.
Look for:
function OnNewOperation()
post.Text (" (Process: ", operationName, ")\n")
if (plungeRate <= 0) then
post.Warning("WARNING: Plunge rate is zero")
end
if (feedRate <= 0) then
post.Warning("WARNING: Feed rate is zero")
end
end
Change it to:
function OnNewOperation()
post.Text (" (Process: ", operationName, ")\n")
end