<?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: Post processor needs altering for rigid tapping... in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623033#M21010</link>
    <description>&lt;P&gt;Just educating myself here..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any reason why adding the lines marked //****** would make the post fail??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  if (insertToolCall ||
      isFirstSection() ||
      (rpmFormat.areDifferent(tool.spindleRPM, sOutput.getCurrent())) ||
      (tool.clockwise != getPreviousSection().getTool().clockwise)) {
    if (tool.spindleRPM &amp;lt; 1) {
      error(localize("Spindle speed out of range."));
      return;
    }
    if (tool.spindleRPM &amp;gt; 99999) {
      warning(localize("Spindle speed exceeds maximum value."));
    }
    
    if (cycleType != "tapping") {       //**********
      writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
    } //**********
  }&lt;/PRE&gt;&lt;P&gt;When i use the new post edited yesterday (which works nicely thanks), it has the oddity where it starts the spindle for tapping but the macro prefers to be called with the spindle stopped as it has to start it itself in sync mode, so what happens is the spindle starts, it moves to position, the spindle stops, the spindle starts, hole is tapped, spindle stops etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought it would be nice to skip the spindle start on all "tapping" calls and just let the macro do it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Clearly i have not grasped the theory yet &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 14 Oct 2016 14:56:51 GMT</pubDate>
    <dc:creator>mailZWX5Y</dc:creator>
    <dc:date>2016-10-14T14:56:51Z</dc:date>
    <item>
      <title>Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6618671#M21003</link>
      <description>&lt;P&gt;After the great help i had before on my post to allow use of a tapping head, I have now modified the mill to allow me to use rigid tapping&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;I have attached my post below as I have tweaked it a little since it was last on the forum.&lt;BR /&gt;&lt;BR /&gt;What I want is to be able to use the Tapping process, set a feed-rate and possible bottom dwell but have the code come out designed around this plugin code for my motion controller...&lt;BR /&gt;&lt;BR /&gt;M84 Q-20 P1.5 S300 R400&lt;BR /&gt;&lt;BR /&gt;Where...&lt;BR /&gt;M84 = plugin call macro&lt;BR /&gt;Q = thread depth&lt;BR /&gt;P = thread pitch&lt;BR /&gt;S = feed rate&lt;BR /&gt;R = retract rate&lt;BR /&gt;&lt;BR /&gt;I did look myself but these post processors are still above my head for this type of change, the positioning, clearance, feed height are all as before.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It cant use the canned cycle style so will need a call after each move.&lt;BR /&gt;&lt;BR /&gt;Would be great if someone could have a look for me&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;Many thanks&lt;/P&gt;</description>
      <pubDate>Wed, 12 Oct 2016 20:03:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6618671#M21003</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-12T20:03:18Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6619733#M21004</link>
      <description>&lt;P&gt;Hacking through this using blind trial and error, i can get the M84 done, I can format the Z as an m using mFormat so that sort of tells me i need a new format declaring for Q, i copy the mFormat line and change to qFormat with a prefix of Q but then the post fails and does nothing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a reason I cannot add a new format?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Or a correct way??&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 10:21:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6619733#M21004</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-13T10:21:59Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6620295#M21005</link>
      <description>&lt;P&gt;I've almost got this cracked now, with a little help &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to output a Z move to clearance height regardless of modality?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The Z is being controlled by the macro/controller via the Q word but the post does not see this as a Z move and therefore does not output any Z retract - this could be nasty &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Needs to force a Z move regardless???&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 14:18:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6620295#M21005</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-13T14:18:29Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6620375#M21006</link>
      <description>&lt;P&gt;It needed a zOutput.Reset adding &amp;nbsp;- all working now.:)&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 14:42:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6620375#M21006</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-13T14:42:43Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6621677#M21007</link>
      <description>&lt;P&gt;Hi dave&lt;/P&gt;</description>
      <pubDate>Thu, 13 Oct 2016 22:58:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6621677#M21007</guid>
      <dc:creator>daniel_lyall</dc:creator>
      <dc:date>2016-10-13T22:58:33Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6622868#M21008</link>
      <description>&lt;P&gt;You were asking for some reference material in your other post on rigid tapping, if you look in the "&lt;SPAN&gt;Help! My post processor needs to be edited; now what?" post in the stickies at the top of this forum the first post has links to a help file and PDF.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Mark&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 14:06:58 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6622868#M21008</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-14T14:06:58Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6622886#M21009</link>
      <description>&lt;P&gt;Thanks again, will look now.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 14:14:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6622886#M21009</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-14T14:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623033#M21010</link>
      <description>&lt;P&gt;Just educating myself here..&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Any reason why adding the lines marked //****** would make the post fail??&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;  if (insertToolCall ||
      isFirstSection() ||
      (rpmFormat.areDifferent(tool.spindleRPM, sOutput.getCurrent())) ||
      (tool.clockwise != getPreviousSection().getTool().clockwise)) {
    if (tool.spindleRPM &amp;lt; 1) {
      error(localize("Spindle speed out of range."));
      return;
    }
    if (tool.spindleRPM &amp;gt; 99999) {
      warning(localize("Spindle speed exceeds maximum value."));
    }
    
    if (cycleType != "tapping") {       //**********
      writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
    } //**********
  }&lt;/PRE&gt;&lt;P&gt;When i use the new post edited yesterday (which works nicely thanks), it has the oddity where it starts the spindle for tapping but the macro prefers to be called with the spindle stopped as it has to start it itself in sync mode, so what happens is the spindle starts, it moves to position, the spindle stops, the spindle starts, hole is tapped, spindle stops etc.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I thought it would be nice to skip the spindle start on all "tapping" calls and just let the macro do it &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Clearly i have not grasped the theory yet &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 14:56:51 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623033#M21010</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-14T14:56:51Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623119#M21011</link>
      <description>&lt;P&gt;I think cycleType is only available in oncycle, to get it in onSection use.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    if (getParameter("operation:cycleType") != "tapping") {       //**********
		writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
	} 
