Skip to content

Commit

Permalink
Adjusted ST20Y Params
Browse files Browse the repository at this point in the history
  • Loading branch information
will1742 committed Aug 30, 2021
1 parent b2f06a7 commit cb0f2e1
Showing 1 changed file with 18 additions and 2 deletions.
20 changes: 18 additions & 2 deletions Haas_Lathes_BIDC/Bechtel ST-20Y.cps
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ properties = {
description: "Output a tool list in the header of the code.",
group: 0,
type: "boolean",
value: true,
value: false,
scope: "post"
},
writeVersion: {
Expand Down Expand Up @@ -350,6 +350,22 @@ properties = {
type: "boolean",
value: false,
scope: "post"
},
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool loading and probing. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
type: "boolean",
value: true,
scope: "post"
},
loadToolsAtStart: {
title: "Tool loading",
description: "Tool loading only. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
type: "boolean",
value: true,
scope: "post"
}
};

Expand Down Expand Up @@ -575,7 +591,7 @@ function getCompleteTool(holder, tool) {
tool.shankWidth = toolSection.getParameter("operation:tool_shankWidth");
tool.cuttingWidth = toolSection.getParameter("operation:tool_cuttingWidth");
tool.holderOverallLength = toolSection.getParameter("operation:tool_holderOverallLength");
tool.threadPitch = toolSection.getParameter("operation:tool_threadPitch")
tool.threadPitch = toolSection.getParameter("operation:tool_threadPitch");

if (holder == KM50R || holder == WBLOCK) {
this.probeX = function() {
Expand Down

0 comments on commit cb0f2e1

Please sign in to comment.