585,959 active members*
4,795 visitors online*
Register for free
Login
IndustryArena Forum > CAM Software > Autodesk CAM > Editing Fusion Post Processor
Results 1 to 2 of 2
  1. #1
    Join Date
    Jul 2007
    Posts
    139

    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;

  2. #2
    Join Date
    Sep 2009
    Posts
    1856

    Re: Editing Fusion Post Processor

    First thing to do have look at these vids https://www.youtube.com/watch?v=a2iJ...EFpw-Px8dAxnEL 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.
    http://danielscnc.webs.com/

    being disabled is not a hindrance it gives you attitude
    [SIGPIC][/SIGPIC]

Similar Threads

  1. Post Processor Editing
    By Malish in forum BobCad-Cam
    Replies: 23
    Last Post: 06-03-2020, 07:24 AM
  2. Post processor editing
    By Nadroj88 in forum Post Processors for MC
    Replies: 20
    Last Post: 04-09-2012, 12:22 PM
  3. Post Processor editing
    By qnet2 in forum Mastercam
    Replies: 14
    Last Post: 11-25-2009, 09:48 PM
  4. POST PROCESSOR EDITING
    By blmmdes in forum Hypermill
    Replies: 5
    Last Post: 05-08-2008, 06:27 PM

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
  •