Editing Fusion Post Processor


Results 1 to 2 of 2

Thread: Editing Fusion Post Processor

  1. #1
    Registered
    Join Date
    Jul 2007
    Location
    Canada
    Posts
    139
    Downloads
    0
    Uploads
    0

    Default Editing Fusion Post Processor

    There's a couple little tweaks I'd like to try and make to the UCCNC post processor in fusion. The first is that it automatically adds a G54 command at the beginning of the code. For my purposes I prefer to choose which WCS I'll use on the machine, and this could cause a crash if I forget to delete it before running a program. Also, there's an M6 command right at the beginning which is unnecessary for my setup as I already have the first tool loaded and set before a program starts.

    I found this bit in the configuration, which looks like the code for calling G54. Can anyone familiar with this programing offer some advice on what lines to change to disable calling G54.
    // wcs
    if (insertToolCall) { // force work offset when changing tool
    currentWorkOffset = undefined;
    }
    var workOffset = currentSection.workOffset;
    if (workOffset == 0) {
    warningOnce(localize("Work offset has not been specified. Using G54 as WCS."), WARNING_WORK_OFFSET);
    workOffset = 1;
    }
    if (workOffset > 0) {
    if (workOffset > 6) {
    error(localize("Work offset out of range."));
    return;
    } else {
    if (workOffset != currentWorkOffset) {
    writeBlock(gFormat.format(53 + workOffset)); // G54->G59
    currentWorkOffset = workOffset;

    Similar Threads:


  2. #2
    Gold Member daniellyall's Avatar
    Join Date
    Sep 2009
    Location
    New Zealand
    Posts
    1856
    Downloads
    3
    Uploads
    0

    Default Re: Editing Fusion Post Processor

    First thing to do have look at these vids get your self notepad++.

    What's in the vid's is enough to cover all the basic stuff in fusion posts.

    You realy need to ask this on the HSM forum and have a look there, there are a few times stuff has come up to do with the UCCNC post.

    <img src="https://ivxo1q-dm2305.files.1drv.com/y4mENMmTr_Cabc7pR0FUdB6gtbADq2JbuG4_rGy0eBQvLJx19pTi6TqMUIJN0xgOyDIc0gWoxYhS38HpbSTFGdfaK-o42IOU6jczrhDpfpCOTNGL1X6hvZCbgj0y35gqmq1YGTrWwShYGV-C7lXA2esy0Pi_WfnBSyroDLSGXwce4uSr1U7op7srdi78rispHCa_K4aFlTlJPVkkNWMfgh_Tg?width=60&height=60&cropmode=none" width="60" height="60" />

    Being Disabled is OK CNC is For fuN


Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


About CNCzone.com

    We are the largest and most active discussion forum for manufacturing industry. The site is 100% free to join and use, so join today!

Follow us on


Our Brands

Editing Fusion Post Processor

Editing Fusion Post Processor