[Emc-users] LinuxCNC logo in vectors

2013-10-10 Thread Viesturs Lācis
Hello!

I would like to find out, if LinuxCNC logo is available in some kind of
vector graphics format? Dxf will do as well. I need it for a small project
in university...

-- 
Viesturs
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread Todd Zuercher
Rindert,

How long ago did you buy your WinCNC machine?  I thought that they used some 
proprietary hardware for step generation.  Were you able to use it for your 
LinuxCNC set up?  What type of machine do you have?  We have a machine running 
WinCNC and use G-code on it exclusively.  Our set up is on a multi head gang 
router (4 independent Z axis).  This is a relatively simple configuration in 
WinCNC but would be very difficult to configure in LinuxCNC.  What parts of 
G-code wouldn't work for you in WinCNC?  For what we use it for WinCNC is 
probably slightly better (3D wood carving) because of LinuxCNCs line look ahead 
limitations.

- Original Message -
From: RINDERT SCHUTTEN rind...@schuttenworks.com
To: emc-users@lists.sourceforge.net
Sent: Wednesday, October 9, 2013 1:09:29 PM
Subject: [Emc-users] Perceived issues with LinuxCNC.

So I recently got my second CNC machine for my small business.

The first machine was a DIY kit, and (obviously) I used EMC on Ubuntu. Got the 
CD, installed it on my old PC went through the stepconf wizard, and it ran!   
Since then have created lots of Gcode and products.

I said obviously, because being new at CNC, and an open source fan I did not 
want to spend a lot of up front money.  So I use Inkscape (with a Gcode 
generator extension) for CAD and EMC  for machine control.  All open source and 
LOVE the flow I created.  Created my own coding standards, and even though 
Gcode is quite arcane, it is very powerful and EMC's support for it is 
EXCELLENT.   I use parameters, subroutines, conditionals, repeats, etc, so 
everything I make can easily be scaled, positioned, replicated, all from the 
Gcode file.

Actually, don't know about Mach 3, but the control software that came with my 
new machine, WinPCNC, even though it said it supported Gcode, could not run my 
Gcode.  Actually their support for Gcode is minimal.  For me this meant to get 
EMC to work with my new machine (relatively easy and straightforward once you 
have all the parameters of the controller), in order to be able to run 
everything as I was used to.  

So I have NO issues with LinuxCNC.  On the contrary I am quite happy with it.  
Granted I do not do very complicated things, only three axis, but I love the 
way it works, and LOve AXIS as well. That it only runs on Linux is NO problem.  
Actually it is STABLE ,and I have not experienced  a single crash. I appreciate 
that!

Rindert Schutten
Designer/Owner SchuttenWorks

Find us on the Web at  http://schuttenworks.com
Like us on Facebook at  https://www.facebook.com/schuttenworks
-

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread andy pugh
On 10 October 2013 12:22, Todd  Zuercher
zuerc...@embarqmail.com wrote:

 Our set up is on a multi head gang router (4 independent Z axis).  This is a 
 relatively simple configuration in WinCNC but would be very difficult to 
 configure in LinuxCNC.

What does the G-code look like for that?

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


[Emc-users] alternative approach to jog while paused/configurable behaviour

2013-10-10 Thread Michael Haberler
we had a long discussion on IRC yesterday on this theme

the gist was that accretion of possibly surprising features with limited 
applicability in motion is undesirable
the state machine and offset pin approach I proposed yesterday are such a case 
of feature accretion

the way out was suggested by Andy, which opens the path to programmable 
behavior at the UI level with minimal motion changes (pretty much as the code 
stands).

the key observations (and I hadnt thought of this admittedly) are:

- it is possible to track the state of activity during jog-while paused in a UI 
or custom program *)
- during pause now jog commands can be issued from a UI or that custom program 
as well; that was not possible before
- meaning it is now possible to activate an optional, customizable UI function 
on pause, and do any of the following:

1. record positions - initial pause positions, and any further jog locations
2. as alternative to a direct reentry move from a offset location, previous jog 
locations can be selected as 'goto', or replayed in reverse order

doing this in say Python in the UI not only adds flexibility, it does not 
burden motion complexity with extra states and moves. If one absolutely has to 
do an automatic move on pause, that is possible in the same scheme, but motion 
changes are not needed.

I would think that gives the best feature mix: keyboard jog can be done pretty 
much now, whereas more complex setups like record/replay are possible without 
involving fiddling with motion internals, just plain Python is enough. I would 
actually think this also works with wheel jogs just the same once that is added.

- Michael


*) Python example and program output to track jog positions during pause (not 
necessary to understand in detail - just to show it isnt all that complicated):

import time
import sys
import linuxcnc

s = linuxcnc.stat()
s.poll()
previous_state = s.pause_state

names = (RUNNING, PAUSING, PAUSED, PAUSED_IN_OFFSET, JOGGING, 
JOG_ABORTING, RETURNING, PAUSING_FOR_STEP)

while True:
s.poll() # get current status values

# detect changes in s.pause_state
if s.pause_state !=  previous_state:
print names[previous_state], -,names[s.pause_state]

if s.pause_state == linuxcnc.PAUSED:
print stopped at initial pause position:, s.actual_position

if s.pause_state == linuxcnc.PAUSED_IN_OFFSET:
print stopped at offset:, s.actual_position

previous_state = s.pause_state

time.sleep(0.2)

---

Example run:


Running this in parallel with Axis produces this (# = my remarks):

# reaction to pause button
RUNNING - PAUSED

# motion has stopped, program detects that and displays initial pause position:
stopped at initial pause position: (-3.8268308818897636, 0.019685039370078188, 
-10.157954787401579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

# incremental jog 0.1in on X axis via keyboard:
PAUSED - JOGGING

# motion has stopped, we're not at initial pause position anymore:
JOGGING - PAUSED_IN_OFFSET
stopped at offset: (-3.7268308818897635, 0.019685039370078369, 
-10.157954787401579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

# incremental jog 0.1in on Z axis via keyboard:
PAUSED_IN_OFFSET - JOGGING

# jog stopped:
JOGGING - PAUSED_IN_OFFSET
stopped at offset: (-3.7268308818898732, 0.019685039370109226, 
-10.05795548036826, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

# resume hit - automatic return to initial pause position begins:
PAUSED_IN_OFFSET - RETURNING

# arrived at initial pause position - program execution resumes:
RETURNING - RUNNING



--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


[Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
Now i'm running my machine with 2.6pre (master) and would like  to test also 
joint_axes3. Is there a way to simply update existing one to ja3? 
 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Michał Geszkiewicz
In case that you get sources from git and don't have any source code 
changes:
$ git branch --track joints_axes3 origin/joints_axes3
$ git checkout joints_axes3
$ cd src
$ make clean
$ autogen.sh
$ ./configure
$ make



W dniu 10.10.2013 13:40, Tomaz T. pisze:
 Now i'm running my machine with 2.6pre (master) and would like  to test also 
 joint_axes3. Is there a way to simply update existing one to ja3?   

 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users




--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
Ok, before I do this I should ask if after switching to ja3, do I need to do 
any modifications in my ini/hal file and also kinematics (I'm using 5axiskins)?



 In case that you get sources from git and don't have any source code
 changes:
 $ git branch --track joints_axes3 origin/joints_axes3
 $ git checkout joints_axes3
 $ cd src
 $ make clean
 $ autogen.sh
 $ ./configure
 $ make

 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] JogWhilePaused Proposal - please review planned sequencing

2013-10-10 Thread Stuart Stevenson
On Wed, Oct 9, 2013 at 2:02 PM, Michael Haberler mai...@mah.priv.at wrote:

 please think through if this sequence sounds generally applicable, and
 consider my questions below.

 the current flow I am thinking of is this:

 pause sequence:
 -
 if running, and pause command is issued:
save the position where pause was detected as initial-pause-position
 ('IPP')

 By saying IPP you imply there is more than one pause position. This would
be a good thing. If LCNC is going to offer this capability then while you
are in there mucking around go all the way.

ex - back trepanning with a boring bar in a bore
One pause position would not be sufficient to return.
Three would be a minimum and four would be better.
Why limit it to 1 or 4?

This would work nicely with the feed override and rapid override on two
pins.
Rapid override would be used until arrival at the last return segment.
Feed feedrate would be used for the last return segment.
Although, this should be integrator optioned.

Why restrict the reading/setting/use of Tool Length Offsets to tool change
operations? Reading TLO's every line would allow minor changes while the
program is running. The operator would make an offset adjustment to be
applied at the end of the current line running in the program.


   if the pause-offset 1) is non-zero:
 jog to that offset, using a jog-velocity pin 2)
 stop motion once there
else
 just stop motion

 ... jogging around...

 resume sequence:
 
 if at the inital pause position:
wait for at-speed
resume motion
 else # in some offset
if the pause-offset is non-zero and not currently at the offset
 position:
   issue a jog move to the pause offset at jog velocity 2)
   once arrived, wait for spindle at-speed 3)
   issue the reentry move to the IPP at jog velocity 2)
