587,917 active members*
3,493 visitors online*
Register for free
Login
Results 1 to 9 of 9
  1. #1
    Join Date
    Jun 2014
    Posts
    8

    Hardinge Conquest ST225-B

    Hello, I do not have a lot of programing experience, and I have an issue with a program, for a Hardinge Conquest St225-B machine. I believe the program was created on Part Maker. The program works on the machine, but I cannot get the thing to repeat. It ends up pausing after the slotting cycle. It almost seems like there is an invisible M0 in the program. After this stop the program will part-off and start the program again. I have to make 1000 + parts and right now I'm pushing the Cycle Start button once per part. I included the problem area of code. I looked through the thing and could not figure out what is causing the problem. I would really appreciate if someone could tell me the problem or get me on the right path to fixing it. Thanks.

    H1
    %
    O2260 (1/19/2014)
    (HARDINGE SST POST PROCESSOR VERSION B8.0)
    (COLLET RECHUCK)
    M900
    G0 G28 U0
    T1414
    G0 X0.35 (STOCK + CLEARANCE)
    G97 S3000 M13
    G1 G99 X-0.02 F.002
    G97 S500 M13
    M21
    M93
    G4 V.5
    G300 Z1.5
    G50 Z0.6526
    M22
    M94
    G4 V.5
    G0 X1.25
    G28 U0 T0
    M901
    M1

    (PROCESS 1 FACE)
    M902
    G28 U0
    T1515 (80-RIGHT KM TURN .002 )
    G97 S3000 M13
    G99 G0 X0.286 Z0.
    G1 X0.246 F0.002
    X-0.004
    M903

    (PROCESS 2 MAIN TURN TURN)
    G0 X-0.004 Z0.
    G1 X0.2277 F0.004
    X0.25 Z0.0112 F0.0005 (CHAMFER)
    Z0.0812 F0.002
    X0.2688 Z0.0906
    G0 X0.35 Z-0.05
    G28 U0
    M904
    M1

    M5

    (PROCESS 10 SAW SLOT 1)
    M905
    G28 U0
    T0303 (.025 SLOT SAW)
    S2000 M53
    B0 Y-0.225 Z-0.475
    G98 X0.35
    G1 X-0.04 F75.0
    Z-0.345 F5.0
    Y0.225 F5.0
    Z-0.475 F5.0
    G0 X0.35
    M906

    (PROCESS 6 SAW SLOT 2)
    M907
    B0 Y-0.225 Z-0.475
    G98 X0.35
    G1 X-0.01 F75.0
    Z-0.345 F5.0
    Y0.225 F5.0
    Z-0.475 F5.0
    G0 X0.5 M55
    G0 Z-.05
    G28 U0
    M908
    M1

    M24 (C-AXIS OFF)
    G18

    (PROCESS 7 BACK TURN) <<<< This is where the machine stops.
    M909
    G28 U0
    T0505 (SANDVIK MABR 3010)
    G97 S2000 M13
    G99 G0 X0.29 Z0.05
    G1 X0.25 F0.001
    X0.1342
    Z0.1779
    X0.1 Z0.195
    G0 X.350
    G28 U0
    M910
    M1

    H2
    %
    O2260 (1/19/2014)
    (HARDINGE SST POST PROCESSOR VERSION B8.0)
    (COLLET RECHUCK)
    M900
    G0 G28 W0
    M901
    M1

    (PROCESS 1 FACE)
    M902
    G0 G28 W0
    M903

    (PROCESS 2 MAIN TURN TURN)
    M904
    M1

    (PROCESS 10 SAW SLOT 1)
    M905
    G0 G28 W0
    M906

    (PROCESS 6 SAW SLOT 2)
    M907
    G0 G28 W0
    M908

    (PROCESS 7 BACK TURN)
    M909 <<<<< Stops here.
    G0 G28 W0
    M910
    (M1)

  2. #2
    Join Date
    Sep 2011
    Posts
    261

    Re: Hardinge Conquest ST225-B

    I dont know your machine specifically, but the M900 codes appear to be wait or mode codes. My quick google search shows that it has a dual path control. My guess is that you have a mismatching wait code in one of the programs (main or sub) or subprogram. Double check all your M900 codes, that they have a matching pair, are in the right sequence, and are not duplicated accidentally.

    That's my guess.
    CNC Product Manager / Training Consultant

  3. #3
    Join Date
    Sep 2013
    Posts
    37

    Re: Hardinge Conquest ST225-B

    Just to get it out of the way, you don't have optional stop turned on on the machine do you?

  4. #4
    Join Date
    Jun 2014
    Posts
    8

    Re: Hardinge Conquest ST225-B

    I have repeat mode on, so that it runs through the whole program. It just stops at that area. I'll try adding in Sync codes right before the error occurs to try to prevent it from becoming out of sync.

  5. #5
    Join Date
    Sep 2013
    Posts
    37

    Re: Hardinge Conquest ST225-B

    So, I understand where it looks like it stops, but your wait codes look fine. Usually the screen is a line or to ahead when it stops like that due to the way the nc buffers the code. Either it's stopping at the M1, which means you have another switch turned on other than repeat. Or it's getting stuck on g18 or m24. An m code (m24 or the wait codes) failure should alarm the machine out, but you are saying that it just sits and waits for you to hit start. And then runs ok. G18 is just a plane shift can't imagine why that would do it.


    Sent from my iPad using Tapatalk HD

  6. #6
    Join Date
    Jun 2014
    Posts
    8

    Re: Hardinge Conquest ST225-B

    There is not error alarm message at all when it stops. I removed G19 M24; from H1 after the m905, because the machine would error here. The feed hold button would light up and the machine would stop. The programmer's manual says that the G19 selects the yz plane. I thought that because a B axis move was called up after the G19, that this is why the feed hold button would turn on. This error does not happen anymore but I thought it might have something to do with the issue now.

  7. #7
    Join Date
    Sep 2013
    Posts
    37

    Re: Hardinge Conquest ST225-B

    So weird. Try moving the g18 after the m908 down to right after the t0505. See if that fixes it. Nothing else makes any sense. Put a () around that m1 right after the m908.


    Sent from my iPad using Tapatalk HD

  8. #8
    Join Date
    Jun 2014
    Posts
    8

    Re: Hardinge Conquest ST225-B

    Figured it out. The M24 is not recognized by the hardinge machine. I replaced it with a M05 and if fixed the whole thing.

  9. #9

    Re: Hardinge Conquest ST225-B

    hello
    Any one tell me about C Axis of Hardinge Conquest ST225

Similar Threads

  1. hardinge conquest 51
    By mikemck in forum Hardinge Lathes
    Replies: 2
    Last Post: 11-16-2015, 02:33 PM
  2. Hardinge conquest 42
    By gyroxis in forum Hardinge Lathes
    Replies: 1
    Last Post: 09-21-2010, 02:07 AM
  3. Hardinge Conquest 42
    By newc in forum Hardinge Lathes
    Replies: 1
    Last Post: 02-25-2010, 01:10 PM
  4. Hardinge Conquest 42
    By cncdiag in forum Fanuc
    Replies: 1
    Last Post: 05-21-2008, 01:06 AM
  5. Hardinge conquest t-51 info
    By mailloux in forum Uncategorised MetalWorking Machines
    Replies: 3
    Last Post: 10-12-2007, 07:11 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
  •