Skip to content

Commit

Permalink
Using radius for K case
Browse files Browse the repository at this point in the history
  • Loading branch information
will1742 committed Jun 28, 2021
1 parent cd03fee commit fbf1b39
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions Haas_Next_Generation/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Changelog
06/14/21 Added media and QA
06/15/21 Check tool distance from stock, finalized QA
06/21/21 Tool probing required, tool probing now uses P9995
06/28/21 Tool specific probing added, with cases for type of probing and k factor

Function List:

Expand Down
3 changes: 1 addition & 2 deletions Haas_Next_Generation/haas vf2.cps
Original file line number Diff line number Diff line change
Expand Up @@ -839,7 +839,7 @@ function getHaasKFactorBIDC(tool) {
if (tool.type == TOOL_MILLING_RADIUS) {
return NULL_HAAS_K_FACTOR;
}
return DEFAULT_HAAS_K_FACTOR + tool.diameter;
return DEFAULT_HAAS_K_FACTOR + (tool.diameter/2);
case HAAS_CENTER:
case HAAS_PROBE:
case HAAS_DRILL:
Expand Down Expand Up @@ -877,7 +877,6 @@ function writeToolMeasureBlock(tool, preMeasure) {
// var writeFunction = measureTool ? writeBlock : writeOptionalBlock;
var writeFunction = writeBlock;
var comment = measureTool ? formatComment("MEASURE TOOL") : "";
if (!preMeasure) {
prepareForToolCheck();
}
Expand Down

0 comments on commit fbf1b39

Please sign in to comment.