[Machinekit] Machine Kit CNC Interface and Image Requirement

2018-10-02 Thread Pranav Pandey
Hi There,

I am looking for someone willing to develop Machinekit based customized CNC 
Machine Interface and Machinekit Image for one of our Product.

Kindly contact for further details.

Pranav

-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: 
https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups 
"Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


Re: [Machinekit] using hal_spi module

2018-10-02 Thread mngr
Sure, push the updates.


Il giorno martedì 2 ottobre 2018 15:18:53 UTC+2, Schooner ha scritto:
>
> Good to hear.
>
> It just makes the minimal changes, as it appeared the only thing that had 
> changed was the base address.
>
Agree, I was going to a lot more of non-necessary code

 

> If you are happy with that, I can push a PR, so it is in the packages.
>
>
> On 02/10/18 13:39, mngr wrote:
>
> I tested your branch, everything is working fine, it loads and the spi 
> writes.
>
> Il giorno domenica 30 settembre 2018 22:55:45 UTC+2, mngr ha scritto: 
>>
>> It will probably take me more of a evening because the next couple of 
>> days is already full. Maybe I will test your version and then make another 
>> pr to unify hal_spi.h and bcm2835.h
>
> -- 
> website: http://www.machinekit.io blog: http://blog.machinekit.io github: 
> https://github.com/machinekit
> --- 
> You received this message because you are subscribed to the Google Groups 
> "Machinekit" group.
> To unsubscribe from this group and stop receiving emails from it, send an 
> email to machinekit+...@googlegroups.com .
> Visit this group at https://groups.google.com/group/machinekit.
> For more options, visit https://groups.google.com/d/optout.
>
>
>

-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: 
https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups 
"Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


Re: [Machinekit] using hal_spi module

2018-10-02 Thread schoone...@gmail.com

  
  
Good to hear.

It just makes the minimal changes, as it appeared the only thing
that had changed was the base address.

If you are happy with that, I can push a PR, so it is in the
packages.


On 02/10/18 13:39, mngr wrote:


  I tested your branch, everything is working fine,
it loads and the spi writes.

Il giorno domenica 30 settembre 2018 22:55:45 UTC+2, mngr ha
scritto:
It will
  probably take me more of a evening because the next couple of
  days is already full. Maybe I will test your version and then
  make another pr to unify hal_spi.h and bcm2835.h
  
  -- 
  website: http://www.machinekit.io
  blog: http://blog.machinekit.io
  github: https://github.com/machinekit
  --- 
  You received this message because you are subscribed to the Google
  Groups "Machinekit" group.
  To unsubscribe from this group and stop receiving emails from it,
  send an email to machinekit+unsubscr...@googlegroups.com.
  Visit this group at https://groups.google.com/group/machinekit.
  For more options, visit https://groups.google.com/d/optout.


  




-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups "Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


Re: [Machinekit] using hal_spi module

2018-10-02 Thread mngr
I tested your branch, everything is working fine, it loads and the spi 
writes.

Il giorno domenica 30 settembre 2018 22:55:45 UTC+2, mngr ha scritto:
>
> It will probably take me more of a evening because the next couple of days 
> is already full. Maybe I will test your version and then make another pr to 
> unify hal_spi.h and bcm2835.h

-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: 
https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups 
"Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


Re: [Machinekit] Conditionally loading a HAL file

2018-10-02 Thread schoone...@gmail.com

  
  
The easiest thing to do would be to do this beforehand.

There is no conditional checking available within an ini file, since
this file
is read by other programs and does not of itself do anything.

Run from a script and check for the existence of the joystick
device, then 
launch the relevant config.

eg.  launch.sh

# !/bin/bash

if [ -f /dev/input/js0] ; then
    machinekit ~/configs/myconfig/my-config-with-js.ini
  else
      machinekit ~/configs/myconfig/my-config-without-js.ini
fi

On 01/10/18 17:05, Paulo Sherring
  wrote:


  
Hey there! I am new to machinekit / linuxcnc and I have a
  question I couldn't find an answer. I have a joystick pluged
  in a BeagleBone Green and I use it to control a CNC router.
  The fact is that sometimes, I may have to use the machine
  without the controller - maybe its mal functioning or
  something of this sort.
Currently, I am loading a hal file that specifically sets
  up the relations between the buttons and the jog signals on my
  INI file, something like:
HALFILE = joystick.hal
What I need is to run some kind of check on my ini file to
  load it or not, something like 

if [ -f /dev/input/js0]
then
HALFILE = joystick.hal
fi


Obviously, this could also be inside the hal file itself,
  but, I also don't know how to do it :(
Thanks in advance!
Paulo Sherring.

  
  -- 
  website: http://www.machinekit.io
  blog: http://blog.machinekit.io
  github: https://github.com/machinekit
  --- 
  You received this message because you are subscribed to the Google
  Groups "Machinekit" group.
  To unsubscribe from this group and stop receiving emails from it,
  send an email to machinekit+unsubscr...@googlegroups.com.
  Visit this group at https://groups.google.com/group/machinekit.
  For more options, visit https://groups.google.com/d/optout.


  




-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups "Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


Re: [Machinekit] Building machinekit as RIP on an Ubuntu 16.04 system with a LinuxCNC rip dev build?

2018-10-02 Thread schoone...@gmail.com

  
  
You can have as many RIP builds as you like.

They will not conflict, unless you try to run them one after another
from the same terminal session, 
with the pathspec for the last one still set.

You should preferably not have a binary install (from packages) on
the partition of either Lcnc or MK, or that could conflict
depending upon how your paths are set up and which location the
system looks in first.

You may have some problems building on Ubuntu, their library
versions don't match Debian always, seem to
recall zmq / czmq were different in 16.04

On 02/10/18 09:50, Ross Lloyd wrote:


  
Hi


I note in the instructions it says that MK will conflict
  with an LCNC install, is this only for OS-level realtime
  builds ? I have ROS (Robot Operating System) on this system
  and would like to try some things out, but I also have RIP
  builds for LCNC on this machine too.


Cheers


Ross

  
  -- 
  website: http://www.machinekit.io
  blog: http://blog.machinekit.io
  github: https://github.com/machinekit
  --- 
  You received this message because you are subscribed to the Google
  Groups "Machinekit" group.
  To unsubscribe from this group and stop receiving emails from it,
  send an email to machinekit+unsubscr...@googlegroups.com.
  Visit this group at https://groups.google.com/group/machinekit.
  For more options, visit https://groups.google.com/d/optout.


  




-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups "Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.


[Machinekit] Building machinekit as RIP on an Ubuntu 16.04 system with a LinuxCNC rip dev build?

2018-10-02 Thread Ross Lloyd
Hi

I note in the instructions it says that MK will conflict with an LCNC 
install, is this only for OS-level realtime builds ? I have ROS (Robot 
Operating System) on this system and would like to try some things out, but 
I also have RIP builds for LCNC on this machine too.

Cheers

Ross

-- 
website: http://www.machinekit.io blog: http://blog.machinekit.io github: 
https://github.com/machinekit
--- 
You received this message because you are subscribed to the Google Groups 
"Machinekit" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to machinekit+unsubscr...@googlegroups.com.
Visit this group at https://groups.google.com/group/machinekit.
For more options, visit https://groups.google.com/d/optout.