Re: [Emc-users] SMBus control

2012-09-19 Thread Jon Elson
John Stewart wrote: > > Is there anything out there, web page wise, that outlines the benefits of > something better than the parallel port to a Gecko G540 (or equiv?) > The major reason for using extra hardware for step pulse generation is that you can generate higher step pulse rates, and th

Re: [Emc-users] SMBus control

2012-09-19 Thread Stephen Dubovsky
> I wish real-time ethernet solutions weren't still "on the way." Several already exist. SERCOS III is one. Designed for stuff like motor control. http://en.wikipedia.org/wiki/SERCOS_III We found the needing two ports + proprietary hardware chip to support it fairly limiting so we crafted our ow

Re: [Emc-users] SMBus control

2012-09-19 Thread andy pugh
On 19 September 2012 22:28, John Stewart wrote: > As I'm putting together my 2nd LinuxCNC machine, I'm putting in 2 parallel > ports in this box. > > *but* I read of pico cards, mesa cards, and other things, like the real time > component of Linux CNC and hardware interrupting giving real time

Re: [Emc-users] SMBus control

2012-09-19 Thread Kent A. Reed
On 9/19/2012 4:12 PM, andy pugh wrote: > On 19 September 2012 19:37, Roland Jollivet wrote: > >> Considering the near obsoletion of the parallel port, and the latency of >> USB, is it not possible to do CNC control using the SMBus as part of the >> PCI bus? > There are many PCI io options, and eth

Re: [Emc-users] SMBus control

2012-09-19 Thread John Stewart
Andy, and others; On 2012-09-19, at 4:12 PM, andy pugh wrote: > > There are many PCI io options, and ethernet (RTNet) ones on the way. > Besides, the P-Port has been about to disappear for decades, and still > seems to be there. As I'm putting together my 2nd LinuxCNC machine, I'm putting in 2 p

Re: [Emc-users] Bar code error

2012-09-19 Thread Kent A. Reed
On 9/19/2012 8:40 AM, Dave wrote: > I have created bar codes (Code 128 Auto font) consisting of CAM filenames > with the hope of scanning these bar codes to speed up the process of opening > a program file. I have added ‘o’ to the front end of the bar code which will > bring up the open dialogu

Re: [Emc-users] SMBus control

2012-09-19 Thread andy pugh
On 19 September 2012 19:37, Roland Jollivet wrote: > Considering the near obsoletion of the parallel port, and the latency of > USB, is it not possible to do CNC control using the SMBus as part of the > PCI bus? There are many PCI io options, and ethernet (RTNet) ones on the way. Besides, the P-

Re: [Emc-users] SMBus control

2012-09-19 Thread Charles Steinkuehler
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 9/19/2012 1:37 PM, Roland Jollivet wrote: > Hi All > > Can anyone tell me; > > Considering the near obsoletion of the parallel port, and the > latency of USB, is it not possible to do CNC control using the > SMBus as part of the PCI bus? Not real

Re: [Emc-users] Bar code error

2012-09-19 Thread Joseph Chiu
Well, in some applications, the barcode reader has its own dedicated port (typically a serial port) -- so that scans at the barcode reader does not interfere with other normal keyboard operations. But that requires application support for that. On Wed, Sep 19, 2012 at 11:49 AM, andy pugh wrote:

Re: [Emc-users] Bar code error

2012-09-19 Thread andy pugh
On 19 September 2012 19:27, Joseph Chiu wrote: > This is a fairly common problem with GUI applications where the keystrokes > goes to a "focus" destination. Would it make more sense not to use the GUI? There are other ways to tell LinuxCNC to open a file, maybe axis-remote could be used? http://l

[Emc-users] SMBus control

2012-09-19 Thread Roland Jollivet
Hi All Can anyone tell me; Considering the near obsoletion of the parallel port, and the latency of USB, is it not possible to do CNC control using the SMBus as part of the PCI bus? Although the spec is only 100kHz, wouldn't this be fast enough? Perhaps it could be addressed directly and run at

Re: [Emc-users] Bar code error

2012-09-19 Thread Joseph Chiu
This is a fairly common problem with GUI applications where the keystrokes goes to a "focus" destination. When keys arrive rapidly, the dialog box for taking in the (for example) filename is not yet in focus when the follow-on characters arrive. In some GUI's, opening up a modal dialog box will ke

Re: [Emc-users] Bar code error

2012-09-19 Thread Kirk Wallace
On Wed, 2012-09-19 at 10:17 -0400, Przemek Klosowski wrote: ... snip > There is no reliable solution to this: you can't control timing of the > focus transfer. In normal usage, you press the command and start > typing the filename when you get the visual cue of the window popping > up. You could tr

Re: [Emc-users] Bar code error

2012-09-19 Thread Dave
I believe that I have figured it out. I was able to set up the scanner with a "Intercharacter Delay" which places a short (ms) delay between the transmission of each character of scanned data. I am now able to use "o+filename" (ex: otest) to create my barcode and only scan once to open, popul

Re: [Emc-users] Bar code error

2012-09-19 Thread Przemek Klosowski
On Wed, Sep 19, 2012 at 8:40 AM, Dave wrote: > I have been told that this maybe happening because “the real-time kernal > which gives absolute priority to the motor control thread is interrupting the > “fake keyboard” input of the bar code reader”. It's probably not that the kernel doesn't lis

Re: [Emc-users] Bar code error

2012-09-19 Thread Dave Caroline
My solution in an html system was forcing focus to the box, so fix axis to return to the file open box after the function is performed is what I would do Dave Caroline -- Live Security Virtual Conference Exclusive live ev

Re: [Emc-users] Bar code error

2012-09-19 Thread Dave
That is how I am doing it now, but I am using it in a production setting and would like to speed things up. If that is the case, I could go into the scanner setup and put a delay between 'o' and the filename. -Original Message- From: sam sokolik Sent: Wednesday, September 19, 2012 7:56

Re: [Emc-users] Bar code error

2012-09-19 Thread sam sokolik
I would guess that the open dialog box is not opening quick enough so you loose some of the characters... My thought would be to have to O as a separate barcode on the machine. Scan O then scan the part name. (still quicker than typing) On 9/19/2012 7:40 AM, Dave wrote: > I have created bar

[Emc-users] Bar code error

2012-09-19 Thread Dave
I have created bar codes (Code 128 Auto font) consisting of CAM filenames with the hope of scanning these bar codes to speed up the process of opening a program file. I have added ‘o’ to the front end of the bar code which will bring up the open dialogue box. I have been unsuccessful in gettin