Re: [Emc-users] Using MDI during a Program?

2009-07-03 Thread Hubert Bahr
Thanks Les, This seems to do the job. The only thing I noticed and this was also true with the distribution version is that the continue message does not always appear on the first tool. It does for all later tools though, and it is easy enough to overcome this by simply making the

Re: [Emc-users] Using MDI during a Program?

2009-07-03 Thread Leslie Newell
Hi Hubert, Thanks for testing it. I think the reason why it is missing the first tool change is that you have already selected that tool in MDI. If you hit an M06 for a tool that is already in the spindle, EMC ignores it. In it's current form it is too easy to get out of sync with Axis. To be

Re: [Emc-users] VariCAD and EMC2

2009-07-03 Thread Ádám Novák
Hi Lenny, Sure, send me an e-mail. Adam -- ___ Emc-users mailing list Emc-users@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/emc-users

[Emc-users] Debug gcode program

2009-07-03 Thread Frank Tkalcevic
I have a gcode program. I loaded it into axis. It loads, but the backplot doesn't look right. How can I debug it? Is there a way to get the gcode output from it? Can I run it through the simulator? Is the simulator easy to set up?

Re: [Emc-users] O-words with n-words, patch attached

2009-07-03 Thread Maximilian H
Hello Chris, i do have more interpreter code. To whom to i submit it for discussion/review/commit ? Thanks BR Max On Mon, Jun 29, 2009 at 02:28:12PM +0200, Maximilian H wrote: The attached small patch to Interp::read_items allows o-words with n-words without changing any other behaviour

Re: [Emc-users] O-words with n-words, patch attached

2009-07-03 Thread Alex Joni
Hi Max, the devel list is just fine. Regards, Alex - Original Message - From: Maximilian H mhemc2nos...@googlemail.com To: Enhanced Machine Controller (EMC) emc-users@lists.sourceforge.net Sent: Friday, July 03, 2009 1:12 PM Subject: Re: [Emc-users] O-words with n-words, patch attached

Re: [Emc-users] O-words with n-words, patch attached

2009-07-03 Thread Kenneth Lerman
For bug fixes, I would suggest the development list. For enhancements or changes to functionality that might break something, I'd suggest a discussion on the development list prior to doing the work. I'd also suggest adding a page to the wiki where significant points of discussion could be

[Emc-users] Simple compile help needed

2009-07-03 Thread Cal Grandy
Well, simple for some. (Unix is friendlyto some ;) I am trying to take advantage of the filtering to HP-GL files provided by this program, Download http://pldaniels.com/hpgl-distiller hpgl-distiller-0.9.1.tar.gz I have done this several months before, and all went as expected, now a

Re: [Emc-users] Simple compile help needed

2009-07-03 Thread Dave Caroline
if you care to go on IRC and visit ##electronics on freenode look for the user inflex he is pdaniels Dave Caroline -- ___ Emc-users mailing list

Re: [Emc-users] Simple compile help needed

2009-07-03 Thread Alex Joni
a short google after your first error in the file got me to this: http://ubuntuforums.org/showthread.php?t=95674 I'd try installing : sudo apt-get install build-essential Regards, Alex - Original Message - From: Cal Grandy cmg...@sover.net To: Enhanced Machine Controller (EMC)

Re: [Emc-users] GWiz Available for Alpha Testing

2009-07-03 Thread Frank Tkalcevic
I'm now using 0.1.5, and set up the symlink and that is going fine. A few more bugs ... 1) If you try to save a new file, or save as an existing file, over the top of an existing .wiz file (select the file from the file selection dialog), it gets saved as file.wiz.wiz, that is, it doesn't

Re: [Emc-users] Simple compile help needed

2009-07-03 Thread Cal Grandy
Oh Great ! Thanks On Fri, 2009-07-03 at 22:45 +0100, Dave Caroline wrote: if you care to go on IRC and visit ##electronics on freenode look for the user inflex he is pdaniels Dave Caroline --

Re: [Emc-users] Debug gcode program

2009-07-03 Thread Frank Tkalcevic
Just to clarify this, it's a gcode program that uses functions, loops and conditionals. What's the best way to debug this? -Original Message- From: Frank Tkalcevic [mailto:fr...@franksworkshop.com.au] Sent: Friday, 3 July 2009 7:45 PM To: 'Enhanced Machine Controller (EMC)'

Re: [Emc-users] Simple compile help needed

2009-07-03 Thread Cal Grandy
With sudo apt-get install build-essential The program compiled just as expected. Would someone just hit me upside the head from time to time? Thanks so much now to give it a whirrl. On Fri, 2009-07-03 at 18:41 -0400, Cal Grandy wrote: Oh Great ! Thanks

Re: [Emc-users] OpenGL on EMC2? + 7i43

2009-07-03 Thread Richard Acosta
Maybe if you try to pay more attention and take some time to understand what you read and realize noone asked for YOUR PREFERENCE (Quoted). You could find (if you read) that i have explained about the way i installed the system and than i did it the same way you did. also i explained than it was

Re: [Emc-users] OpenGL on EMC2? + 7i43

2009-07-03 Thread Terry
Richard I think you should demand a refund from everybody on this list who tried to help you. Terry It is better to keep your mouth shut and let people think you are an idiot than open it and remove all doubt. On Fri Jul 3 21:26 , Richard Acosta eyela...@gmail.com sent: Maybe if you try

Re: [Emc-users] Debug gcode program

2009-07-03 Thread Kenneth Lerman
I usually find that adding some debug statements can solve my problem. (debug, variable1=#1 namedvar=#this_var) The above will display values of variables. (print, variable1=#1 namedvar=#this_var) Will write the output to stdout. (or perhaps stderr -- I forget). See the manual. Ken Frank