else
   # we are already at the offset position
   wait for spindle at-speed
   issue the reentry move to the IPP at jog velocity 2)

 if arrived at IPP:
resume primary motion queue, program continues.

 During the all pause states (except normal state - program running, not
 paused) coolant and spindle NML commands will be honored.

 --
 1) defined by a set of motion.pause-offset-x/y/z etc pins

 2) currently NML jog commands needing velocity carry it as a parameter;
 afaict there is no concept of 'current jog speed' in motion without a jog
 command issued. But this move happens without an NML command conveying
 values, so motion has no idea what the 'current jog speed' is. Short term
 fix: use a pin motion.offset-jog-speed which applies to the initial offset
 move, and the reentry move. Better long-term solution: make motion remember
 whatever is 'current jog speed', e.g. by issuing an EMC_JOG_SPEED command
 at startup and jog speed change in a UI.

 3) doing it in this order (start jog, wait for at-speed when done) enables
 overlapped spin up and move to the offset position by issuing spindle on,
 then resume

 

 Question 1: is there any use case for the offset used while pausing, and
 while returning _to be different_?

Assuming the offset you are talking about is the IPP then I can see a case
for a little different approach in return. Sometimes a broken tool will
require a modified reentry to remove material deposited or hardened as the
result of the broken tool.
Multiple pause positions and feed control would allow fine control of the
reentry process.


this would suggest two sets of HAL pins, pause-offset-x etc and
 return-offset-x etc. Note either of those being zero would avoid the
 predefined move-on-pause
and move-on-return respectively.
Having one set of pins implies that both moves will always be issued if
 non-zero. The alternative is some mode pin which states which of the
moves (on-pause, on-return, or both) is to use the pause offset (less
 elegant, less pins).

 Question 2: is there any scenario where the wait-for-at-speed needs to be
 skipped?
(note motion.at-speed can be faked by external HAL logic if needed).

Shouldn't all conditions controllable by HAL be the only control option?


 Question 3: coolant, spindle, keyboard jog (+ eventually wheel jog):
 anything to be added to the shopping list?

Resetting TLO's is major at this time. Stopping to clean chips is fine but
changing the tool requiring an offset adjustment is very important.



 Question 4: is a separate HAL pin for the on-pause/on-return speed
 acceptable for the first round?

 Question 5: any possible interactions with other commands/modes which
 could be an issue?

TLO's




 this is a nontrivial change, so I would prefer the change is specified,
 discussed and understood fully beforehand

 I attach the description of the various states the pause handling goes
 through which might help to clarify operation a bit


 thanks,
 - Michael

 -
 // the states of the pause finite state machine
 // current state is 

Re: [Emc-users] accuracy problems

2013-10-10 Thread Stuart Stevenson
On Wed, Oct 9, 2013 at 7:44 PM, Chris Reynolds c_reynolds2...@yahoo.comwrote:

 I've been having some accuracy problems and I'll admit I've never fully
 understood all of the settings in the .ini file. But I'm getting some
 strange things going on that I just can't seem to fix. Such as, setting an
 axis to 0, then in MDI sending it to 1, it might come up .0015 short of
 1, but when I send it back to 0 it will come back to that point just fine.

Does the .0015 short of 1 repeat every time? This would need to be checked
on the same section of the ballscrew to help determine the cause.


 I understand the basics of the backlash setting but there's got to be
 something else that I'm missing or just plain don't understand. Or if I set
 the increments to .010 it might go .0105 or .011, but then go back to 0
 just fine.

When you set increments and then move 1 inch do you see the same .0015
error as you previously describe?


 I've been using EMC for about 5 years now and I've always been plagued
 with these kind of problems. But no matter how much I read the manual I
 can't seem to figure out what I'm doing wrong.

 Can someone shed some light on what I'm doing wrong? Just when I think
 I've got it I don't. I would really appreciate any help that anyone might
 be able to provide that will help me better understand the settings in the
 .ini file and what I'm doing wrong.

Since you say the return to zero is consistent I would then consider the
backlash setting is correct. This is assuming the motion to 1 inch and the
return motion are opposite directions.




 Thank you,

 Chris

 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


thanks
Stuart

-- 
Addressee is the intended audience.
If you are not the addressee then my consent is not given for you to read
this email furthermore it is my wish you would close this without saving or
reading, and cease and desist from saving or opening my private
correspondence.
Thank you for honoring my wish.
Just for you NSA - think autointercourse
terrorist suitcase bomb sarin
hello
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread Russell Brown
Quoth Charles Steinkuehler.
On 10/8/2013 12:35 PM, Bruce Layne wrote:
 For all of these little stepper based routers and other small systems
 (most of the installations), what could be easier than installing
 Linux (with lots of other goodies) and LinuxCNC from an ISO 

That's why I'm trying _really_ hard to get LinuxCNC working well on the
BeagleBone.  The maker crowd with desktop CNC mills and 3D printers is
far less scared of Linux than the average man.  

That's probably a very good strategy.  It could turn out to be an
popular off-the-shelf solution to a lot of CNC projects  if it's
wrapped up nicely with a pretty bow around it :-)

A lot of folk are actually scared of configurability (sp?).  As others
have noted, they want an appliance not something that's a project in
it's own right.



 --- Going a little Off Topic 

FWIW, I was intrigued and bought a BBB to play with.

