looping program when drip feeding mill
looping program when drip feeding mill
(OP)
I'm using "easy DNC" to drip feed programs to a fanuc 18-M, on a 3 axis mill.
The problem is, once it's finnished that cycle, i have to stop the PC sending, reset, the m/c, set the m/c to recieve, and send from the PC again..
Can someone tell me how i can set it up so i just have to keep pressing GO at the m/c to repeat the cycle..
The problem is, once it's finnished that cycle, i have to stop the PC sending, reset, the m/c, set the m/c to recieve, and send from the PC again..
Can someone tell me how i can set it up so i just have to keep pressing GO at the m/c to repeat the cycle..





RE: looping program when drip feeding mill
I'm not familiar with that particular Fanuc, but those that I used a while ago had two operating modes; one was "Tape" which threw the code away as it completed each line (a true "Drip Feed" for programs too large for the machine's memory), and the other mode (I forget what it was called, something like "Run/Edit") which retained the program in its memory so that it could be run again from the machine's cycle start, like you want to do.
I hope that helps
RE: looping program when drip feeding mill
It's when i drip feed it through the "tape" function, that i can't simply start another cycle, without resetting and re-sending, has anyone got a solution to this problem ?
RE: looping program when drip feeding mill
Can you get a memory upgrade for your Fanuc controller? I fear that's the only real solution!
If that's not possible, then you might find another DNC program or macros that will automate some of the resetting and loading on the PC.
RE: looping program when drip feeding mill
RE: looping program when drip feeding mill
A "Go To" in the NC code won't work as the beginning of the code has long since been thrown away.
There may well be an easier way than you're currently using, it's just that nobody here seems to know of it. Have you tried a more specialised forum like this one?
http://
Good luck!
RE: looping program when drip feeding mill
If the program is in memory the way to loop is with an M99, instead of an M30 at the end of the program.
As far as looping with the program in the PC I don't think an M99 will work. That is all dependant on the software you are using to do the DNC.
RE: looping program when drip feeding mill
Larry