<?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: Chip transport in HSM Post Processor Forum</title>
    <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9173936#M9611</link>
    <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New its is working, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings Tom&lt;/P&gt;</description>
    <pubDate>Fri, 29 Nov 2019 15:39:01 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-11-29T15:39:01Z</dc:date>
    <item>
      <title>Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9171992#M9607</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try to adjust a post so that the chip transport go on with manual nc. Unfortunaltely this is not yet possible.&lt;/P&gt;&lt;P&gt;Who can help me&lt;/P&gt;&lt;P&gt;it is going on with m50 and of with m51&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings Tom&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 14:01:30 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9171992#M9607</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-28T14:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9172417#M9608</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think you could modify your postprocessor in this way :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;function onCommand(command) {
  switch (command) {
  case COMMAND_COOLANT_OFF:
    setCoolant(COOLANT_OFF);
    return;
  case COMMAND_COOLANT_ON:
    setCoolant(COOLANT_FLOOD);
    return;
  case COMMAND_START_SPINDLE:
    onCommand(tool.clockwise ? COMMAND_SPINDLE_CLOCKWISE : COMMAND_SPINDLE_COUNTERCLOCKWISE);
    return;
  case COMMAND_LOCK_MULTI_AXIS:
    return;
  case COMMAND_UNLOCK_MULTI_AXIS:
    return;
&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;  case COMMAND_START_CHIP_TRANSPORT:
    writeBlock(mFormat.format(50));
    return;
  case COMMAND_STOP_CHIP_TRANSPORT:
    writeBlock(mFormat.format(51));
    return;&lt;/FONT&gt;&lt;/STRONG&gt;
  case COMMAND_BREAK_CONTROL:
    return;
  case COMMAND_TOOL_MEASURE:
    return;
  }&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Moreover you shoud comment every block you find both '&lt;SPAN style="font-family: inherit;"&gt;onCommand(COMMAND_START_CHIP_TRANSPORT); ' and&amp;nbsp; '&lt;/SPAN&gt;&lt;SPAN style="font-family: inherit;"&gt;onCommand(COMMAND_STOP_CHIP_TRANSPORT);'. E.g:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;// onCommand(COMMAND_START_CHIP_TRANSPORT);

// onCommand(COMMAND_STOP_CHIP_TRANSPORT);&lt;/PRE&gt;
&lt;P&gt;&lt;SPAN style="font-family: inherit;"&gt;Please test it carefully and let me know.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 17:42:18 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9172417#M9608</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2019-11-28T17:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9172683#M9609</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Every new operation the chip transporter is going on and at the end of every operation the chip transporter is going of.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible that the chip transporter only on / off is when i give the commend?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;See the attachments for the program and the post.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings Tom&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Nov 2019 21:42:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9172683#M9609</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-28T21:42:07Z</dc:date>
    </item>
    <item>
      <title>Re: Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9173201#M9610</link>
      <description>&lt;P&gt;Hi&amp;nbsp;@Anonymous,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that if you comment 'onCommand(COMMAND_STOP_CHIP_TRANSPORT)' at line 795 :&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;    if (!isFirstSection() &amp;amp;&amp;amp; properties.optionalStop) {
&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;      //onCommand(COMMAND_STOP_CHIP_TRANSPORT);&lt;/FONT&gt;&lt;/STRONG&gt;
      onCommand(COMMAND_OPTIONAL_STOP);
    }
&lt;/PRE&gt;
&lt;P&gt;you should have what you needed :&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-center" image-alt="NC File.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/702696i2401B7B4E86316F5/image-size/large?v=v2&amp;amp;px=999" role="button" title="NC File.jpg" alt="NC File.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;M50/M51 will be present only when and where you program them.&lt;/P&gt;
&lt;P&gt;Please let me know.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 08:17:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9173201#M9610</guid>
      <dc:creator>andrea.amilo</dc:creator>
      <dc:date>2019-11-29T08:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9173936#M9611</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;New its is working, thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Greetings Tom&lt;/P&gt;</description>
      <pubDate>Fri, 29 Nov 2019 15:39:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/9173936#M9611</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-11-29T15:39:01Z</dc:date>
    </item>
    <item>
      <title>Re: Chip transport</title>
      <link>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/13307233#M9612</link>
      <description>&lt;P&gt;Hi Tom,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It sounds like you're trying to adjust the post so the chip &lt;A href="https://rieglertrans.at/leistungen/" target="_blank" rel="noopener"&gt;transport&lt;/A&gt; works with &lt;STRONG&gt;manual NC&lt;/STRONG&gt;, but it's not functioning as expected. If it's running with &lt;STRONG&gt;M50 (on) and M51 (off)&lt;/STRONG&gt;, you might need to check:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;STRONG&gt;Post Processor Settings&lt;/STRONG&gt; – Ensure the correct M-codes are implemented in your post-processor.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;Machine Compatibility&lt;/STRONG&gt; – Some machines require additional parameters or logic for manual NC mode.&lt;/LI&gt;&lt;LI&gt;&lt;STRONG&gt;G-Code Customization&lt;/STRONG&gt; – Try manually inserting M50/M51 in your program and see if it behaves correctly.&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Could you share more details about your setup (software, machine type)? That might help in troubleshooting further.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards,&lt;BR /&gt;&lt;SPAN&gt;Alexander Wilson&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Feb 2025 08:35:46 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/hsm-post-processor-forum/chip-transport/m-p/13307233#M9612</guid>
      <dc:creator>projectnandlastrategy</dc:creator>
      <dc:date>2025-02-08T08:35:46Z</dc:date>
    </item>
  </channel>
</rss>