I didn't end up using it for my Mill CNC project as I couldn't find any
concise documentation on how you actually connected the BBB to motors
and switches (I'm a programmer of business systems by trade and know
naff all about CNC or electronics).

Did I need a cape?  Could I just connect to conventional drivers like a
parallel port?  Do I need to solder wires on or is there a screw type
connector that fits the sockets?  It wasn't obvious.

I guess this info probably does exist but I couldn't find it via Google
at the time.

Perhaps a blow by blow blog/project might help others who are looking.



-- 
 Regards,
 Russell
 
| Russell Brown  | MAIL: russ...@lls.com PHONE: 01780 471800 |
| Lady Lodge Systems | WWW Work: http://www.lls.com  |
| Peterborough, England  | WWW Play: http://www.ruffle.me.uk |
 

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] alternative approach to jog while paused/configurable behaviour

2013-10-10 Thread Dave Cole
I really like this...  :-)It sounds like a very good approach.

Dave

On 10/10/2013 7:35 AM, Michael Haberler wrote:
 we had a long discussion on IRC yesterday on this theme

 the gist was that accretion of possibly surprising features with limited 
 applicability in motion is undesirable
 the state machine and offset pin approach I proposed yesterday are such a 
 case of feature accretion

 the way out was suggested by Andy, which opens the path to programmable 
 behavior at the UI level with minimal motion changes (pretty much as the code 
 stands).

 the key observations (and I hadnt thought of this admittedly) are:

 - it is possible to track the state of activity during jog-while paused in a 
 UI or custom program *)
 - during pause now jog commands can be issued from a UI or that custom 
 program as well; that was not possible before
 - meaning it is now possible to activate an optional, customizable UI 
 function on pause, and do any of the following:

 1. record positions - initial pause positions, and any further jog locations
 2. as alternative to a direct reentry move from a offset location, previous 
 jog locations can be selected as 'goto', or replayed in reverse order

 doing this in say Python in the UI not only adds flexibility, it does not 
 burden motion complexity with extra states and moves. If one absolutely has 
 to do an automatic move on pause, that is possible in the same scheme, but 
 motion changes are not needed.

 I would think that gives the best feature mix: keyboard jog can be done 
 pretty much now, whereas more complex setups like record/replay are possible 
 without involving fiddling with motion internals, just plain Python is 
 enough. I would actually think this also works with wheel jogs just the same 
 once that is added.

 - Michael


 *) Python example and program output to track jog positions during pause (not 
 necessary to understand in detail - just to show it isnt all that 
 complicated):

 import time
 import sys
 import linuxcnc

 s = linuxcnc.stat()
 s.poll()
 previous_state = s.pause_state

 names = (RUNNING, PAUSING, PAUSED, PAUSED_IN_OFFSET, JOGGING, 
 JOG_ABORTING, RETURNING, PAUSING_FOR_STEP)

 while True:
  s.poll() # get current status values

  # detect changes in s.pause_state
  if s.pause_state !=  previous_state:
  print names[previous_state], -,names[s.pause_state]

  if s.pause_state == linuxcnc.PAUSED:
  print stopped at initial pause position:, s.actual_position

  if s.pause_state == linuxcnc.PAUSED_IN_OFFSET:
  print stopped at offset:, s.actual_position
  
  previous_state = s.pause_state

  time.sleep(0.2)

 ---

 Example run:


 Running this in parallel with Axis produces this (# = my remarks):

 # reaction to pause button
 RUNNING - PAUSED

 # motion has stopped, program detects that and displays initial pause 
 position:
 stopped at initial pause position: (-3.8268308818897636, 
 0.019685039370078188, -10.157954787401579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

 # incremental jog 0.1in on X axis via keyboard:
 PAUSED - JOGGING

 # motion has stopped, we're not at initial pause position anymore:
 JOGGING - PAUSED_IN_OFFSET
 stopped at offset: (-3.7268308818897635, 0.019685039370078369, 
 -10.157954787401579, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

 # incremental jog 0.1in on Z axis via keyboard:
 PAUSED_IN_OFFSET - JOGGING

 # jog stopped:
 JOGGING - PAUSED_IN_OFFSET
 stopped at offset: (-3.7268308818898732, 0.019685039370109226, 
 -10.05795548036826, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0)

 # resume hit - automatic return to initial pause position begins:
 PAUSED_IN_OFFSET - RETURNING

 # arrived at initial pause position - program execution resumes:
 RETURNING - RUNNING



 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Michał Geszkiewicz
in joints_axes3 branch take a look at axis/sim_mm config.
changes are:
required [KINS]JOINTS setting
separate [AXIS_X] [AXIS_Y] sections and [JOINT_n] sections
in hal file all axis.n. pins changed to joint.n

W dniu 10.10.2013 14:29, Tomaz T. pisze:
 Ok, before I do this I should ask if after switching to ja3, do I need to do 
 any modifications in my ini/hal file and also kinematics (I'm using 
 5axiskins)?


 In case that you get sources from git and don't have any source code
 changes:
 $ git branch --track joints_axes3 origin/joints_axes3
 $ git checkout joints_axes3
 $ cd src
 $ make clean
 $ autogen.sh
 $ ./configure
 $ make

  
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users




--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Charles Steinkuehler
On 10/10/2013 8:55 AM, Russell Brown wrote:
 FWIW, I was intrigued and bought a BBB to play with.
 
 I didn't end up using it for my Mill CNC project as I couldn't find any
 concise documentation on how you actually connected the BBB to motors
 and switches (I'm a programmer of business systems by trade and know
 naff all about CNC or electronics).
 
 Did I need a cape?  Could I just connect to conventional drivers like a
 parallel port?  Do I need to solder wires on or is there a screw type
 connector that fits the sockets?  It wasn't obvious.
 
 I guess this info probably does exist but I couldn't find it via Google
 at the time.
 
 Perhaps a blow by blow blog/project might help others who are looking.

The BeagleBone stuff is still developing.  You basically needed a cape
that at the time didn't exist, a BBB to parallel-port cape like this one:

http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/

For many uses, you could just replace this with jumper wires to the BBB
headers, or directly solder wires to a prototype cape, but neither of
these is attactive or at all like an appliance application.

Stay tuned...

-- 
Charles Steinkuehler
char...@steinkuehler.net

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
Can you please provide direct link to joints_axes3 branch where I can find 
those configs etc...?
Thank you.


 in joints_axes3 branch take a look at axis/sim_mm config.
 changes are:
 required [KINS]JOINTS setting
 separate [AXIS_X] [AXIS_Y] sections and [JOINT_n] sections
 in hal file all axis.n. pins changed to joint.n

 Ok, before I do this I should ask if after switching to ja3, do I need to do 
 any modifications in my ini/hal file and also kinematics (I'm using 
 5axiskins)?   
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Eric Keller
On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler
char...@steinkuehler.net wrote:

 The BeagleBone stuff is still developing.  You basically needed a cape
 that at the time didn't exist, a BBB to parallel-port cape like this one:

 http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/


That is the BBB cnc hardware version of trolling, he posted that and
disappeared.  Would be nice to be able to get a board just to use the
db25 part without a RAMPS.

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
$ git branch -track joints_axes3 origin/joints_axes3

returns me

fatal: Not a git repository (or any of the parent directories): .git

?



 In case that you get sources from git and don't have any source code
 changes:
 $ git branch --track joints_axes3 origin/joints_axes3
 $ git checkout joints_axes3
 $ cd src
 $ make clean
 $ autogen.sh
 $ ./configure
 $ make
   
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread RINDERT SCHUTTEN
Todd,

Actually I have Win-PCNC USB 
(http://www.cnc-router-routers.com/html/software_win_cnc_router_routin.html) as 
the controller software (in addition to LinuxCNC) and run it with a Zero 3 
controller on a CNC-STEP HighZ 720  CNC machine.Win-PCNC does not support 
parameters, flow control and many other G codes, that I rely on.  WinCNC is a 
different software which I don't know. 

Rindert


Message: 5
Date: Thu, 10 Oct 2013 07:22:42 -0400 (EDT)
From: Todd  Zuercher zuerc...@embarqmail.com
Subject: Re: [Emc-users] Perceived issues with LinuxCNC.
To: Enhanced Machine Controller (EMC)
emc-users@lists.sourceforge.net
Message-ID:
1420295985.36633471.1381404162904.javamail.r...@embarqmail.com
Content-Type: text/plain; charset=utf-8
Rindert,
How long ago did you buy your WinCNC machine?  I thought that they used some 
proprietary hardware for step generation.  Were you able to use it for your 
LinuxCNC set up?  What type of machine do you have?  We have a machine running 
WinCNC and use G-code on it exclusively.  Our set up is on a multi head gang 
router (4 independent Z axis).  This is a relatively simple configuration in 
WinCNC but would be very difficult to configure in LinuxCNC.  What parts of 
G-code wouldn't work for you in WinCNC?  For what we use it for WinCNC is 
probably slightly better (3D wood carving) because of LinuxCNCs line look ahead 
limitations.
- Original Message -
From: RINDERT SCHUTTEN rind...@schuttenworks.com
To: emc-users@lists.sourceforge.net
Sent: Wednesday, October 9, 2013 1:09:29 PM
Subject: [Emc-users] Perceived issues with LinuxCNC.
So I recently got my second CNC machine for my small business.
The first machine was a DIY kit, and (obviously) I used EMC on Ubuntu. Got the 
CD, installed it on my old PC went through the stepconf wizard, and it ran!   
Since then have created lots of Gcode and products.
I said obviously, because being new at CNC, and an open source fan I did not 
want to spend a lot of up front money.  So I use Inkscape (with a Gcode 
generator extension) for CAD and EMC  for machine control.  All open source and 
LOVE the flow I created.  Created my own coding standards, and even though 
Gcode is quite arcane, it is very powerful and EMC's support for it is 
EXCELLENT.   I use parameters, subroutines, conditionals, repeats, etc, so 
everything I make can easily be scaled, positioned, replicated, all from the 
Gcode file.
Actually, don't know about Mach 3, but the control software that came with my 
new machine, WinPCNC, even though it said it supported Gcode, could not run my 
Gcode.  Actually their support for Gcode is minimal.  For me this meant to get 
EMC to work with my new machine (relatively easy and straightforward once you 
have all the parameters of the controller), in order to be able to run 
everything as I was used to.  
So I have NO issues with LinuxCNC.  On the contrary I am quite happy with it.  
Granted I do not do very complicated things, only three axis, but I love the 
way it works, and LOve AXIS as well. That it only runs on Linux is NO problem.  
Actually it is STABLE ,and I have not experienced  a single crash. I appreciate 
that!
Rindert Schutten
Designer/Owner SchuttenWorks

Find us on the Web at  http://schuttenworks.com
Like us on Facebook at  https://www.facebook.com/schuttenworks
-
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread andy pugh
On 10 October 2013 16:17, Tomaz T. tomaz_...@hotmail.com wrote:
 $ git branch -track joints_axes3 origin/joints_axes3

 returns me

 fatal: Not a git repository (or any of the parent directories): .git

It should be --track, but that isn't your problem.

The problem is that, as it says, you are not in a git repository.

Did you build Master from source, or are you using a Buildbot version?

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread andy pugh
On 10 October 2013 16:03, Eric Keller eekel...@psu.edu wrote:

 That is the BBB cnc hardware version of trolling, he posted that and
 disappeared.  Would be nice to be able to get a board just to use the
 db25 part without a RAMPS.

I think Alex Joni is working on exactly that.

I made just what you describe for the RPi, It cost me $20 for 20 PCBs
and about $5 per board to populate some.
The GTL2000 chip makes it a simple point-to-point wiring puzzle.

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Charles Steinkuehler
On 10/10/2013 10:03 AM, Eric Keller wrote:
 On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler
 char...@steinkuehler.net wrote:

 The BeagleBone stuff is still developing.  You basically needed a cape
 that at the time didn't exist, a BBB to parallel-port cape like this one:

 http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/
 
 That is the BBB cnc hardware version of trolling, he posted that and
 disappeared.  Would be nice to be able to get a board just to use the
 db25 part without a RAMPS.

I'd like one too.  Anyone near Chicago who can drop in on the Pumping
Station: One CNC nights?

-- 
Charles Steinkuehler
char...@steinkuehler.net

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
I'm using 

deb     http://buildbot.linuxcnc.org/ lucid master-rt
deb-src http://buildbot.linuxcnc.org/ lucid master-rt


 $ git branch -track joints_axes3 origin/joints_axes3

 returns me

 fatal: Not a git repository (or any of the parent directories): .git

 It should be --track, but that isn't your problem.

 The problem is that, as it says, you are not in a git repository.

 Did you build Master from source, or are you using a Buildbot version?
 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread Jon Elson
Russell Brown wrote:
 A lot of folk are actually scared of configurability (sp?).  As others
 have noted, they want an appliance not something that's a project in
 it's own right.
   
Well, configurability shouldn't be a negative if somebody has already 
created
the configuration the way you need it.  Maybe we need more sample configs
to be part of the distribution.

  --- Going a little Off Topic 

 FWIW, I was intrigued and bought a BBB to play with.

 I didn't end up using it for my Mill CNC project as I couldn't find any
 concise documentation on how you actually connected the BBB to motors
 and switches (I'm a programmer of business systems by trade and know
 naff all about CNC or electronics).

 Did I need a cape?  Could I just connect to conventional drivers like a
 parallel port?  Do I need to solder wires on or is there a screw type
 connector that fits the sockets?  It wasn't obvious.
   
The Bone has 3.3 V outputs, and they are not capable of high current.
You don't need a commercial cape, but a booster/level translator would
be a good thing.  For stepper drives, putting a 74HC240 or similar
driver chip powered from the 5 V supply to the Bone would be a good thing.
(Make sure only the inputs to the HC240 are connected to the Bone's
header.)  Then, you could drive typical stepper driver inputs from
the output of the HC240.

I built a similar contraption for a different purpose and just plugged 
it into
the P8 header of the Bone.

Jon

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread andy pugh
On 10 October 2013 16:53, Tomaz T. tomaz_...@hotmail.com wrote:
 I'm using
 deb http://buildbot.linuxcnc.org/ lucid master-rt

I don't think you can get JA3 that way, you need to install git and
compile locally.

http://wiki.linuxcnc.org/cgi-bin/wiki.pl?Installing_LinuxCNC#Getting_the_source_with_git


-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Sebastian Kuzminsky
On 10/10/13 09:53 , Tomaz T. wrote:
 I'm using

 deb http://buildbot.linuxcnc.org/ lucid master-rt
 deb-src http://buildbot.linuxcnc.org/ lucid master-rt

Thanks for testing joints_axes3!  That's very helpful.

joints_axes3 is currently an experimental feature branch, so testing it 
is a little awkward, but possible.


Add these lines to the file in /etc/apt that you got the above lines from:

deb http://buildbot.linuxcnc.org/ lucid scratch-rt
deb-src http://buildbot.linuxcnc.org/ lucid scratch-rt

Use your regular update manager to update your package list, then select 
the version of linuxcnc that has 'joints_axes3' in the version number.


The joints_axes branch needs some config changes, I've tried to write 
down what you need to change here:

http://wiki.linuxcnc.org/cgi-bin/wiki.pl?JointAxesBranch


Good luck, and let us know how it goes!


-- 
Sebastian Kuzminsky

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
Ok, I added those line here:
https://www.dropbox.com/s/09hpcp1mdt6545o/sources.jpg

but in update manager have nothing to update, also tried with
$ sudo apt-get update
$ sudo apt-get upgrade

what did I missed?


 Thanks for testing joints_axes3! That's very helpful.

 joints_axes3 is currently an experimental feature branch, so testing it
 is a little awkward, but possible.


 Add these lines to the file in /etc/apt that you got the above lines from:

 deb http://buildbot.linuxcnc.org/ lucid scratch-rt
 deb-src http://buildbot.linuxcnc.org/ lucid scratch-rt

 Use your regular update manager to update your package list, then select
 the version of linuxcnc that has 'joints_axes3' in the version number.


 The joints_axes branch needs some config changes, I've tried to write
 down what you need to change here:

 http://wiki.linuxcnc.org/cgi-bin/wiki.pl?JointAxesBranch


 Good luck, and let us know how it goes!


 --
 Sebastian Kuzminsky 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Sebastian Kuzminsky
On 10/10/13 12:42 , Tomaz T. wrote:
 Ok, I added those line here:
 https://www.dropbox.com/s/09hpcp1mdt6545o/sources.jpg

 but in update manager have nothing to update, also tried with
 $ sudo apt-get update
 $ sudo apt-get upgrade

 what did I missed?

The 'apt-get upgrade' won't move from master to ja3, you need to do that 
by hand.

First run apt-cache policy linuxcnc, that'll list all versions of the 
linuxcnc package that your system knows about.

You should see a couple with version numbers like 
1:2.6.0~pre0.4781.gbd069fb, and (if you successfully added the scratch 
repo and updated your package list) one with a name like 
1:2.6.0~pre~joints.axes3~6a281a6.  Yes, that's a beautiful version 
number, no?

Ok, next tell apt that you want *that* one, like this:

sudo apt-get install linuxcnc=1:2.6.0~pre~joints.axes3~6a281a6

It'll ask you if you want to downgrade linuxcnc, say yes.


-- 
Sebastian Kuzminsky

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


[Emc-users] NUM 1040 Control?

2013-10-10 Thread Todd Zuercher

Anyone here familiar with Num CNC Controls? 
We just acquired an older router with a Num 1040 control (from year 2000), and 
I am getting ready to dig into trying to revive it.  Are these controls any 
good?  Is the old control worth trying to keep?  I am at least going to wait to 
pass judgment until I get power to it to see what might work.  
.  
-- 

 

Todd Zuercher 
mailto:zuerc...@embarqmail.com 

 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
Got it!

Now, regarding INI file, there is added MAX_JERK and can't find what's it's 
function, to set it correctly?



 The 'apt-get upgrade' won't move from master to ja3, you need to do that
 by hand.

 First run apt-cache policy linuxcnc, that'll list all versions of the
 linuxcnc package that your system knows about.

 You should see a couple with version numbers like
 1:2.6.0~pre0.4781.gbd069fb, and (if you successfully added the scratch
 repo and updated your package list) one with a name like
 1:2.6.0~pre~joints.axes3~6a281a6. Yes, that's a beautiful version
 number, no?

 Ok, next tell apt that you want *that* one, like this:

 sudo apt-get install linuxcnc=1:2.6.0~pre~joints.axes3~6a281a6

 It'll ask you if you want to downgrade linuxcnc, say yes.


 --
 Sebastian Kuzminsky 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Alex Joni
Something like this http://imagebin.org/273328 ?
I'm currently working on this, but still travelling till the end of the 
week. I'll post an info update at the end of the week about current status, 
and future plans.

Regards,
Alex


-Original Message- 
From: Eric Keller
Sent: Thursday, October 10, 2013 6:03 PM
To: Enhanced Machine Controller (EMC)
Subject: Re: [Emc-users] BBB  LinuxCNC.

On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler
char...@steinkuehler.net wrote:

 The BeagleBone stuff is still developing.  You basically needed a cape
 that at the time didn't exist, a BBB to parallel-port cape like this 
 one:

 http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/


That is the BBB cnc hardware version of trolling, he posted that and
disappeared.  Would be nice to be able to get a board just to use the
db25 part without a RAMPS.

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most 
from
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users 


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Sebastian Kuzminsky
On 10/10/13 15:48 , Tomaz T. wrote:
 Got it!

Great!


 Now, regarding INI file, there is added MAX_JERK and can't find what's it's 
 function, to set it correctly?

The joints_axes3 branch does not have jerk limiting, so no MAX_JERK. 
Maybe you're thinking of a different branch (that I don't know about)?


-- 
Sebastian Kuzminsky

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
 The joints_axes branch needs some config changes, I've tried to write
 down what you need to change here:

 http://wiki.linuxcnc.org/cgi-bin/wiki.pl?JointAxesBranch


Regarding hal file modification, I hope my understanding is right ...

AXIS_n changes to JOINT_n
axis.n. changes to joint.n.

for example:

setp stepgen.0.position-scale [JOINT_4]SCALE
setp stepgen.0.steplen 1
setp stepgen.0.stepspace 0
setp stepgen.0.dirhold 27272
setp stepgen.0.dirsetup 8272
setp stepgen.0.maxaccel [JOINT_4]STEPGEN_MAXACCEL
net bpos-cmd joint.4.motor-pos-cmd = stepgen.0.position-cmd
net bpos-fb stepgen.0.position-fb = joint.4.motor-pos-fb
net bstep = stepgen.0.step
net bdir = stepgen.0.dir
net benable joint.4.amp-enable-out = stepgen.0.enable

? 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Tomaz T .
I was referring to this sample:
 
http://github.com/araisrobo/linuxcnc/blob/feature/usb-rigid-tap/configs/sim/axis/axis_mm.ini#L149

If there is no need for it, I'll config without it



 Now, regarding INI file, there is added MAX_JERK and can't find what's it's 
 function, to set it correctly?

 The joints_axes3 branch does not have jerk limiting, so no MAX_JERK.
 Maybe you're thinking of a different branch (that I don't know about)?
 
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Sebastian Kuzminsky
On 10/10/13 16:23 , Tomaz T. wrote:
 The joints_axes branch needs some config changes, I've tried to write
 down what you need to change here:

 http://wiki.linuxcnc.org/cgi-bin/wiki.pl?JointAxesBranch


 Regarding hal file modification, I hope my understanding is right ...

 AXIS_n changes to JOINT_n
 axis.n. changes to joint.n.

Sounds right to me.

I forgot to put info about the HAL changes in that webpage...  I'll add 
it now, thanks for the reminder.


-- 
Sebastian Kuzminsky

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] joint_axes3 - info needed

2013-10-10 Thread Sebastian Kuzminsky
On 10/10/13 16:40 , Tomaz T. wrote:
 Just for my understanding in this ini section:

 [KINS]
 KINEMATICS = trivkins

 should I leave it as it is, or should I change it to my 5axiskins?

Change it to whatever kins your machine uses.


-- 
Sebastian Kuzminsky

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Gene Heskett
On Thursday 10 October 2013 19:31:06 Alex Joni did opine:

 Something like this http://imagebin.org/273328 ?
 I'm currently working on this, but still travelling till the end of the
 week. I'll post an info update at the end of the week about current
 status, and future plans.
 
 Regards,
 Alex
 
 
 -Original Message-
 From: Eric Keller
 Sent: Thursday, October 10, 2013 6:03 PM
 To: Enhanced Machine Controller (EMC)
 Subject: Re: [Emc-users] BBB  LinuxCNC.
 
 On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler
 
 char...@steinkuehler.net wrote:
  The BeagleBone stuff is still developing.  You basically needed a cape
  that at the time didn't exist, a BBB to parallel-port cape like this
  one:
  
  http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/
 
I wonder how far out to when we can actually buy this board is?  I could 
not find any links that had an asking price.

 That is the BBB cnc hardware version of trolling, he posted that and
 disappeared.  Would be nice to be able to get a board just to use the
 db25 part without a RAMPS.
 
 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from
 the latest Intel processors and coprocessors. See abstracts and register
 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users
 
 
 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from the latest Intel processors and coprocessors. See abstracts and
 register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


Cheers, Gene
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)

