Re: [CAD_CAM_EDM_DRO] RE: USB DLP2232M CNC, Was Re: Interface. Gauging interest.
Posted by
Mike Pogue
on 2006-05-19 17:54:12 UTC
Alan Marconett wrote:
the answer is "yes", but I can't prove it. At some point, I may
beg/borrow/steal the equipment to find this out.
which as I recall is mainly for video. I would guess that it uses the
BULK mode. FTDI specs say it supports both, I just don't know which one
their subroutine library defaults to.
HID is can be used for a lot of different devices, and Windows has
built-in support for this class of device. But, it's generally a
lower-speed protocol, for stuff like keyboards and mice and buttons.
COM (as in COM port??) views the USB device as a "port", e.g. a serial
port, or parallel port. I have the B side of the 2232 programmed this
way, because I use it to talk to an LCD display that expects 9600 baud
serial.
But, the high speed part of the design, the part that connects to STEP
and DIRECTION, is neither. It shows up in the Windows Device Manager as
"FT2232C Channel A".
simple, and I use it for testing. The test program has the following
buttons right now:
Open Port A
Close Port A
Write 0x00
Write 0xFF
Interpolate
That last one I use to test my linear interpolation routine. I have 3
distance sliders right now (X, Y, and Z), and when I click on
"Interpolate", my test generates an incremental move using linear
interpolation (essentially, G91 G01 X.. Y.. Z.. in g-code).
The test program is written in Borland C++ Builder 5. At some point, I
may switch over to Visual Studio Express, which is now free from Microsoft.
than that. FTDI provides a separate subroutine library and driver that
makes it super-simple to talk USB to their chip.
Here's what it looks like (somewhat simplified, but not much). This is
in C/C++:
1. ftStatus = FT_Open(0, &ftHandle);
2. ... code to calculate what to send out ...
3. ftStatus = FT_Write(ftHandle, buffer, numBytes, &bytesWritten);
4. FT_Close(ftHandle);
Line 1: Open the port (0 means port A), and give me back something to
refer to this port later with (the port's "handle").
If there's an error trying to open it (like, it wasn't
plugged in), ftStatus will contain an error code.
Line 2: This is where the hard work happens. Here is
where I figure out the bytes I want to send to the
Allegro chips. I stick all the bytes (1 at a time) into
a buffer (an array), and when I have enough of them...
Line 3: ...I call FT_Write to send them all down the wire.
Write <numBytes> bytes starting at <buffer> to the port
specified by <ftHandle>. When you're done, tell me
how many bytes you wrote (bytesWritten).
The FTDI library takes care of sending them in batches that
fit into the on-chip FIFO.
Note that all the clocking out at 9600*16 baud happens in
hardware on the FTDI chip itself. So, once the on-chip
buffer has data in it, it merrily clocks away every 6.5us,
while I'm working on the calculations for the
next batch o' bytes.
Line 4: Close the specified port, because I'm done with it.
company called DLPDesign. DLPDesign provides schematics for the thing,
too, so you can see exactly what you're getting.
I'm not at all associated with the DLPDesign company, other than being a
happy customer! DLPDesign sells their little modules through Mouser,
which is where I got mine.
performance), so I decided to try doing without a microcontroller to
start with. (I like to think of myself as "fiscally conservative",
although my wife calls me "cheap". :-)
the FT_ routines I described above, the library does all that work for
you. Saves a ton of time!
lines (with accel/decel) and circles (with accel/decel).
If I can get those working well, I will work on a minimal G-code
interpreter (G00/01, G02/03, G54/43/28, G90/91, M03/M05, M30).
> Hi Mike,Unfortunately, I don't have the equipment to measure this. I suspect
>
> Sorry I couldn't remember the source!
>
> That certainly sounds simple enough. Then can the USB keep stuffing the
> input of the FIFO fast enough so that the 6.5 uS output of the FIFO is NEVER
> interrupted?
the answer is "yes", but I can't prove it. At some point, I may
beg/borrow/steal the equipment to find this out.
> What USB transfer mode do you use? I've read about theI don't know for sure. I don't think it uses the isochronous mode,
> ISOCHRONOS mode that sounds like a likely candidate.
which as I recall is mainly for video. I would guess that it uses the
BULK mode. FTDI specs say it supports both, I just don't know which one
their subroutine library defaults to.
> HID or COM type?I'm not a USB guru, but I think the correct answer is "neither".
HID is can be used for a lot of different devices, and Windows has
built-in support for this class of device. But, it's generally a
lower-speed protocol, for stuff like keyboards and mice and buttons.
COM (as in COM port??) views the USB device as a "port", e.g. a serial
port, or parallel port. I have the B side of the 2232 programmed this
way, because I use it to talk to an LCD display that expects 9600 baud
serial.
But, the high speed part of the design, the part that connects to STEP
and DIRECTION, is neither. It shows up in the Windows Device Manager as
"FT2232C Channel A".
> Do you already have a full CNC controller program written for Windoz, or areI am writing my own CNC controller program. Right now, it's real
> you testing move routines? What language?
simple, and I use it for testing. The test program has the following
buttons right now:
Open Port A
Close Port A
Write 0x00
Write 0xFF
Interpolate
That last one I use to test my linear interpolation routine. I have 3
distance sliders right now (X, Y, and Z), and when I click on
"Interpolate", my test generates an incremental move using linear
interpolation (essentially, G91 G01 X.. Y.. Z.. in g-code).
The test program is written in Borland C++ Builder 5. At some point, I
may switch over to Visual Studio Express, which is now free from Microsoft.
> How hard is it to "talk" to the USB via your high level language? I've seenI don't pretend it's a serial port, or a parallel port. It's simpler
> apps that relied on a "virtual comm. port" created by a USB driver. Do you
> use that (FTDI driver), or is there a way to talk "USB" to the USB device
> directly? (Boy, there is a LOT I've got to try to ketch up on!)
than that. FTDI provides a separate subroutine library and driver that
makes it super-simple to talk USB to their chip.
Here's what it looks like (somewhat simplified, but not much). This is
in C/C++:
1. ftStatus = FT_Open(0, &ftHandle);
2. ... code to calculate what to send out ...
3. ftStatus = FT_Write(ftHandle, buffer, numBytes, &bytesWritten);
4. FT_Close(ftHandle);
Line 1: Open the port (0 means port A), and give me back something to
refer to this port later with (the port's "handle").
If there's an error trying to open it (like, it wasn't
plugged in), ftStatus will contain an error code.
Line 2: This is where the hard work happens. Here is
where I figure out the bytes I want to send to the
Allegro chips. I stick all the bytes (1 at a time) into
a buffer (an array), and when I have enough of them...
Line 3: ...I call FT_Write to send them all down the wire.
Write <numBytes> bytes starting at <buffer> to the port
specified by <ftHandle>. When you're done, tell me
how many bytes you wrote (bytesWritten).
The FTDI library takes care of sending them in batches that
fit into the on-chip FIFO.
Note that all the clocking out at 9600*16 baud happens in
hardware on the FTDI chip itself. So, once the on-chip
buffer has data in it, it merrily clocks away every 6.5us,
while I'm working on the calculations for the
next batch o' bytes.
Line 4: Close the specified port, because I'm done with it.
> I didn't see a " DLP-2232PB has the FTDI chip, plus a PIC 16F277A " on theThe 2232 + PIC module isn't sold by FTDI itself. It's sold by another
> FTDI website:
>
> http://www.ftdichip.com/
company called DLPDesign. DLPDesign provides schematics for the thing,
too, so you can see exactly what you're getting.
I'm not at all associated with the DLPDesign company, other than being a
happy customer! DLPDesign sells their little modules through Mouser,
which is where I got mine.
> It sounds more like the USB PIC, and could be more useful.Very similar, I think. I was going for minimal cost (with adequate
performance), so I decided to try doing without a microcontroller to
start with. (I like to think of myself as "fiscally conservative",
although my wife calls me "cheap". :-)
> Your project hardware also seems to fit into the "USB-CNC-PARALLEL" boardThere's really no "programming" of the 2232 to do, per se. If you use
> description. Do you have to do much to program the 2232?
the FT_ routines I described above, the library does all that work for
you. Saves a ton of time!
> Certainly sounds interesting. I'm anxious to see your progress.I'll let you know how it goes! Right now, I am focusing on the basics:
lines (with accel/decel) and circles (with accel/decel).
If I can get those working well, I will work on a minimal G-code
interpreter (G00/01, G02/03, G54/43/28, G90/91, M03/M05, M30).
> Alan KM6VV
>
>
>
>>Alan Marconett wrote:
>>
>>>WHO was doing something with the DLP2232M module? (please contact me)
>>
>>I'd
>>
>>>like to hear a little more about that. There IS buffering (FIFO). Is
>>
>>there
>>
>>>an interrupt to clock the data out of the FIFO? Another clock to de-
>>
>>couple
>>
>>>the output as smooth steps?
>>
>>That would be me!
>>
>>Yes, there's buffering, and it seems to work pretty well. I seem to be
>>getting a reliable rate of one byte sent out every 6.5us, and my PC is
>>not even breathing hard doing the calculations for the step pulses.
>>
>>Note: no separate clock is needed to output smooth steps -- what's so
>>nice about this FIFO mode is that the chip clocks data out every 6.5us
>>for you. If you don't send it anything, the last value you sent just
>>sits there. The clock rate I'm using right now is 9600 * 16 (153.6kHz).
>>
>>That makes for a maximum step rate of 76.8kHz, because you have to send
>>a zero, then a one, for every step. But, since data is clocked out
>>every 6.5us, that means that you can place the slower STEP signals with
>>an accuracy of 6.5us (the full resolutions you'd expect with a 153.6kHz
>>clock).
>>
>>If I remember right, that's almost as fast as the Allegro chip in the
>>HobbyCNC board can take it.
>>
>>There is a line available to clock data out of the thing, but I don't
>>use it -- the FTDI chip just holds on to the last value, until the next
>>one is ready to be clocked out. If you wanted to clock the data stream
>>into an external latch, or use that line to interrupt a PIC, you
>>certainly could.
>>
>>In fact, DLPDesign makes such a FTDI+PIC thing, that works exactly like
>>that. DLP-2232PB has the FTDI chip, plus a PIC 16F277A. Because of the
>>PIC, it costs a bit more ($50 vs $35).
>>
>>If I get stuck with the 2232 alone, and the pulse train has problems
>>coming raw from the 2232 chip, I'll move up to this more expensive
>>version, and program the PIC to do the pulses for me.
>>
>>Info is here:
>>http://www.dlpdesign.com/usb/2232m.shtml
>>
>>Right now, I run the FTDI chip's output lines directly to a female DB-25
>>connector, that plugs into a HobbyCNC board, just like a parallel port
>>cable would. Something like this:
>>
>>2232's
>>PortA
>>0 XStep
>>1 XDir
>>2 YStep
>>3 YDir
>>4 ZStep
>>5 ZDir
>>6 AStep
>>7 ADir
>>
>>The FTDI chip also can do simultaneous reads at that same rate (so, as
>>you're writing bytes, the chip is also reading bytes in at the same time
>>and sending them back to you), but I'm not doing that sort of thing yet.
>>
>>Mike
Discussion Thread
Dennis Schmitz
2006-05-12 00:26:44 UTC
Interface. Gauging interest.
ballendo
2006-05-12 02:33:46 UTC
Re: Interface. Gauging interest.
lcdpublishing
2006-05-12 04:34:40 UTC
Re: Interface. Gauging interest.
Fred Smith
2006-05-13 09:29:18 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-13 17:57:12 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
turbulatordude
2006-05-13 18:34:05 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-15 10:03:25 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-15 10:31:40 UTC
Re: Interface. Gauging interest.
Jack Hudler
2006-05-15 10:57:21 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-15 11:21:49 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-15 12:23:16 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Roy J. Tellason
2006-05-15 12:58:17 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-15 13:09:24 UTC
Re: Interface. Gauging interest.
Mike Pogue
2006-05-15 13:39:03 UTC
USB-to-step/direction (was Interface. Gauging interest.)
Codesuidae
2006-05-15 13:51:14 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-15 14:41:53 UTC
Re: Interface. Gauging interest.
Jack Hudler
2006-05-15 14:47:30 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike
2006-05-15 14:53:37 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-15 14:54:07 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-15 15:07:28 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-15 15:08:32 UTC
Re: Interface. Gauging interest.
Roy J. Tellason
2006-05-15 15:24:52 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Roy J. Tellason
2006-05-15 15:28:12 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
lcdpublishing
2006-05-15 16:25:26 UTC
Re: Interface. Gauging interest.
Graham Stabler
2006-05-15 17:26:42 UTC
Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-15 17:36:42 UTC
Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-15 18:10:03 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-15 18:32:25 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Codesuidae
2006-05-15 18:37:07 UTC
Re: [CAD_CAM_EDM_DRO] USB-to-step/direction (was Interface. Gauging interest.)
ballendo
2006-05-15 20:35:11 UTC
Re: Interface. Gauging interest.
Jack Hudler
2006-05-15 21:38:44 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
JanRwl@A...
2006-05-15 22:07:34 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-15 22:11:15 UTC
Re: [CAD_CAM_EDM_DRO] USB-to-step/direction (was Interface. Gauging interest.)
JanRwl@A...
2006-05-15 22:19:53 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-15 22:24:36 UTC
Re: Interface. Gauging interest.
Tony Jeffree
2006-05-15 22:32:10 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dave Halliday
2006-05-15 23:01:44 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-16 00:08:57 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-16 00:13:54 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Jack Hudler
2006-05-16 00:17:01 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-16 00:18:23 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Lester Caine
2006-05-16 00:24:55 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Jack Hudler
2006-05-16 00:30:57 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-16 01:08:35 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 01:16:52 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 01:19:38 UTC
OT Re: Interface. Gauging interest.
ballendo
2006-05-16 01:25:07 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 01:32:25 UTC
Re: Interface. Gauging interest.
Graham Stabler
2006-05-16 02:07:21 UTC
Re: Interface. Gauging interest.
Lester Caine
2006-05-16 04:23:18 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
lcdpublishing
2006-05-16 06:03:14 UTC
Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 07:49:54 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Roy J. Tellason
2006-05-16 08:04:54 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 08:23:35 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-16 09:11:32 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-16 09:14:40 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Codesuidae
2006-05-16 09:23:11 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
gort38
2006-05-16 09:36:00 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 09:42:33 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 09:49:07 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 09:55:54 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-16 10:03:37 UTC
Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 10:05:29 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 10:19:18 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-16 10:39:14 UTC
Re: Interface. Gauging interest.
Dan Mauch
2006-05-16 11:05:32 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
gort38
2006-05-16 11:32:18 UTC
Re: Interface. Gauging interest.
Dave Halliday
2006-05-16 11:32:57 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-16 11:51:28 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
wanliker@a...
2006-05-16 12:18:14 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Codesuidae
2006-05-16 12:35:42 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 12:36:26 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Lester Caine
2006-05-16 12:46:11 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 12:53:45 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-16 13:03:38 UTC
OT Re: Interface. Gauging interest.
wanliker@a...
2006-05-16 13:05:51 UTC
Interface. Gauging interest.
Codesuidae
2006-05-16 14:41:32 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-16 14:43:54 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Phil Mattison
2006-05-16 15:23:22 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Codesuidae
2006-05-16 15:40:41 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-16 15:53:31 UTC
Re: Interface. Gauging interest.
Steve Blackmore
2006-05-16 17:22:39 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Phil Mattison
2006-05-16 17:29:41 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-16 18:47:10 UTC
Re: Interface. Gauging interest.
Jon Elson
2006-05-16 21:44:52 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Lester Caine
2006-05-16 22:42:56 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Steve Blackmore
2006-05-17 00:05:31 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
lcdpublishing
2006-05-17 05:32:10 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-17 07:06:18 UTC
Re: Interface. Gauging interest.
Phil Mattison
2006-05-17 08:51:38 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Roy J. Tellason
2006-05-17 08:55:46 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
lcdpublishing
2006-05-17 09:22:57 UTC
Re: Interface. Gauging interest.
Phil Mattison
2006-05-17 09:47:13 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-17 09:58:14 UTC
Irrelevant Gcode?!? wasRe: Interface. Gauging interest.
ballendo
2006-05-17 10:00:45 UTC
irrelevnat Gcodes was Re: Interface. Gauging interest.
ballendo
2006-05-17 10:02:38 UTC
Re: Interface. Gauging interest.
lcdpublishing
2006-05-17 10:13:56 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-17 10:17:41 UTC
Re: Interface. Gauging interest.
Fred Smith
2006-05-17 11:13:43 UTC
Re: Interface. Gauging interest.
Lester Caine
2006-05-17 11:40:44 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-17 11:57:03 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-17 20:30:08 UTC
Re: Interface. Gauging interest.
Jack Hudler
2006-05-17 21:04:17 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Jack Hudler
2006-05-17 21:04:53 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-17 22:01:51 UTC
Re: Irrelevant Gcode?!? wasRe: Interface. Gauging interest.
lcdpublishing
2006-05-18 04:58:52 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-18 05:11:22 UTC
OT Re: Interface. Gauging interest.
Graham Stabler
2006-05-18 05:29:38 UTC
OT Re: Interface. Gauging interest.
Steve Blackmore
2006-05-18 16:31:07 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
yracg
2006-05-18 20:53:29 UTC
Re: Interface. Gauging interest.
JanRwl@A...
2006-05-18 21:53:39 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-18 23:18:55 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mike Pogue
2006-05-19 00:51:04 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
yracg
2006-05-19 05:49:15 UTC
Re: Interface. Gauging interest.
Peter Reilley
2006-05-19 05:59:11 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
yracg
2006-05-19 06:22:16 UTC
Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-19 06:58:38 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-19 07:24:10 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 07:26:29 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 07:28:18 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Phil Mattison
2006-05-19 07:49:51 UTC
[CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Mariss Freimanis
2006-05-19 08:29:00 UTC
Re: Interface. Gauging interest.
yracg
2006-05-19 08:31:36 UTC
Re: Interface. Gauging interest.
Wayne Weedon
2006-05-19 08:40:45 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Wayne C. Gramlich
2006-05-19 08:51:48 UTC
Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 08:55:11 UTC
Re: Interface. Gauging interest.
wanliker@a...
2006-05-19 09:11:52 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Lester Caine
2006-05-19 09:37:14 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 09:41:18 UTC
Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 09:47:00 UTC
Re: Interface. Gauging interest.
Codesuidae
2006-05-19 09:48:54 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Dennis Schmitz
2006-05-19 09:53:38 UTC
Re: Interface. Gauging interest.
John Dammeyer
2006-05-19 09:54:19 UTC
USB CNC (was Interface. Gauging interest.)
Jack Hudler
2006-05-19 09:57:07 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 10:40:21 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 10:56:20 UTC
RE: [CAD_CAM_EDM_DRO] USB CNC (was Interface. Gauging interest.)
John Dammeyer
2006-05-19 11:23:37 UTC
RE: [CAD_CAM_EDM_DRO] USB CNC (was Interface. Gauging interest.)
Mike Pogue
2006-05-19 11:59:11 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Lester Caine
2006-05-19 12:05:26 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 12:07:56 UTC
RE: [CAD_CAM_EDM_DRO] USB CNC (was Interface. Gauging interest.)
Mariss Freimanis
2006-05-19 12:27:31 UTC
Re: USB CNC (was Interface. Gauging interest.)
Alan Marconett
2006-05-19 12:48:01 UTC
RE: USB DLP2232M CNC, Was Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 12:56:08 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Wayne C. Gramlich
2006-05-19 13:33:20 UTC
Re: Interface. Gauging interest.
Wayne C. Gramlich
2006-05-19 13:36:36 UTC
Re: Interface. Gauging interest.
Wayne C. Gramlich
2006-05-19 14:00:01 UTC
Re: USB CNC (was Interface. Gauging interest.)
ballendo
2006-05-19 14:06:06 UTC
Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 14:16:09 UTC
RE: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
lcdpublishing
2006-05-19 14:28:40 UTC
Re: PCI interface was ....Interface. Gauging interest.
Alan Marconett
2006-05-19 14:42:25 UTC
RE: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
delmar williams
2006-05-19 14:45:24 UTC
Re: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Lester Caine
2006-05-19 15:06:22 UTC
Re: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Wayne C. Gramlich
2006-05-19 15:34:56 UTC
Re: USB CNC (was Interface. Gauging interest.)
Codesuidae
2006-05-19 15:48:06 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Wayne Weedon
2006-05-19 15:54:46 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
John Dammeyer
2006-05-19 17:13:01 UTC
RE: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Paul Kelly
2006-05-19 17:19:27 UTC
RE: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Mike Pogue
2006-05-19 17:54:12 UTC
Re: [CAD_CAM_EDM_DRO] RE: USB DLP2232M CNC, Was Re: Interface. Gauging interest.
Alan Marconett
2006-05-19 17:59:40 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Anders Wallin
2006-05-19 21:49:32 UTC
Re: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Wayne C. Gramlich
2006-05-20 00:00:48 UTC
Re: USB CNC (was Interface. Gauging interest.)
bob_kellock
2006-05-20 03:18:22 UTC
Re: Interface. Gauging interest.
Les Newell
2006-05-20 05:06:27 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
Alan Marconett
2006-05-20 10:59:18 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Wayne C. Gramlich
2006-05-20 11:58:09 UTC
Re: USB CNC (was Interface. Gauging interest.)
Mariss Freimanis
2006-05-20 13:37:35 UTC
Re: USB CNC (was Interface. Gauging interest.)
Alan Marconett
2006-05-20 14:14:20 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Hugh Prescott
2006-05-20 15:13:59 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Graham Stabler
2006-05-20 15:57:23 UTC
Re: USB CNC (was Interface. Gauging interest.)
Alan Marconett
2006-05-20 16:00:08 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC
Dennis Schmitz
2006-05-20 16:48:12 UTC
Re: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ronginger@a...
2006-05-20 17:53:16 UTC
Re: USB CNC (was Interface. Gauging interest.)
Jack Hudler
2006-05-20 19:23:01 UTC
RE: [CAD_CAM_EDM_DRO] Re: PCI interface was ....Interface. Gauging interest.
Jack Hudler
2006-05-20 19:28:08 UTC
RE: [CAD_CAM_EDM_DRO] Re: Interface. Gauging interest.
ballendo
2006-05-20 22:05:57 UTC
Re: Interface. Gauging interest.
ballendo
2006-05-20 22:26:51 UTC
Re: USB CNC (was Interface. Gauging interest.)
Mike Pogue
2006-05-21 01:49:23 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Alan Marconett
2006-05-21 10:26:01 UTC
Re: [CAD_CAM_EDM_DRO] Re: USB CNC (was Interface. Gauging interest.)
Alan Marconett
2006-05-21 16:54:05 UTC
Re: [CAD_CAM_EDM_DRO] RE: USB DLP2232M CNC, Was Re: Interface. Gauging interest.
Mariss Freimanis
2006-06-06 19:39:41 UTC
Re: Interface. Gauging interest.
Fred Smith
2006-06-06 20:44:50 UTC
ncPOD update, was Re: Interface. Gauging interest.
John Stevenson
2006-06-06 22:55:16 UTC
ncPOD update, was Re: Interface. Gauging interest.
Tony Jeffree
2006-06-07 00:20:00 UTC
Re: [CAD_CAM_EDM_DRO] ncPOD update, was Re: Interface. Gauging interest.
Tony Jeffree
2006-06-07 00:30:33 UTC
Re: [CAD_CAM_EDM_DRO] ncPOD update, was Re: Interface. Gauging interest.
turbulatordude
2006-06-07 08:34:04 UTC
ncPOD update,
Fred Smith
2006-06-07 11:00:14 UTC
Re: ncPOD update,
Tony Jeffree
2006-06-07 13:19:30 UTC
Re: [CAD_CAM_EDM_DRO] Re: ncPOD update,