Re: getting the 57cnc to work with G540

Discussions and file drops for Auggie
Post Reply
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

26ms is the worst there is only the pokeys and computer are communicating, there is a network adapter fault what's a win10 thing, something is missing that's all it says.

so for now to I can work out what is missing Ethernet is out.

there is a pokeys update to do and auggie I will run it again after that.

Auggie shows no problems
User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

Dan:

It still possible its Auggie, in fact the facts make it seem likely.. If Mach3 runs OK, then Auggie should as well,
but though Im not seeing it, its possible your system is experiencing a slowdown I havent yet found. It does
try to check, the Diags tab Anomolies shows any time the filler thread is missed by more than 100ms.. yours is zero,
then theres a "bog" counter, that will spit in the log if it sees the planning isnt gotten to very 80ms or so, and finally,
in todays, theres an auto Jog Kill if more than 80 ms goes by without the jog planner being called. So if it isnt stopping job, and theres now count, Im still stumped.. but still looking. Eventually we'll find it, could be near anything, Auggie is pretty young..

Art
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

I will do the update tonight post back if there is anything different, I will run the roadrunner again see if it crashes in the middle of it.

and double check M3 on Ethernet after update
User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

Dan:

  Ill be updating again tomorrow anyway, this version is a bit buggy in spindle handling..

Art
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

it's a little bit better 21 instead of 26 ms it's patchy it wont happen for a minute then it will go ruff for a bit then come right, M3 is fine, pokeys is fine. it's to hot so I have given up for the night 33 degrees 
User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

33 here too. with a foot of snow on the ground.. :)

  I have a buffering test version, Ill upload it in a few minutes and leave it up all day to
see if if quiets your motors any, it just reduced buffer traffic, dont think it will help, but
yanvrno..

Art
BobL
Global Moderator
Global Moderator
Posts: 467
Joined: Sun Sep 05, 2010 7:18 am

Re: getting the 57cnc to work with G540

Post by BobL »

Thanks for the input DanL, I'll keep that in mind when time comes to buy. I also tried Auggie latest release last night Art, had no issues with the 80ms trigger when jogging. Nothing longer than 0.010 in Wireshark for my net either.  I see another pokey upgrade version is available, will attempt that today, see how it goes.


Cheers
Bob
Gearotic Motion
Bob
User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

Thx guys..

  Curious.. it may be computer, I felt constrained in Mach3 to keep overhead low ,in Auggie Im pushing
the envelope pretty hard.  Ill give some thought as to how to test thatheory.. I have triggers that check for it that arent going off for you so I'm kinda stumped as to cause at this point..

Art
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

I will test soon I got to drop my son of to granddad they have a project on.

Its a old laptop I am using, it ran fusion360 fine what needs 1 gig of graphics it only has 1/2 a gig.

I will try my gaming laptop it's fast.
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

no improvement but I get this error now

57:8:748  Script complete,end wait on thread.
57:8:748  OverSpeed: GLine:2, s0:0.0000 s1:0.0000 d:0.2000 t:1.#INF
57:8:748  On Stop called.
57:8:748  On Stop called.
57:8:748  Disabling Control via EStop button
57:8:748  On Stop called.
57:8:748  --System -- System Disabled. 
57:8:748  Spindle speed zeroed 
57:8:748  Disabling Control via EStop button
57:8:748  On Stop called.
57:8:748  --System -- System Disabled. 
57:8:748  Spindle speed zeroed 
57:8:763  Motion Disabled
57:8:763  Clearing Motion buffer of 5 entries
57:8:763  On Stop called.
57:8:763  Disabling Control via EStop button
57:8:763  On Stop called.
57:8:763  --System -- System Disabled. 
57:8:763  Spindle speed zeroed 
57:12:826  Show log initiated
User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

Dan:

Was that an arc move it did that overspeed detection on?

(Looks like your spindle code is working at any rate..

Art
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

I have not done the spindle code yet. that was the roadrunner file, it just shows you got it correct for the spindle control.

I have worked out the code for a on off button with no direction control (will never need it on my routers) that was easy if statement YaNvrNo and Scott tough me that one in M4.

as you posted.

this will be in a button

if( state)
{ 
    speed = GlobalGet("SpindleSpeed");
    FreeSetSpeed( 8, speed );
}
else
{ FreeSetSpeed( 8,0); 
}

or this just playing on inside computer they both compile ok

//my frequency spindle will use axis 8 step output
global MySpindleAxis = 8;
//axis 8 will be set to constant speed mode
FreeSetAxisMode(MySpindleAxis,1); //set spindle to freq mode

if( state)
{ 
    speed = GlobalGet("SpindleSpeed");
    FreeSetSpeed( 8, speed );
}
else
{ FreeSetSpeed( 8,0); 
}

then as you said this
FreeSetAxisType( 8,1 ); //in the MainScreenInit script
Last edited by DanL on Sat Jan 23, 2016 7:42 pm, edited 1 time in total.
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

Art I cant get any movement with a G code, I have not turned any scripts on just left as as is from install.

Here is the G code and log the scripter show nothing
Attachments

[The extension txt has been deactivated and can no longer be displayed.]

[The extension has been deactivated and can no longer be displayed.]

User avatar
ArtF
Global Moderator
Global Moderator
Posts: 4648
Joined: Sun Sep 05, 2010 6:14 am
Contact:

Re: getting the 57cnc to work with G540

Post by ArtF »

Dan:

Because you've used the software before, your scripts are on.  I suspect your failure is because you dont
have a spindle turned on. If the GCode library or call back libraries are on, at least one spindle library must be
on. Also, there was a version early today where the root scripts button didnt properly turn off all scripts.
  Anyway, turn on the GCode lib, and a spindle and see if it runs..

  Watch todays video to see how to see whats failing by turning on the scripter..

Art
DanL
Old Timer
Posts: 362
Joined: Wed Sep 10, 2014 1:35 pm

Re: getting the 57cnc to work with G540

Post by DanL »

i have seen the vid I will try again soon with a spindle control on, and all off.

it works fine in M3

I will test a few ideas and post back
Post Reply

Who is online

Users browsing this forum: No registered users and 0 guests