&lt;/PRE&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 15:30:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623119#M21011</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-14T15:30:55Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623413#M21012</link>
      <description>&lt;P&gt;Brilliant, I still have plenty to learn then &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;That works perfectly.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2016 17:26:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6623413#M21012</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-14T17:26:22Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625136#M21013</link>
      <description>&lt;P&gt;Hmm, ok i said it worked perfectly but today a tried the first&amp;nbsp;job on it and the post failed - there was no tapping operation in the job.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems it only works on certain jobs - clearly not good.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way forwards here ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, it says in the failed file "see log for details" - what log would that be and does it help??&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 08:32:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625136#M21013</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-16T08:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625153#M21014</link>
      <description>&lt;P&gt;Dave Post the post processor stick it in code tags, post the G code what failed plus the .f3d.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It will make it easy to get support, they can test the code on the file you used and may well find where it failed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The more info you can give the better the supporting person can help it makes there job easy.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 08:56:55 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625153#M21014</guid>
      <dc:creator>daniel_lyall</dc:creator>
      <dc:date>2016-10-16T08:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625191#M21015</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/3993240"&gt;@mailZWX5Y﻿&lt;/a&gt;&amp;nbsp;are you using brackets as your editor? If you are try changing to notepad, it starts faster and picks up the error log file more reliably. Another option as an editor is &lt;A href="http://www.nc-corrector.inf.ua/index_EN.htm" target="_self"&gt;NC Corrector&lt;/A&gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 09:58:47 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625191#M21015</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-16T09:58:47Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625203#M21016</link>
      <description>&lt;P&gt;Thanks i'll post up the file in a short while.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am on a Mac so using TextEdit but its not great i must admit, is there a suitable Mac editor?&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 10:22:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625203#M21016</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-16T10:22:11Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625232#M21017</link>
      <description>&lt;P&gt;Here we go, zipped folder with 4 files...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test2 is the file i was trying the edits on before and it still passes ok.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Test1 is the real job on the same post and it fails.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for looking&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 11:16:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625232#M21017</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-16T11:16:56Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625433#M21018</link>
      <description>&lt;P&gt;You haven't attached your postprocessor, can't help without that.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 16:58:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625433#M21018</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-16T16:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625471#M21019</link>
      <description>&lt;P&gt;oops, here we go... &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 17:43:35 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625471#M21019</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-16T17:43:35Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625526#M21020</link>
      <description>&lt;P&gt;You need to check for a drill operation before you can test for a cycle. If you have a mill operation there's no cycle so you get an error.&lt;/P&gt;
&lt;PRE&gt;    //only insert M3 if we are NOT tapping
	if (getParameter("operation:tool_isDrill")){
		if (getParameter("operation:cycleType") != "tapping") {     
		writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
		}
	}
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 18:32:14 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625526#M21020</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-16T18:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625546#M21021</link>
      <description>&lt;P&gt;Thanks but i seem to be not helping i think, now it misses the S / M line on the first process...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;(FACE1)
M5
M9
T12 M6
G54
M7
G0 X81.25 Y7.5
G43 Z65. H12
Z45.
G1 Z42. F900.
G18 G3 X78.75 Z39.5 R2.5
G1 X78.
X-13. F1400.
Z38.5
X78.
Z38.
X-13.&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Oct 2016 18:55:09 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625546#M21021</guid>
      <dc:creator>mailZWX5Y</dc:creator>
      <dc:date>2016-10-16T18:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Post processor needs altering for rigid tapping...</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625583#M21022</link>
      <description>&lt;P&gt;Sorry not paying attention, try this.&lt;/P&gt;
&lt;PRE&gt;    //only insert M3 if we are NOT tapping
	if (getParameter("operation:tool_isDrill")){
		if (getParameter("operation:cycleType") != "tapping") {     
		writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
		}
	}else{
		writeBlock(sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4));
		}
&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Mark&lt;/P&gt;</description>
      <pubDate>Sun, 16 Oct 2016 19:21:11 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/post-processor-needs-altering-for-rigid-tapping/m-p/6625583#M21022</guid>
      <dc:creator>HughesTooling</dc:creator>
      <dc:date>2016-10-16T19:21:11Z</dc:date>
    </item>
  </channel>
</rss>