We gotta get out of this place,
If it's the last thing we ever do.
-- The Animals
A pen in the hand of this president is far more
dangerous than 200 million guns in the hands of
 law-abiding citizens.

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Jeff Pollard
Hi,

  I also have a LinuxCNC cape for the BBB using the MachineKit software that 
I've made for some of my own projects.  I have extra boards available that I 
can populate if enough people would like to get one (I'd like about ten+ orders 
to make the batch). I'd like to get $16.00 for a board (without cape ID eeprom) 
or $18.00 for a board (with eeprom, but unprogrammed)  More information can be 
found here:

http://.beaglecnc.com/

Thanks,

Jeff
www.xylotex.com


 From: ghesk...@wdtv.com
 To: emc-users@lists.sourceforge.net
 Date: Thu, 10 Oct 2013 19:32:19 -0400
 Subject: Re: [Emc-users] BBB  LinuxCNC.

 On Thursday 10 October 2013 19:31:06 Alex Joni did opine:

 Something like this http://imagebin.org/273328 ?
 I'm currently working on this, but still travelling till the end of the
 week. I'll post an info update at the end of the week about current
 status, and future plans.

 Regards,
 Alex


 -Original Message-
 From: Eric Keller
 Sent: Thursday, October 10, 2013 6:03 PM
 To: Enhanced Machine Controller (EMC)
 Subject: Re: [Emc-users] BBB  LinuxCNC.

 On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler

 char...@steinkuehler.net wrote:
 The BeagleBone stuff is still developing. You basically needed a cape
 that at the time didn't exist, a BBB to parallel-port cape like this
 one:

 http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/

 I wonder how far out to when we can actually buy this board is? I could
 not find any links that had an asking price.

 That is the BBB cnc hardware version of trolling, he posted that and
 disappeared. Would be nice to be able to get a board just to use the
 db25 part without a RAMPS.

 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from
 the latest Intel processors and coprocessors. See abstracts and register

 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from the latest Intel processors and coprocessors. See abstracts and
 register
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


 Cheers, Gene
 --
 There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
 -Ed Howdershelt (Author)

 We gotta get out of this place,
 If it's the last thing we ever do.
 -- The Animals
 A pen in the hand of this president is far more
 dangerous than 200 million guns in the hands of
 law-abiding citizens.

 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users
   
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] NUM 1040 Control?

