Skip to content

Commit

Permalink
Merge pull request #38 from Bechtel-Innovation-Design-Center/Production
Browse files Browse the repository at this point in the history
Bring Branch up to date with production
  • Loading branch information
pan261 authored Oct 25, 2021
2 parents b30bdb0 + 29cd741 commit 638ac11
Show file tree
Hide file tree
Showing 7 changed files with 5,168 additions and 332 deletions.
17 changes: 6 additions & 11 deletions Haas_Gantry_BIDC/Bechtel SR.cps
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,9 @@
All rights reserved.

HAAS post processor configuration.

$Revision: 43348 37c695f19b2eab4d5737a29df773b981b83fa8d4 $
$Date: 2021-07-12 15:10:04 $

FORKID {241E0993-8BE0-463b-8888-47968B9D7F9F}
*/

description = "HAAS (pre-NGC)";
description = "Bechtel Center - HAAS (pre-NGC)";
vendor = "Haas Automation";
vendorUrl = "https://www.haascnc.com";
legal = "Copyright (C) 2012-2021 by Autodesk, Inc.";
Expand Down Expand Up @@ -263,31 +258,31 @@ properties = {/*
toolsToLoad: {
title: "Tools to load and probe",
description: "List or provide a range of tools to probe e.g. 1, 2, 3 or 1-5. Leaving this empty will probe all tools",
group: 4,
group: 0,
type: "string",
value: "",
scope: "post"
},
pencilWCSValidation: {
title: "WCS Validation",
description: "WCS validation. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
toolHeightValidation: {
title: "Tool Length Validation",
description: "Length validation. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
},
measureToolsAtStart: {
title: "Tool Probing",
description: "Tool Probing. By turning this off, you accept responsibility for any resulting crashes.",
group: 99,
group: 0,
type: "boolean",
value: true,
scope: "post"
Expand Down Expand Up @@ -927,7 +922,7 @@ function onOpen() {
// parse string for specific tools to load
if (getProperty("toolsToLoad") != "") {
// get list of numbers
let toolNumArray = getProperty("toolsToLoad").split(',');
let toolNumArray = getProperty("toolsToLoad").toString().split(',');
// iterate through and fill ranges
for (var i = 0; i < toolNumArray.length; i++){
toolNumArray[i] = toolNumArray[i].trim();
Expand Down
Loading

0 comments on commit 638ac11

Please sign in to comment.