<?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: probing in Fusion Manufacture Forum</title>
    <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7811017#M124424</link>
    <description>I'm not sure if helps, but our workaround was to write a conversational part probe block, then call an NC program block to run the actual NC program. We removed the G54 lines from the NC code to assume the coordinates from the part probe block.</description>
    <pubDate>Tue, 27 Feb 2018 00:39:43 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2018-02-27T00:39:43Z</dc:date>
    <item>
      <title>probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7800851#M124414</link>
      <description>&lt;P&gt;has anyone been able to get hurco probing to post? i get an error message but im able to post fanuc&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 19:02:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7800851#M124414</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-22T19:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801142#M124415</link>
      <description>&lt;P&gt;Looks like the post needs to be modified to accept a zero spindle speed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Haas post with probing looks like this to negate the spindle RPM issue:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  if (!isProbeOperation() &amp;amp;&amp;amp;
      (insertToolCall ||
       forceSpindleSpeed ||
       isFirstSection() ||
       (rpmFormat.areDifferent(tool.spindleRPM, sOutput.getCurrent())) ||
       (tool.clockwise != getPreviousSection().getTool().clockwise))) {
    forceSpindleSpeed = false;

    if (tool.spindleRPM &amp;lt; 1) {
      error(localize("Spindle speed out of range."));
      return;
    }
    if (tool.spindleRPM &amp;gt; 12000) {
      warning(localize("Spindle speed exceeds maximum value."));
    }
    writeBlock(
      sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4)
    );
  }&lt;/PRE&gt;
&lt;P&gt;and this is the generic Hurco post for the same section:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;  if (insertToolCall ||
      forceSpindleSpeed ||
      isFirstSection() ||
      (rpmFormat.areDifferent(tool.spindleRPM, sOutput.getCurrent())) ||
      (tool.clockwise != getPreviousSection().getTool().clockwise)) {
    forceSpindleSpeed = false;
    
    if (tool.spindleRPM &amp;lt; 1) {
      error(localize("Spindle speed out of range."));
      return;
    }
    if (tool.spindleRPM &amp;gt; 65535) {
      warning(localize("Spindle speed exceeds maximum value."));
    }
    writeBlock(
      sOutput.format(tool.spindleRPM), mFormat.format(tool.clockwise ? 3 : 4)
    );
  }&lt;/PRE&gt;
&lt;P&gt;You should be able to modify from there, unfortunately I don't have much time to help directly.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 20:32:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801142#M124415</guid>
      <dc:creator>Steinwerks</dc:creator>
      <dc:date>2018-02-22T20:32:56Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801354#M124416</link>
      <description>&lt;P&gt;can i just copy and paste that first block? i saved the post as a txt file im guessing if it doesnt work i can delete the txt in the hurco post and paste and save the backup post&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 21:21:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801354#M124416</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-22T21:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801590#M124417</link>
      <description>&lt;P&gt;You should be able to, yes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can also block comment out the original section to easily restore functionality, but backups are also a great idea to keep around.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Feb 2018 22:55:20 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7801590#M124417</guid>
      <dc:creator>Steinwerks</dc:creator>
      <dc:date>2018-02-22T22:55:20Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810562#M124418</link>
      <description>&lt;P&gt;&amp;nbsp;i block commented the origanal part of the hurco post and added the first block of haas post still looks like i have the same error i posted my sample part set work offset to 1 and probe offset to 2&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 20:40:34 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810562#M124418</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-26T20:40:34Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810641#M124419</link>
      <description>&lt;P&gt;sorry&amp;nbsp; didn't realize i pasted the same block please disregard those first two pics this is with haas block&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 21:18:39 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810641#M124419</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-26T21:18:39Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810744#M124420</link>
      <description>&lt;P&gt;Can you attach your modified post?&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 22:04:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810744#M124420</guid>
      <dc:creator>Steinwerks</dc:creator>
      <dc:date>2018-02-26T22:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810810#M124421</link>
      <description>&lt;P&gt;this is it&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 22:35:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810810#M124421</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-26T22:35:48Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810821#M124422</link>
      <description>&lt;P&gt;I'm not getting the same error (spindle speed out of range) with your post, but one in which isProbeOperation isn't defined, which means the post needs more additions to the probing code.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Error(C:\Users\***path***\hurco PROBEMANUAL.CPS:844): ReferenceError: isProbeOperation is not defined&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Unfortunately I don't have the time right now to tackle this, but will try and look closer when I can.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: a cursory look at the file tells me there is no probing code in this post. It will either have to be added, or a different post modified to suit.&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 22:49:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810821#M124422</guid>
      <dc:creator>Steinwerks</dc:creator>
      <dc:date>2018-02-26T22:49:30Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810927#M124423</link>
      <description>&lt;P&gt;ill keep playing with it please let me know when you get some time to help as this would greatly speed up my current job&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 26 Feb 2018 23:42:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7810927#M124423</guid>
      <dc:creator>tyerfabozz</dc:creator>
      <dc:date>2018-02-26T23:42:49Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7811017#M124424</link>
      <description>I'm not sure if helps, but our workaround was to write a conversational part probe block, then call an NC program block to run the actual NC program. We removed the G54 lines from the NC code to assume the coordinates from the part probe block.</description>
      <pubDate>Tue, 27 Feb 2018 00:39:43 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7811017#M124424</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-02-27T00:39:43Z</dc:date>
    </item>
    <item>
      <title>Re: probing</title>
      <link>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7811185#M124425</link>
      <description>&lt;P&gt;I would suggest starting a post to add the probing code to the generic Hurco post over here:&amp;nbsp;&lt;A href="https://forums.autodesk.com/t5/hsm-post-processor-ideas/idb-p/985/tab/most-recent" target="_blank"&gt;https://forums.autodesk.com/t5/hsm-post-processor-ideas/idb-p/985/tab/most-recent&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Adding probing to a post that otherwise has no provisions for it is a fairly large task IMO. I'm no Autodesk employee, just here helping when I can.&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2018 03:12:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/fusion-manufacture-forum/probing/m-p/7811185#M124425</guid>
      <dc:creator>Steinwerks</dc:creator>
      <dc:date>2018-02-27T03:12:52Z</dc:date>
    </item>
  </channel>
</rss>