2013-10-10 Thread TJoseph Powderly
On 10/10/2013 04:15 PM, Todd Zuercher wrote:

 Anyone here familiar with Num CNC Controls?
 We just acquired an older router with a Num 1040 control (from year 2000), 
 and I am getting ready to dig into trying to revive it.  Are these controls 
 any good?  Is the old control worth trying to keep?  I am at least going to 
 wait to pass judgment until I get power to it to see what might work.
 .

have not used 'em
bu since hey got enuf money to display at IMTS,
they are serious buisness
I spoke to their engr's last show and they are in SW Chicagoland,
Naperville iirc. Very configurable control.
regards
TomP tjtr33

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Gene Heskett
On Thursday 10 October 2013 20:21:34 Jeff Pollard did opine:

 Hi,
 
   I also have a LinuxCNC cape for the BBB using the MachineKit software
 that I've made for some of my own projects.  I have extra boards
 available that I can populate if enough people would like to get one
 (I'd like about ten+ orders to make the batch). I'd like to get $16.00
 for a board (without cape ID eeprom) or $18.00 for a board (with
 eeprom, but unprogrammed)  More information can be found here:
 
 http://.beaglecnc.com/
 
 Thanks,
 
 Jeff
 www.xylotex.com

Hi Jeff, long time no contact.  And I am glad that it appears there will be 
some competition in this.  Bookmarked FFR.

Thank you.
 
 
 
  From: ghesk...@wdtv.com
  To: emc-users@lists.sourceforge.net
  Date: Thu, 10 Oct 2013 19:32:19 -0400
  Subject: Re: [Emc-users] BBB  LinuxCNC.
  
  On Thursday 10 October 2013 19:31:06 Alex Joni did opine:
  Something like this http://imagebin.org/273328 ?
  I'm currently working on this, but still travelling till the end of
  the week. I'll post an info update at the end of the week about
  current status, and future plans.
  
  Regards,
  Alex
  
  
  -Original Message-
  From: Eric Keller
  Sent: Thursday, October 10, 2013 6:03 PM
  To: Enhanced Machine Controller (EMC)
  Subject: Re: [Emc-users] BBB  LinuxCNC.
  
  On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler
  
  char...@steinkuehler.net wrote:
  The BeagleBone stuff is still developing. You basically needed a
  cape that at the time didn't exist, a BBB to parallel-port cape
  like this one:
  
  http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/
  
  I wonder how far out to when we can actually buy this board is? I
  could not find any links that had an asking price.
  
  That is the BBB cnc hardware version of trolling, he posted that and
  disappeared. Would be nice to be able to get a board just to use the
  db25 part without a RAMPS.
  
  -
  --- -- October Webinars: Code for Performance
  Free Intel webinars can help you accelerate application performance.
  Explore tips for MPI, OpenMP, advanced profiling, and more. Get the
  most from
  the latest Intel processors and coprocessors. See abstracts and
  register
  
  http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.
  cl ktrk ___
  Emc-users mailing list
  Emc-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/emc-users
  
  
  -
  --- -- October Webinars: Code for Performance
  Free Intel webinars can help you accelerate application performance.
  Explore tips for MPI, OpenMP, advanced profiling, and more. Get the
  most from the latest Intel processors and coprocessors. See
  abstracts and register
  http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.
  cl ktrk ___
  Emc-users mailing list
  Emc-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/emc-users
  
  Cheers, Gene
  --
  There are four boxes to be used in defense of liberty:
  soap, ballot, jury, and ammo. Please use in that order.
  -Ed Howdershelt (Author)
  
  We gotta get out of this place,
  If it's the last thing we ever do.
  -- The Animals
  A pen in the hand of this president is far more
  dangerous than 200 million guns in the hands of
  law-abiding citizens.
  
  --
   October Webinars: Code for Performance
  Free Intel webinars can help you accelerate application performance.
  Explore tips for MPI, OpenMP, advanced profiling, and more. Get the
  most from the latest Intel processors and coprocessors. See abstracts
  and register
  http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.
  clktrk ___
  Emc-users mailing list
  Emc-users@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/emc-users
 
 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from the latest Intel processors and coprocessors. See abstracts and
 register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


Cheers, Gene
-- 
There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
-Ed Howdershelt (Author)

Never test for an error condition you don't know how to handle.
-- Steinbach

Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Ralph Stirling
Looks great, Jeff.  I'd be happy to paypal you $40 for two of
them.  I would like to run a Mesa 7I43 from the BBB with one
if hostmot2 can be made to run on it.

-- Ralph

From: Jeff Pollard [xylo...@hotmail.com]
Sent: Thursday, October 10, 2013 5:09 PM
To: Enhanced Machine Controller (EMC)
Subject: Re: [Emc-users] BBB  LinuxCNC.

Hi,

  I also have a LinuxCNC cape for the BBB using the MachineKit software that 
I've made for some of my own projects.  I have extra boards available that I 
can populate if enough people would like to get one (I'd like about ten+ orders 
to make the batch). I'd like to get $16.00 for a board (without cape ID eeprom) 
or $18.00 for a board (with eeprom, but unprogrammed)  More information can be 
found here:

http://.beaglecnc.com/

Thanks,

Jeff
www.xylotex.com


 From: ghesk...@wdtv.com
 To: emc-users@lists.sourceforge.net
 Date: Thu, 10 Oct 2013 19:32:19 -0400
 Subject: Re: [Emc-users] BBB  LinuxCNC.

 On Thursday 10 October 2013 19:31:06 Alex Joni did opine:

 Something like this http://imagebin.org/273328 ?
 I'm currently working on this, but still travelling till the end of the
 week. I'll post an info update at the end of the week about current
 status, and future plans.

 Regards,
 Alex


 -Original Message-
 From: Eric Keller
 Sent: Thursday, October 10, 2013 6:03 PM
 To: Enhanced Machine Controller (EMC)
 Subject: Re: [Emc-users] BBB  LinuxCNC.

 On Thu, Oct 10, 2013 at 10:53 AM, Charles Steinkuehler

 char...@steinkuehler.net wrote:
 The BeagleBone stuff is still developing. You basically needed a cape
 that at the time didn't exist, a BBB to parallel-port cape like this
 one:

 http://www.buildlog.net/blog/2013/09/cnc-translator-for-beaglebone/

 I wonder how far out to when we can actually buy this board is? I could
 not find any links that had an asking price.

 That is the BBB cnc hardware version of trolling, he posted that and
 disappeared. Would be nice to be able to get a board just to use the
 db25 part without a RAMPS.

 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from
 the latest Intel processors and coprocessors. See abstracts and register

 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


 
 -- October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most
 from the latest Intel processors and coprocessors. See abstracts and
 register
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.cl
 ktrk ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


 Cheers, Gene
 --
 There are four boxes to be used in defense of liberty:
 soap, ballot, jury, and ammo. Please use in that order.
 -Ed Howdershelt (Author)

 We gotta get out of this place,
 If it's the last thing we ever do.
 -- The Animals
 A pen in the hand of this president is far more
 dangerous than 200 million guns in the hands of
 law-abiding citizens.

 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, 

Re: [Emc-users] Perceived issues with LinuxCNC.

2013-10-10 Thread Todd Zuercher
The G-code looks like ordinary 3 axis XYZ code, with an L code command that 
slaves the other 3 axis (UVW)to the Z in the preamble of the file.  The L code 
is L12.  Then just L12 cancels the slaving (or you could use L12ZWUV)  This 
is all kind of a mute point since the original post I was replying to wasn't 
even talking about WinCNC.

- Original Message -
From: andy pugh bodge...@gmail.com
To: Enhanced Machine Controller (EMC) emc-users@lists.sourceforge.net
Sent: Thursday, October 10, 2013 7:27:55 AM
Subject: Re: [Emc-users] Perceived issues with LinuxCNC.

On 10 October 2013 12:22, Todd  Zuercher
zuerc...@embarqmail.com wrote:

 Our set up is on a multi head gang router (4 independent Z axis).  This is a 
 relatively simple configuration in WinCNC but would be very difficult to 
 configure in LinuxCNC.

What does the G-code look like for that?

-- 
atp
If you can't fix it, you don't own it.
http://www.ifixit.com/Manifesto

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Charles Steinkuehler
Careful...this is not a PC parallel port.  At the moment, there is no
software to talk to anything like a Mesa 7143 via an emulated EPP port
via the BeagleBone.  That doesn't mean I wouldn't _like_ to see
something like this.  I actually have plans to do this at some point,
but it will almost certainly require a different pinout and a different
circuit board.

The step/dir GPIO pins can be pretty much randomly assigned to any free
pin, but implementing an emulated EPP interafce to talk to smart
hardware requires a bit more planning.

On 10/10/2013 7:27 PM, Ralph Stirling wrote:
 Looks great, Jeff.  I'd be happy to paypal you $40 for two of
 them.  I would like to run a Mesa 7I43 from the BBB with one
 if hostmot2 can be made to run on it.
 
 -- Ralph
 
 From: Jeff Pollard [xylo...@hotmail.com]
 Sent: Thursday, October 10, 2013 5:09 PM
 To: Enhanced Machine Controller (EMC)
 Subject: Re: [Emc-users] BBB  LinuxCNC.
 
 Hi,
 
   I also have a LinuxCNC cape for the BBB using the MachineKit software that 
 I've made for some of my own projects.  I have extra boards available that I 
 can populate if enough people would like to get one (I'd like about ten+ 
 orders to make the batch). I'd like to get $16.00 for a board (without cape 
 ID eeprom) or $18.00 for a board (with eeprom, but unprogrammed)  More 
 information can be found here:
 
 http://.beaglecnc.com/
 
 Thanks,
 
 Jeff
 www.xylotex.com


