Re: Almost there: Laser reacts strange around 1% power (and traps for beginners)
Posted: Sat Jan 04, 2020 1:00 pm
Hi Roman:
Thx for that test file , it showed the error and its been repaired.
When Auggie see's a problem, the -x number represents an internal error
check. HEre is a l;ist of what a number means, just negate the number shown
(so error -5 is actually number 5 on this list..)
const string ErrorStrings[] =
{
"Successful completion. ", //0
"File not found. ", //1
"Command Canceled. ", //2
"ToolPath File Error in Create. ", //3
"Mapping Error on Toolpath. ", //4
"Error Parsing File. ", //5
"Line too Long. ", //6
"Engine pointer failure. ", //7
"Parse Error. No command. ", //8
"Parse Error. Missing number after word. ", //9
"Parse Error. Variables not allowed. ", //10
"Parse Error. Multiple Parameters. " , //11
"Feedrate Error. ", //12
"SpindleSpeed Error. ", //13
"Tool Change Error. ", //14
"Exceeds limit of 1 G-Group per line", //15
"Bad G-Code" , //16
"Inappropriate FeedMode Call", //17
"Illegal MCode" , //18
"Axis words in G80 mode", //19
"Axis words missing in G92", //20
"Two GCodes that need Axis words used", //21
"Motion with no axis info", //22
"Unknown Motion code" , //23
"G10 must have L2, L1 not supported", //24
"G10 must have P= 0-255" , //25
"G68 needs X,Y and R", //26
"G68 cannot be used with G10L2Rnn", //27
"G10 L2 cannot share with G68/G69", //28
"IJK and R missing in Arc", //29
"IJK and R mixed in Arc", //30
"Zero Feedrate on Arc", //31
"Zero Feedrate on Line", //32
"No FWord in inverse time move", //33
"KWord in XY plane", //34
"IWord in YZ plane", //35
"JWord in XZ plane", //36
"No Plane Selected", //37
"No XY in Arc on XY Plane", //38
"No XZ in Arc on XZ Plane", //39
"No YZ in Arc on YZ Plane", //40
"R Arc with start/end identical", //41
"R Arc radius too small for endpoint", //42
"Zero Radius Arc", //43
"Radius different from start and end in Arc", //44
"I,J or K with no command requiring them", //45
"End By Rewind", //46
"Subroutime Missing name", //47
"Error in intermediate file", //48
"Duplicate Subroutine name", //49
"Error opening intermediate file", //50
"Missing MCode support",//51
"Missing GCode support",//52
"Scripted Stop",//52
};
Let me know how this 3.70 version works. I did find that I could change the
lookahead without error, but there was a feedrat ebug due to recent fixes in other areas.
Sorry for the bug.
Art
Thx for that test file , it showed the error and its been repaired.
When Auggie see's a problem, the -x number represents an internal error
check. HEre is a l;ist of what a number means, just negate the number shown
(so error -5 is actually number 5 on this list..)
const string ErrorStrings[] =
{
"Successful completion. ", //0
"File not found. ", //1
"Command Canceled. ", //2
"ToolPath File Error in Create. ", //3
"Mapping Error on Toolpath. ", //4
"Error Parsing File. ", //5
"Line too Long. ", //6
"Engine pointer failure. ", //7
"Parse Error. No command. ", //8
"Parse Error. Missing number after word. ", //9
"Parse Error. Variables not allowed. ", //10
"Parse Error. Multiple Parameters. " , //11
"Feedrate Error. ", //12
"SpindleSpeed Error. ", //13
"Tool Change Error. ", //14
"Exceeds limit of 1 G-Group per line", //15
"Bad G-Code" , //16
"Inappropriate FeedMode Call", //17
"Illegal MCode" , //18
"Axis words in G80 mode", //19
"Axis words missing in G92", //20
"Two GCodes that need Axis words used", //21
"Motion with no axis info", //22
"Unknown Motion code" , //23
"G10 must have L2, L1 not supported", //24
"G10 must have P= 0-255" , //25
"G68 needs X,Y and R", //26
"G68 cannot be used with G10L2Rnn", //27
"G10 L2 cannot share with G68/G69", //28
"IJK and R missing in Arc", //29
"IJK and R mixed in Arc", //30
"Zero Feedrate on Arc", //31
"Zero Feedrate on Line", //32
"No FWord in inverse time move", //33
"KWord in XY plane", //34
"IWord in YZ plane", //35
"JWord in XZ plane", //36
"No Plane Selected", //37
"No XY in Arc on XY Plane", //38
"No XZ in Arc on XZ Plane", //39
"No YZ in Arc on YZ Plane", //40
"R Arc with start/end identical", //41
"R Arc radius too small for endpoint", //42
"Zero Radius Arc", //43
"Radius different from start and end in Arc", //44
"I,J or K with no command requiring them", //45
"End By Rewind", //46
"Subroutime Missing name", //47
"Error in intermediate file", //48
"Duplicate Subroutine name", //49
"Error opening intermediate file", //50
"Missing MCode support",//51
"Missing GCode support",//52
"Scripted Stop",//52
};
Let me know how this 3.70 version works. I did find that I could change the
lookahead without error, but there was a feedrat ebug due to recent fixes in other areas.
Sorry for the bug.
Art