<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Need help modifying Intergrex post-J200 with matrix control in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11839608#M2497</link>
    <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/427772"&gt;@newtoinventor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as you have not provided any sample code, I am not sure about the location of the command in the code.&lt;BR /&gt;But try to use something like that:&lt;BR /&gt;Search for the setWorkplane function.&lt;BR /&gt;And near it's end we will have the command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;  // Don't clamp the C axis if the machine is using polar, only clamp the B (if it exists)
  if (!machineState.usePolarMode &amp;amp;&amp;amp; !machineState.useXZCMode) {
    if (!machineState.spindlesAreAttached) {
      onCommand(COMMAND_LOCK_MULTI_AXIS);
    }
  } else if (gotBAxis) {
    writeBlock(getCode("CLAMP_B_AXIS")); // B-axis
  }
  // ADSK - for M211 output
  if (machineState.usePolarMode) {
    writeBlock(mFormat.format(211));
  }  // end of addition

  currentWorkPlaneABC = new Vector(abc.x, abc.y, abc.z);
  previousABC = abc;
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at lines 9 to 12.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 22 Mar 2023 15:38:21 GMT</pubDate>
    <dc:creator>serge.quiblier</dc:creator>
    <dc:date>2023-03-22T15:38:21Z</dc:date>
    <item>
      <title>Need help modifying Intergrex post-J200 with matrix control</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11798298#M2494</link>
      <description>&lt;P&gt;Need to change 3 thing's and wonder if you could change or tell me what to change. I am using the I-200 mazak post, since they don't have one for the J series.&lt;/P&gt;&lt;P&gt;So the 3 things are&lt;/P&gt;&lt;P&gt;1: max travel-Y is 100m and -100mm, X is -50mm, I no it is in max travel, just do not know how to format to change it.&lt;/P&gt;&lt;P&gt;2: So the file I attached is a little sample of a issue I am having because post does not engage M211(C axis milling brake), I need that to be put in when c axis milling. This part is giving me problems when I was milling around with C using climb milling, with the brake not on, it was really pulling the C axis, almost skipping, I put the M211 in by hand it still did not help, Think my c axis brake may be wore out:(, but I know it still should be there. So then I tried milling to keep using just X and Y movements, that does engage the M210(hard brake), and that seemed to work, just slower.&lt;/P&gt;&lt;P&gt;3: Also would be nice if possible to make the post know this is a J series, that means I have a 1 deg index on my B axis, not a true cutting B axis.&lt;/P&gt;</description>
      <pubDate>Sat, 04 Mar 2023 15:29:06 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11798298#M2494</guid>
      <dc:creator>newtoinventor</dc:creator>
      <dc:date>2023-03-04T15:29:06Z</dc:date>
    </item>
    <item>
      <title>Re: Need help modifying Intergrex post-J200 with matrix control</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11801899#M2495</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/427772"&gt;@newtoinventor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you edit the post processor with a "pure" text editor (notepad, notepad++, NOT office, openoffice....)&lt;/P&gt;
&lt;P&gt;You can see the following at the top of the post (note the type, it will come handy in a few) :&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_0-1678119927961.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1185128iFDD7D29F9353D85D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_0-1678119927961.png" alt="sergequiblier_0-1678119927961.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If we search below in the post, we can find a function called defineMachine.&lt;/P&gt;
&lt;P&gt;We can do some changes there:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_1-1678119982993.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1185131i2B40C1A483F44017/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_1-1678119982993.png" alt="sergequiblier_1-1678119982993.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can alter the numerical values on the lines 763, 764, 765.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To fix the B axis stepping, search the onOpen function.&lt;/P&gt;
&lt;P&gt;This look like that&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="sergequiblier_2-1678120292521.png" style="width: 600px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1185136iE5668AB30E4203B3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="sergequiblier_2-1678120292521.png" alt="sergequiblier_2-1678120292521.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You then need to edit the createAxis command defining the B axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;var bAxisMain = createAxis({coordinate:1, table:false, axis:[0, -1, 0], range:[-30, 210], preference:0, resolution:1.0});&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please note the additional resolution parameter at the end of the line.&lt;/P&gt;
&lt;P&gt;We are defining a one degree step increment for the axis.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The M211/210 change need more analysis. But do we need to use M210, or M211?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 15:19:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11801899#M2495</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2023-03-22T15:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Need help modifying Intergrex post-J200 with matrix control</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11802042#M2496</link>
      <description>Ok, got those changes I believe. Thanks&lt;BR /&gt;As for the M210, I need that when the C axis is should be locked(XY milling, drilling holes)&lt;BR /&gt;M211 I need when the C axis is milling to fight against climb mill pulling it along, the c is not strong enough, so the M211 puts a drag on it I believe.&lt;BR /&gt;</description>
      <pubDate>Mon, 06 Mar 2023 17:25:31 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11802042#M2496</guid>
      <dc:creator>newtoinventor</dc:creator>
      <dc:date>2023-03-06T17:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Need help modifying Intergrex post-J200 with matrix control</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11839608#M2497</link>
      <description>&lt;P&gt;Hi &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/427772"&gt;@newtoinventor&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;as you have not provided any sample code, I am not sure about the location of the command in the code.&lt;BR /&gt;But try to use something like that:&lt;BR /&gt;Search for the setWorkplane function.&lt;BR /&gt;And near it's end we will have the command&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="javascript"&gt;  // Don't clamp the C axis if the machine is using polar, only clamp the B (if it exists)
  if (!machineState.usePolarMode &amp;amp;&amp;amp; !machineState.useXZCMode) {
    if (!machineState.spindlesAreAttached) {
      onCommand(COMMAND_LOCK_MULTI_AXIS);
    }
  } else if (gotBAxis) {
    writeBlock(getCode("CLAMP_B_AXIS")); // B-axis
  }
  // ADSK - for M211 output
  if (machineState.usePolarMode) {
    writeBlock(mFormat.format(211));
  }  // end of addition

  currentWorkPlaneABC = new Vector(abc.x, abc.y, abc.z);
  previousABC = abc;
}&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Look at lines 9 to 12.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;______________________________________________________________&lt;/P&gt;
&lt;P&gt;&lt;FONT color="#0174DF"&gt;If my post answers your question, please click the &lt;STRONG&gt;"Accept Solution"&lt;/STRONG&gt; button. This helps everyone find answers more quickly!&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Mar 2023 15:38:21 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/need-help-modifying-intergrex-post-j200-with-matrix-control/m-p/11839608#M2497</guid>
      <dc:creator>serge.quiblier</dc:creator>
      <dc:date>2023-03-22T15:38:21Z</dc:date>
    </item>
  </channel>
</rss>

