Re: [Emc-developers] git

2017-04-27 Thread Stuart Stevenson
Thanks for the replies. I had already blown it away and cloned it again. I am back where I was before trying to fix it with git. :) I will try to 'fix' it again in the next couple days. -- Addressee is the intended audience. If you are not the addressee then my consent is not given for you to

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Chris Morley
I removed error message polling from gstat. I also added the math import (Thanks Norrbert) Chris M From: Chris Morley Sent: April 27, 2017 6:42 PM To: EMC developers Subject: Re: [Emc-developers] Error channel missing errors yes I

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Chris Morley
yes I guess ideally linuxcnc would create duplicate error channels. This is what I was trying to do with GObject messaging - each user registers and the messages are sent to all. I'm just a software layer or two too high. Unfortunately I don't think I have the chops to fix that layer and I'm

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Kurt Jacobson
Norbert, thank you for confirming that the problem is not specific to my GUI. I don't know what the best solution is, but I would vote for changing the error channel behavior so that it is analogous to the stat channel. This would mean that the most recent error is returned when polling for

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Niemand Sonst
Hallo Chris, I just tested also with a simulated limit switch and as reported previously not all errors are reported. After I commented out GStat lines for error polling, I got the errors reported correctly. So in deed it is caused by double polling errors. So we have to discus, if the error

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Kurt Jacobson
On Thu, Apr 27, 2017 at 1:33 PM, andy pugh wrote: > On 27 April 2017 at 17:09, Chris Morley > wrote: > > The more I explain this the more I realize I think I need to remove > error polling. > > Could there be two (duplicated) error channels? >

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Niemand Sonst
Am 27.04.2017 um 05:11 schrieb Kurt Jacobson: > Hello all, > > I am using the Python interface and have noticed recently that the error > channel appears to catch errors only about 50% of the time. The errors get > printed to the terminal but don't show up when polling the error channel. I > did

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread andy pugh
On 27 April 2017 at 17:09, Chris Morley wrote: > The more I explain this the more I realize I think I need to remove error > polling. Could there be two (duplicated) error channels? -- atp "A motorcycle is a bicycle with a pandemonium attachment and is designed for

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Kurt Jacobson
Sorry, my fat fingers somehow hit a key combo that sent the previous message before it was ready! Chris, I commented out those lines and sure enough I now get all the errors in my UI again. I guess I have two options: Stop using HAL gremlin and sourceview or use Gstat exclusively. I don't see

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Kurt Jacobson
Chris, I commented out those lines and sure enough I now get all the errors in my UI again. I guess I have two options: Stop using HAL gremlin and sourceview or use Gstat exclusively. Gstat one solution would be for my to stop using the HAL_ On Thu, Apr 27, 2017 at 12:09 PM, Chris Morley

Re: [Emc-developers] Error channel missing errors

2017-04-27 Thread Chris Morley
From: Kurt Jacobson Sent: April 27, 2017 3:22 PM To: EMC developers Subject: Re: [Emc-developers] Error channel missing errors > > A change recently in master has Gstat poll for errors. Does it poll even if I am not using Gstat? >