Advanced Search

Search Results (Searched for: )

  • qaywsxedc
  • qaywsxedc
01 Sep 2024 12:24 - 01 Sep 2024 13:24
Replied by qaywsxedc on topic Remora - ethernet NVEM / EC300 / EC500 cnc board

Remora - ethernet NVEM / EC300 / EC500 cnc board

Category: Computers and Hardware

Hi,
i finally could upload it...i did it this time all in windows. I erased the chip and flashed the 1.0.0. And maybe the older python version did the trick. I don't know... No timeout and works like a charme. Thank you!
  • Aciera
  • Aciera's Avatar
01 Sep 2024 12:23
  • CADdy
  • CADdy's Avatar
01 Sep 2024 12:03
Replied by CADdy on topic Which settings are currently valid?

Which settings are currently valid?

Category: Qtvcp

Hi Chris,
I don't know. It is an installation with the ISO from linuxcnc.org. LinuxCNC was version 2.9.2 and was upgraded to 2.9.3 during an update. I'll have to look up QtDragon-HD. Is there any indication of which version of QtDragon-HD is installed?

Peter
  • chrisfairbrothern
  • chrisfairbrothern
01 Sep 2024 12:02
NGCGUI arc1 and arc2 are not adding a tool offset was created by chrisfairbrothern

NGCGUI arc1 and arc2 are not adding a tool offset

Category: Mill Library

I am now using qtdragon with linuxcnc 2.10.0 and have ventured into the ngcgui programs. Arc1.ngc and arc2.ngc (arc2 calls arc1) are not adding tool compensation (g41, G42).
The solution is to remove the backslash from 4 lines 266-274 in arc1.ngc.
They should read as follows:-
            g42 ;# cutter compensation right of path
o<ifi1>   else
            g41 ;# cutter compensation left of path
