<?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: HH Post mod someone please! in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995215#M14535</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting. To get the M6 line to appear after a toolchange, change this code in your post processor:&lt;/P&gt;
&lt;PRE&gt;    writeBlock(
      "TOOL CALL " + tool.number + SP + spindleAxisTable.lookup(spindleAxis) + " S" + rpmFormat.format(tool.spindleRPM)
    );

    if (tool.comment) {
      writeComment(tool.comment);
    }
&lt;/PRE&gt;
&lt;P&gt;To look like this:&lt;/P&gt;
&lt;PRE&gt;    writeBlock(
      "TOOL CALL " + tool.number + SP + spindleAxisTable.lookup(spindleAxis) + " S" + rpmFormat.format(tool.spindleRPM)
    );
   &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt; writeBlock(mFormat.format(6));&lt;/STRONG&gt;&lt;/FONT&gt;
    if (tool.comment) {
      writeComment(tool.comment);
    }
&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
    <pubDate>Fri, 11 May 2018 11:46:05 GMT</pubDate>
    <dc:creator>GeorgeRoberts</dc:creator>
    <dc:date>2018-05-11T11:46:05Z</dc:date>
    <item>
      <title>HH Post mod someone please!</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995135#M14534</link>
      <description>&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;Try as I might, I have failed to do a simple mod to a post for my Bridgeport 1000_22 with a Heidenhain 426 control.&lt;/P&gt;&lt;P&gt;The generic post for the HH 407 (heidenhain 407.cps from HSM attached) works very well for me except the absence of the "M6" line.&lt;/P&gt;&lt;P&gt;Could some kind person please add an "M6" on its own line directly after the tool call?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So from this,&lt;/P&gt;&lt;P&gt;9 M9&lt;BR /&gt;10 L Z+0 R0 FMAX M91&lt;BR /&gt;11 M5&lt;BR /&gt;12 TOOL CALL 2 Z S3000&lt;BR /&gt;13 M3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To this,&lt;/P&gt;&lt;P&gt;9 M9&lt;BR /&gt;10 L Z+0 R0 FMAX M91&lt;BR /&gt;11 M5&lt;BR /&gt;12 TOOL CALL 2 Z S3000&lt;BR /&gt;12 M6&lt;BR /&gt;13 M3&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That's it! I think I failed because of the block sequence numbering, but what do I know?&lt;/P&gt;&lt;P&gt;Many thanks for any help offered.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RHK&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 11:09:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995135#M14534</guid>
      <dc:creator>rhkoncepts</dc:creator>
      <dc:date>2018-05-11T11:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: HH Post mod someone please!</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995215#M14535</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for posting. To get the M6 line to appear after a toolchange, change this code in your post processor:&lt;/P&gt;
&lt;PRE&gt;    writeBlock(
      "TOOL CALL " + tool.number + SP + spindleAxisTable.lookup(spindleAxis) + " S" + rpmFormat.format(tool.spindleRPM)
    );

    if (tool.comment) {
      writeComment(tool.comment);
    }
&lt;/PRE&gt;
&lt;P&gt;To look like this:&lt;/P&gt;
&lt;PRE&gt;    writeBlock(
      "TOOL CALL " + tool.number + SP + spindleAxisTable.lookup(spindleAxis) + " S" + rpmFormat.format(tool.spindleRPM)
    );
   &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt; writeBlock(mFormat.format(6));&lt;/STRONG&gt;&lt;/FONT&gt;
    if (tool.comment) {
      writeComment(tool.comment);
    }
&lt;/PRE&gt;
&lt;P&gt;Hope this helps!&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 11:46:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995215#M14535</guid>
      <dc:creator>GeorgeRoberts</dc:creator>
      <dc:date>2018-05-11T11:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: HH Post mod someone please!</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995257#M14536</link>
      <description>&lt;P&gt;Hi Mr Roberts,&lt;/P&gt;&lt;P&gt;Thank you so much. Its easy when you know how. Works a treat.&lt;/P&gt;&lt;P&gt;I'll stick to drilling holes in future.&lt;/P&gt;&lt;P&gt;Thanks again.&lt;/P&gt;&lt;P&gt;RHK&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 11 May 2018 12:02:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/hh-post-mod-someone-please/m-p/7995257#M14536</guid>
      <dc:creator>rhkoncepts</dc:creator>
      <dc:date>2018-05-11T12:02:48Z</dc:date>
    </item>
  </channel>
</rss>

