Hello Guest it is April 19, 2024, 07:12:27 AM

Author Topic: undesirable behavior of wizard  (Read 3451 times)

0 Members and 1 Guest are viewing this topic.

Offline tantan

*
  •  130 130
    • View Profile
undesirable behavior of wizard
« on: July 24, 2011, 09:52:38 AM »
i used the keyway wizard. it works fine but:

the code which is generated is for example X-90 y0. a few lines above is G1 F75. if mach3 executes the line x-90 y0 and while the machine is moving i press stop. no worries yet: the machine stops. but when i press run mach go's on with the  the x-90 y0 command but then with G0 speed. ???????

i think the solution would be to generate code like: G1 x-90 y0 F75

Offline BR549

*
  •  6,965 6,965
    • View Profile
Re: undesirable behavior of wizard
« Reply #1 on: July 24, 2011, 03:20:54 PM »
The Problem IS you pressed STOP instead of Feedhold(;-)

At feedhold all the modal calls such as G1 and feedrate stay in play but with stop Mach dumps all the modal values AS it should. Then IF you press start again the only thing it knows at that point is G0 so that is what it uses.

Might want to curl up with a GOOD gcode manual and study up on the process a bit.

(;-) TP

Offline tantan

*
  •  130 130
    • View Profile
Re: undesirable behavior of wizard
« Reply #2 on: July 26, 2011, 06:57:58 AM »
oke tnx. well this makes sense.