o<ifi1>   endif
o<ifi0> else
o<ifi2>   if [#<dir> EQ 2]
            g41 ;# cutter compensation left of path
o<ifi2>   else
            g42 ;# cutter compensation right of path

The file is located in ~/linuxcnc/nc_files/ngcgui_lib
You will have to be root to edit this file. I.E. sudo nano arc1.ngc
  • JT
  • JT's Avatar
01 Sep 2024 11:49

Mesa Config Tool 7i96s MPG Firmware Flash Error

Category: Configuration Tools

How did you add the firmware to MesaCT?

JT
  • rodw
  • rodw's Avatar
01 Sep 2024 11:00

Marco Reps video on youtube about EtherCAT

Category: EtherCAT

Can anyone recommend a low-latency remote assistance software?

We usually use Teamviewer but you must be using an Xorg desktop not Wayland
  • epineh
  • epineh
01 Sep 2024 10:51

Riocore setup from scratch for dummies

Category: Installing LinuxCNC

Hi everybody, as the name suggests this is a guide for people wanting to install and start playing around with Riocore.
For those that don't know anything about Riocore you can read through the original thread :

www.forum.linuxcnc.org/18-computer/49142...d-on-fpga-ice40-ecp5

This guide is aimed at people that aren't linux guru's, that want to have a try at this awesome LinuxCNC software/hardware and that might struggle like I did...for weeks...to install it and get it going.

Credit to meister, the guy behind it all, he has done an impressive job of getting all this going.

Another credit to ColdTurkey, his idea of using the LinuxCNC live install to setup software/hardware in the Remora thread is what I based my approach on, this way everybody has the closest starting point possible.

This guide will focus on getting everything going for the Gowin Tang Nano FPGA, and meister's Tangoboard, once you have this going you can select other FPGA's and boards as you wish. You will most likely need to change the FPGA programming side of things with other FPGA's.

OK lets begin...
This is for a normal PC, I will have a look at a Raspberry Pi install sooner or later hopefully.
Download and install the latest live install of Linuxcnc, then open a terminal

sudo apt install git
open firefox, skip all start steps, start browsing, google search gowin eda
open page, (first link for me) create account, only email and password required
once logged in, select support, then Gowin EDA Home, then Download Gowin EDA
select software for Linux tab
select the one that says education, (click over to the right)
  (at the time of writing this it is the 7th option down)
open File system, navigate to Downloads, right click and select extract to
click on the little folder icon and select Home then extract
go to the folder in file system, right click rename folder to gowin
    its easier to type out later
open terminal, enter these one at a time :  
git clone github.com/multigcs/riocore.git
sudo apt install python3-pip
sudo apt install python3-yaml
sudo apt install python3-graphviz
sudo apt install openfpgaloader
sudo apt install python3-pyqtgraph

That last one takes a while to install

Now we setup the USB programming :
in terminal still,
cd gowin/Programmer/bin
once you are in that folder type and enter :
sudo ./Gowin_USB_Cable_Installer.sh
sudo make

reboot machine

open terminal

type and enter :
export PATH=$PATH:home/your_user_name/gowin/IDE/bin

in my case my user account is "me" so I type:

export PATH=$PATH:/home/me/gowin/IDE/bin
export PATH=$PATH:/home/me/riocore/bin

change to the riocore directory
cd riocore

now type
PYTHONPATH=. bin/rio-setup riocore/configs/Tangoboard/config.json

This should get you up and running, now there is lots to learn about setting up a machine but hopefully this will take the heartache out of starting.

Now things can be a little weird, I believe the Tang Nano needs to be plugged in at reboot, sometimes it won't flash properly, I cannot honestly say I have got it 100% sorted but if anybody finds a better solution we can edit this to suit.

Good luck
Russell.
  • Evgeny
  • Evgeny
01 Sep 2024 10:40
Replied by Evgeny on topic Marco Reps video on youtube about EtherCAT

Marco Reps video on youtube about EtherCAT

Category: EtherCAT

Clone these 2 repos (or download az zip)
github.com/marcoreps/linuxcnc_leadshine_EL8
github.com/LinuxCNC

Clopy from the second these files in to a known directory (/home/cnc/linuxcnc-dev/emc/motion/) for example.
homing.c
homing.h
motion.h

from the first repo, edit the el8_homecomp file, and change the path to homing.c file, to where you saved your files.

compile the cia402.comp:
sudo homecomp --install cia402.comp

compile the el8_homecomp.comp:
sudo homecomp --install el8_homecomp.comp

edit your axis.ini (or whatever is your gui)
after the EMCMOT, paste this line:
HOMEMOD=el8_homecomp
 

I followed all the steps in this instruction.
 
[EMCMOT]
EMCMOT = motmod
COMM_TIMEOUT = 1.0
SERVO_PERIOD = 1000000
HOMEMOD=el8_homecomp

So thats it. The rest is setting up the servos, and the internal homing in the drives. Without it, you can not use this process, since the servos not responding to homing request.

I had problems with this point.
I can't figure out yet which parameter in the servo I should change
  • chris@cnc
  • chris@cnc
01 Sep 2024 10:11
Replied by chris@cnc on topic help to connect alarm signal driver hbs86h

help to connect alarm signal driver hbs86h

Category: Driver Boards

The problem is that when the driver fails the red LED does not light up. On the other hand, if I disconnect the driver from the bob, the red LED does turn on. I am doing all the tests with a single driver and the only input I have free.


And in that case i would try to set Alarm level parameter. Maybe your AMP show foults in different way. In this case you have to simple invert Relay connection and joint.0.amp-fault-in
  • fons
  • fons's Avatar
01 Sep 2024 08:28 - 01 Sep 2024 19:22
Replied by fons on topic Standard-modern 1700 series retrofit

Standard-modern 1700 series retrofit

Category: Turning

trav328 how or where can i find your setup files ?
  • chris@cnc
  • chris@cnc
01 Sep 2024 07:35 - 01 Sep 2024 07:47
Replied by chris@cnc on topic help to connect alarm signal driver hbs86h

help to connect alarm signal driver hbs86h

Category: Driver Boards

you have to collect signals from all amplifiers via a relay and connect it to one input  of your Bob. As a bonus, I would connect LEDs to show who is in pain.
 
  • Aciera
  • Aciera's Avatar
01 Sep 2024 07:29 - 01 Sep 2024 07:30
Replied by Aciera on topic Sliders for overrides in gmoccapy

Sliders for overrides in gmoccapy

Category: General LinuxCNC Questions

N: Name="Logitech Wireless Keyboard PID:4023"


Looks like this should work:
HALCMD = loadusr -W hal_input -K +Keyboard:0
  • COFHAL
  • COFHAL
01 Sep 2024 07:16
Replied by COFHAL on topic servo motor for a spindle

servo motor for a spindle

Category: Milling Machines

No, you can even use that BOB with the 7i96.
  • Ismacr63
  • Ismacr63
01 Sep 2024 05:54
Replied by Ismacr63 on topic help to connect alarm signal driver hbs86h

help to connect alarm signal driver hbs86h

Category: Driver Boards

Yes, I understand you but I don't have input for each driver. I don't care that linuxcnc tells me which driver is wrong. I just need it to come to a stop when that happens.

The problem is that when the driver fails the red LED does not light up. On the other hand, if I disconnect the driver from the bob, the red LED does turn on. I am doing all the tests with a single driver and the only input I have free.
  • onceloved
  • onceloved's Avatar
01 Sep 2024 05:31
Replied by onceloved on topic Marco Reps video on youtube about EtherCAT

Marco Reps video on youtube about EtherCAT

Category: EtherCAT

Can anyone recommend a low-latency remote assistance software?
Displaying 21616 - 21630 out of 25127 results.
Time to create page: 0.500 seconds
Powered by Kunena Forum