-- 
Charles Steinkuehler
char...@steinkuehler.net



signature.asc
Description: OpenPGP digital signature
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


[Emc-users] TB6600 Single Axis stepper board

2013-10-10 Thread Dave Cole

Has anyone used this device??

http://www.ebay.com/itm/181168877379?ssPageName=STRK:MEWAX:IT_trksid=p3984.m1438.l2649

$20 including shipping from China.

It looks fairly well made and I haven't found many negatives about the 
design.

I have a need for some inexpensive small stepper drives.  This is 
suppose to be good for 4.5 amps at 45 volts.

Dave


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] TB6600 Single Axis stepper board

2013-10-10 Thread Jeff Pollard
Hi,

  You need to make sure that they are using brand new (October 2013 or later is 
when the Toshiba engineer told me the new design would be ready) TB6600 chips.  
I found an error with the timing on the older version chips (pwm at zero 
crossing).  They had to recall all of the chips.  I ended up sending several 
thousand chips back.  Fortunately I found the problem right before I was ready 
to ship any product.  It is an very intermittent problem and only shows up in 
very limited circumstances.  You might be able to use it for something like a 
pump, but don't use it for motion control where position is crucial.

Jeff

 Date: Thu, 10 Oct 2013 21:58:49 -0400
 From: linuxcncro...@gmail.com
 To: emc-users@lists.sourceforge.net
 Subject: [Emc-users] TB6600 Single Axis stepper board


 Has anyone used this device??

 http://www.ebay.com/itm/181168877379?ssPageName=STRK:MEWAX:IT_trksid=p3984.m1438.l2649

 $20 including shipping from China.

 It looks fairly well made and I haven't found many negatives about the
 design.

 I have a need for some inexpensive small stepper drives. This is
 suppose to be good for 4.5 amps at 45 volts.

 Dave


 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users
   
