CAD CAM EDM DRO - Yahoo Group Archive

Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time

Posted by Art Fenerty
on 2000-11-27 13:17:58 UTC
Phil:
Interesting, Well then I'd say I'd better look at the memory allocation
issue. I didn't do any error checking on
its creation (since its static) so maybe I'm overwriting some system memory
shouldn't.

Art



----- Original Message -----
From: <phil@...>
To: <CAD_CAM_EDM_DRO@egroups.com>
Sent: Monday, November 27, 2000 1:10 PM
Subject: [CAD_CAM_EDM_DRO] Re: Windows Real-time


> Art,
>
> I wasn't sure myself, so I checked, and the AMD K6 supposedly does
> support the rdtsc instruction.
>
> Regards,
>
> Phil
>
> --- In CAD_CAM_EDM_DRO@egroups.com, "Art Fenerty" <fenerty@h...>
> wrote:
> > Phil:
> >
> > Is it possible that a k6 wont respond to the machine code
> instruction for
> > "rdtsc", I use the time stamp counter
> > in a pentium chip for exact timing. It allows me to time to within
> a few
> > nanoseconds for smoothness. Maybe a K6 has no time stamp counter?
> If it
> > can't the computer would
> > lock up in my initialization loop as it times the CPU bus for
> further
> > calculations.
> >
> > Art
> >
> >
> > Art
> >
> > ----- Original Message -----
> > From: <phil@p...>
> > To: <CAD_CAM_EDM_DRO@egroups.com>
> > Sent: Monday, November 27, 2000 4:44 AM
> > Subject: [CAD_CAM_EDM_DRO] Re: Windows Real-time
> >
> >
> > > Art,
> > >
> > > I downloaded the updated version, but it still locks up the
> machine
> > > immediately.
> > >
> > > This morning I tried the VxD on a Windows 98 computer at work and
> it
> > > seems to work fine. So it must be something screwy with the other
> > > computer. The computer at work is a Dell PIII 866Mhz machine.
> > >
> > > I will take a closer look at the AMD K6-2 machine tonight and see
> if
> > > I can come up with why it locks up. I have SoftICE from Compuware
> > > which will allow debugging of VxDs...
> > >
> > > Regards,
> > >
> > > Phil Covington
> > >
> > >
> > > --- In CAD_CAM_EDM_DRO@egroups.com, "Art Fenerty" <fenerty@h...>
> > > wrote:
> > > > Phil :
> > > > Turns out I was initializing the IO48 board regardless
> > > > whether you had one or not. This might have created the lockup.
> I
> > > have
> > > > replaced the cnc.zip file with an updated version. Thanks for
> the
> > > help. It
> > > > may not cure the problem you encountered, though.
> > > > Art
> > > >
> > > > ----- Original Message -----
> > > > From: "Art Fenerty" <fenerty@h...>
> > > > To: <CAD_CAM_EDM_DRO@egroups.com>
> > > > Sent: Sunday, November 26, 2000 7:10 PM
> > > > Subject: Re: [CAD_CAM_EDM_DRO] Windows Real-time
> > > >
> > > >
> > > > > Thanks for the feedback Phil. Thats the first lock-up report
> I've
> > > gotten.
> > > > > Hopefully, more folks will have the same problem, so I can get
> > > some
> > > > pointer
> > > > > to the problem.
> > > > >
> > > > > Art
> > > > >
> > > > > ----- Original Message -----
> > > > > From: "PhilC" <phil@p...>
> > > > > To: <CAD_CAM_EDM_DRO@egroups.com>
> > > > > Sent: Sunday, November 26, 2000 1:18 PM
> > > > > Subject: Re: [CAD_CAM_EDM_DRO] Windows Real-time
> > > > >
> > > > >
> > > > > > Art,
> > > > > >
> > > > > > I tried your VxD on a Windows 98 machine here and it locks
> the
> > > machine
> > > > up
> > > > > > immediately. The machine is an AMD K6-2 400 Mhz, 256 MB
> RAM,
> > > ATI 3D
> > > > Rage
> > > > > > Pro AGP Video, Creative E1371 Sound, LNE100TX Network card,
> > > Aladdin
> > > > > Chipset.
> > > > > > I don't have any Win95 system to try it on... all the rest
> of
> > > the
> > > > machines
> > > > > > run either Win2k or Linux...
> > > > > >
> > > > > > Regards,
> > > > > >
> > > > > > Phil Covington
> > > > > >
> > > > > > ----- Original Message -----
> > > > > > From: "Art Fenerty" <fenerty@h...>
> > > > > > To: <CAD_CAM_EDM_DRO@egroups.com>
> > > > > > Sent: Saturday, November 25, 2000 12:12 PM
> > > > > > Subject: Re: [CAD_CAM_EDM_DRO] Windows Real-time
> > > > > >
> > > > > >
> > > > > > > Alan:
> > > > > > >
> > > > > > > The interface is an automation object (COM) written in
> > > C++. It's
> > > > > only
> > > > > > > purpose is to send data to the VXD which is mostly
> assember.
> > > The VXD
> > > > > > accepts
> > > > > > > 4-byte commands
> > > > > > > where the first byte is motor step and direction for each
> of
> > > 4-axis,
> > > > and
> > > > > > the
> > > > > > > next two bytes are a number from 0-8191
> > > > > > > which is the frequency in hertz to wait till the next
> pulse.
> > > > > > > The VXD has a 64000 integer buffer so even at 8khz you
> have
> > > several
> > > > > > > seconds (8) to do work before you need to add to the
> buffer.
> > > The
> > > > buffer
> > > > > is
> > > > > > a
> > > > > > > ring buffer that just keeps looping around. There will be
> a
> > > series of
> > > > > > > command that can be used such as Spindle( on | off )..Aux1
> (
> > > on | off)
> > > > > and
> > > > > > > AddToBuffer( int* ); As well as a callback function for
> > > emergency
> > > > stop.
> > > > > > This
> > > > > > > should make it rather easy to do real time in windows. It
> > > seems to
> > > > work
> > > > > as
> > > > > > > well as any dos version of stepping does.
> > > > > > >
> > > > > > > Art
> > > > > >
> > > > > >
> > > > > >
> > > > > > Welcome to CAD_CAM_EDM_DRO@e...,an unmoderated list for the
> > > > > discussion of shop built systems, for CAD, CAM, EDM, and DRO.
> > > > > >
> > > > > > Addresses:
> > > > > > Post message: CAD_CAM_EDM_DRO@egroups.com
> > > > > > Subscribe: CAD_CAM_EDM_DRO-subscribe@egroups.com
> > > > > > Unsubscribe: CAD_CAM_EDM_DRO-unsubscribe@egroups.com
> > > > > > List owner: CAD_CAM_EDM_DRO-owner@egroups.com,
> wanliker@a...
> > > > > > Moderator: jmelson@a... [Moderator]
> > > > > > URL to this page:
> http://www.egroups.com/group/CAD_CAM_EDM_DRO
> > > > > > FAQ: http://www.ktmarketing.com/faq.html
> > > > > > bill,
> > > > > > List Manager
> > > > > >
> > > > >
> > > > >
> > > > > Welcome to CAD_CAM_EDM_DRO@e...,an unmoderated list for the
> > > > discussion of shop built systems, for CAD, CAM, EDM, and DRO.
> > > > >
> > > > > Addresses:
> > > > > Post message: CAD_CAM_EDM_DRO@egroups.com
> > > > > Subscribe: CAD_CAM_EDM_DRO-subscribe@egroups.com
> > > > > Unsubscribe: CAD_CAM_EDM_DRO-unsubscribe@egroups.com
> > > > > List owner: CAD_CAM_EDM_DRO-owner@egroups.com, wanliker@a...
> > > > > Moderator: jmelson@a... [Moderator]
> > > > > URL to this page: http://www.egroups.com/group/CAD_CAM_EDM_DRO
> > > > > FAQ: http://www.ktmarketing.com/faq.html
> > > > > bill,
> > > > > List Manager
> > > > >
> > >
> > >
> > > Welcome to CAD_CAM_EDM_DRO@e...,an unmoderated list for the
> > discussion of shop built systems, for CAD, CAM, EDM, and DRO.
> > >
> > > Addresses:
> > > Post message: CAD_CAM_EDM_DRO@egroups.com
> > > Subscribe: CAD_CAM_EDM_DRO-subscribe@egroups.com
> > > Unsubscribe: CAD_CAM_EDM_DRO-unsubscribe@egroups.com
> > > List owner: CAD_CAM_EDM_DRO-owner@egroups.com, wanliker@a...
> > > Moderator: jmelson@a... [Moderator]
> > > URL to this page: http://www.egroups.com/group/CAD_CAM_EDM_DRO
> > > FAQ: http://www.ktmarketing.com/faq.html
> > > bill,
> > > List Manager
> > >
>
>
> Welcome to CAD_CAM_EDM_DRO@...,an unmoderated list for the
discussion of shop built systems, for CAD, CAM, EDM, and DRO.
>
> Addresses:
> Post message: CAD_CAM_EDM_DRO@egroups.com
> Subscribe: CAD_CAM_EDM_DRO-subscribe@egroups.com
> Unsubscribe: CAD_CAM_EDM_DRO-unsubscribe@egroups.com
> List owner: CAD_CAM_EDM_DRO-owner@egroups.com, wanliker@...
> Moderator: jmelson@... [Moderator]
> URL to this page: http://www.egroups.com/group/CAD_CAM_EDM_DRO
> FAQ: http://www.ktmarketing.com/faq.html
> bill,
> List Manager
>

