Postprocessor Error

An unexpected error has occurred:
/home/christian/.sheetcamtng/posts/EMC.scpost:108: attempt to compare nil with number
This error occurred on line 1255 in file /home/les/Documents/src/SheetCamTNG/Camlib/postmacro.cpp)
Post processing failed

…hm - what is the problem?

regards
Christian

Go to Options->machine->post processor and edit the post. Look for these lines:

   if &#40;plungeRate <= 0&#41; then
      post.Warning&#40;"WARNING&#58; Plunge rate is zero"&#41;
   end
   if &#40;feedRate <= 0&#41; then
      post.Warning&#40;"WARNING&#58; Feed rate is zero"&#41;
   end

and delete them. These warnings were intended to detect some common problems but in practise they are a waste of time and sometimes cause odd problems like yours.

works - Thanks a lot!