--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] BBB LinuxCNC.

2013-10-10 Thread Condit Alan
I am kind of like Ralph. I also have a Mesa 7i43 that I would like to be able 
to run from a BBB. It would be great if there was a cape that could look like 
an EPP with a driver that could run hostmot2.

I have one machine that I am going to try to run from the BBB + BeBoPr + 
Bridge. But eventually I would like to use my 7i43 with a BBB or, if Pete comes 
up with the equivalent of a 5i25 for the BBB, sell my 7i43 and the two 7i42TAs 
that I have.

Alan

On Oct 10, 2013, at 5:53 PM, emc-users-requ...@lists.sourceforge.net wrote:

 From: Ralph Stirling ralph.stirl...@wallawalla.edu
 Subject: Re: [Emc-users] BBB  LinuxCNC.
 Date: October 10, 2013 5:27:13 PM PDT
 To: Enhanced Machine Controller (EMC) emc-users@lists.sourceforge.net
 Reply-To: Enhanced Machine Controller \(EMC\) 
 emc-users@lists.sourceforge.net
 
 
 Looks great, Jeff.  I'd be happy to paypal you $40 for two of
 them.  I would like to run a Mesa 7I43 from the BBB with one
 if hostmot2 can be made to run on it.
 
 -- Ralph
 
 From: Jeff Pollard [xylo...@hotmail.com]
 Sent: Thursday, October 10, 2013 5:09 PM
 To: Enhanced Machine Controller (EMC)
 Subject: Re: [Emc-users] BBB  LinuxCNC.
 
 Hi,
 
  I also have a LinuxCNC cape for the BBB using the MachineKit software that 
 I've made for some of my own projects.  I have extra boards available that I 
 can populate if enough people would like to get one (I'd like about ten+ 
 orders to make the batch). I'd like to get $16.00 for a board (without cape 
 ID eeprom) or $18.00 for a board (with eeprom, but unprogrammed)  More 
 information can be found here:
 
 http://.beaglecnc.com/
 
 Thanks,
 
 Jeff
 www.xylotex.com
 

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Yet another board possibly suitable for LCNC.