Discussion Thread

Art Fenerty 2000-11-23 10:40:51 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-23 10:50:07 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Alan Marconett KM6VV 2000-11-24 13:24:00 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-24 13:37:41 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Alan Marconett KM6VV 2000-11-24 18:43:15 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-25 05:17:13 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Alan Marconett KM6VV 2000-11-25 10:55:35 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-25 12:35:13 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time phil@p... 2000-11-25 16:48:35 UTC Re: Windows Real-time PhilC 2000-11-26 13:19:39 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-26 15:14:13 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time Art Fenerty 2000-11-26 15:35:31 UTC Re: [CAD_CAM_EDM_DRO] Windows Real-time phil@p... 2000-11-27 04:44:12 UTC Re: Windows Real-time Smoke 2000-11-27 09:31:47 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time PhilC 2000-11-27 09:48:47 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-27 11:40:38 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-27 11:42:18 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-27 11:44:59 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-27 11:46:12 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Smoke 2000-11-27 12:34:54 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time phil@p... 2000-11-27 13:10:30 UTC Re: Windows Real-time Art Fenerty 2000-11-27 13:17:58 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Ian Wright 2000-11-27 14:34:19 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-27 14:58:44 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time PhilC 2000-11-27 16:04:44 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time William Scalione 2000-11-27 18:41:43 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Alvaro Fogassa 2000-11-28 00:07:12 UTC Re: Windows Real-time Art Fenerty 2000-11-28 12:08:47 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-28 12:12:17 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-28 12:13:25 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Alan Marconett KM6VV 2000-11-28 13:16:25 UTC Re: Windows Real-time Art Fenerty 2000-11-28 13:33:54 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time ballendo@y... 2000-11-28 14:56:55 UTC Re: Re: Windows Real-time Art Fenerty 2000-11-28 16:48:47 UTC Re: [CAD_CAM_EDM_DRO] Re: Re: Windows Real-time Alan Marconett KM6VV 2000-11-28 18:01:42 UTC Re: Windows Real-time Art Fenerty 2000-11-28 18:06:13 UTC Re: [CAD_CAM_EDM_DRO] Re: Re: Windows Real-time Art Fenerty 2000-11-28 18:18:16 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Hugh Prescott 2000-11-29 10:00:56 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-29 10:22:47 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Wally K 2000-11-29 10:36:28 UTC Re: Windows Real-time Art Fenerty 2000-11-29 11:09:11 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Alan Marconett KM6VV 2000-11-29 12:16:51 UTC Re: Windows Real-time Art Fenerty 2000-11-29 13:41:19 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time William Scalione 2000-11-29 20:02:12 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Art Fenerty 2000-11-30 06:43:41 UTC Re: [CAD_CAM_EDM_DRO] Re: Windows Real-time Jeff Demand 2000-12-03 07:41:33 UTC RE: Windows Real-time Art Fenerty 2000-12-03 17:47:44 UTC Re: [CAD_CAM_EDM_DRO] RE: Windows Real-time