2013-10-10 Thread Przemek Klosowski
Their FAQ ( http://www.intel.com/support/galileo/faq.htm ) has this
dispiriting news:

What is the maximum rate at which GPIO output pins can be updated?

The GPIO output pins on Intel® Galileo are provided by an I2C Port
Expander that is running at standard mode (100 kHz). Each I2C request
to update a GPIO requires approximately 2ms. In addition to software
overhead, this restricts the frequency achievable on the GPIO outputs
to approximately 230 Hz.

This is significantly slower than the BBB PRU GPIO  :(
I imagine this will probably be mitigated by parallel port- or
PCI-connected FPGA boards, but still...

On Fri, Oct 4, 2013 at 7:03 PM, Gregg Eshelman g_ala...@yahoo.com wrote:
 The Intel Galileo, with Mini PCIe slot and Arduino shield pin headers.
 400Mhz Quark SoC with 256MB RAM etc. Programmable with the standard
 Arduino IDE, is running Yocto Linux so that should be changeable.

 http://hackaday.com/2013/10/03/the-intel-powered-arduino/

 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134791iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users

--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users


Re: [Emc-users] Yet another board possibly suitable for LCNC.

2013-10-10 Thread Michael Haberler

Am 11.10.2013 um 05:29 schrieb Przemek Klosowski przemek.klosow...@gmail.com:

 Their FAQ ( http://www.intel.com/support/galileo/faq.htm ) has this
 dispiriting news:
 
 What is the maximum rate at which GPIO output pins can be updated?
 
 The GPIO output pins on Intel® Galileo are provided by an I2C Port
 Expander that is running at standard mode (100 kHz). Each I2C request
 to update a GPIO requires approximately 2ms. In addition to software
 overhead, this restricts the frequency achievable on the GPIO outputs
 to approximately 230 Hz.
 
 This is significantly slower than the BBB PRU GPIO  :(


well, thats just a mere 5 orders of magnitude off

Besides price and degree of 'new' it helps to consider where the manufacturers 
are coming from

TI gave up on mobile and focuses on industrial control, and it shows

Intel: Wintel/PC's: dying. Server CPU's: great margin, but Arm64 eating their 
lunch. Low Power: lamer products. Mobile: a nobody. Embedded: a nobody. 
Salesforce: spoiled by margins/device.
They have their shareholders breathing down their neck to make a showing, *any 
showing* in embedded land.

What you are seeing here is the result of desparately trying to make that 
showing by slapping together whatever they found in the drawer

That shows too - it's a rude joke for realtime control; it will make a great 
heater control though. Or run the garden sprinkler HAL application.

-m


 I imagine this will probably be mitigated by parallel port- or
 PCI-connected FPGA boards, but still...
 
 On Fri, Oct 4, 2013 at 7:03 PM, Gregg Eshelman g_ala...@yahoo.com wrote:
 The Intel Galileo, with Mini PCIe slot and Arduino shield pin headers.
 400Mhz Quark SoC with 256MB RAM etc. Programmable with the standard
 Arduino IDE, is running Yocto Linux so that should be changeable.
 
 http://hackaday.com/2013/10/03/the-intel-powered-arduino/
 
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134791iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users
 
 --
 October Webinars: Code for Performance
 Free Intel webinars can help you accelerate application performance.
 Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
 the latest Intel processors and coprocessors. See abstracts and register 
 http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
 ___
 Emc-users mailing list
 Emc-users@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/emc-users


--
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register 
http://pubads.g.doubleclick.net/gampad/clk?id=60134071iu=/4140/ostg.clktrk
___
Emc-users mailing list
Emc-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/emc-users