Advanced Search

Search Results (Searched for: )

  • tar_san
  • tar_san
13 Sep 2025 00:51
Replied by tar_san on topic Problems with Lichuan Ethercat servo drive

Problems with Lichuan Ethercat servo drive

Category: EtherCAT

I'm sorry to be late to publish my codes.
This is my repository for it.

github.com/k-s-saki/LinuxCNC_EtherCAT/tr...in/Lichuan/LC10E-INC
  • wrecks
  • wrecks
12 Sep 2025 23:44 - 13 Sep 2025 11:28
I'm missing something about Glade was created by wrecks

I'm missing something about Glade

Category: GladeVCP

I have installed and created a working configuration for my mill. I'm very happy with it so far. I previously had the mill controlled by mach4, which had some issues. There were some things that I like about the mach4 gui, though. I want to modify my linuxcnc gui to include some of these features and thought I might be able to use gladeVCP to do it.

The installation I used for linuxcnc is the newest and recommended install. When I follow the gladeVCP documentation section 3.1, which says that if the Glade command is miss, install it with the command sudo apt install glade.

The glade command is indeed missing, but sudo apt install glade fails with unable to locate package glade.

What am I missing? Where can I find the glade package?
 
  • royka
  • royka
12 Sep 2025 23:15 - 13 Sep 2025 00:00
Replied by royka on topic Can the OPI5 be Configured to Run LCNC?

Can the OPI5 be Configured to Run LCNC?

Category: Computers and Hardware

Yeah forgot about the permission errors. With calling this script from crontab it will solve that:
#!/usr/bin/bash
sleep 10 &&
echo "-1" > /proc/sys/kernel/sched_rt_runtime_us
echo 20 > /proc/irq/63/smp_affinity & echo 20 > /proc/irq/64/smp_affinity

The last ones to pin the Ethernet irqs, you should take yours which you can find with "cat /proc/interrupts"

Then save the file somewhere and chmod +x /location/filename
And enter "sudo crontab -e" and enter "@reboot /location/filename"
After that at least you should have LinuxCNC working again.
For the acceleration I'll have a look for that one of these days.

Now I see that the previous time your nvme didn't work until I reverted the got patch. Is it working now? Because I didn't do that on this kernel.

At least the Panfrost and the Panthor drivers are built in the kernel so it should be a system config or Mesa problem. Is the Mali firmware installed? "ls /usr/lib/firmware/mali*"
Which image are you using?
  • unknown
  • unknown
12 Sep 2025 22:28

AXIS Jog Rate display not updating after calling set_jograte() functions

Category: GladeVCP

I believe the axis GUI doesn't respond to changes such as you described, that can be seen in the example Sim configurations supplied with the standard Linuxcnc install.
Just thinking out loud, it would probably require digging into the axis code, exposing Hal pins for the GUI elements you would want to modify and implementing the code to respond to the Hal pins. This is part speculation.

But yes I've often thought that external interaction with the Axis GUI elements would be an idea, I still very much like axis. As much as many call the look dated, it works reliably.
But word on the street has it Axis is written in some language that only vets of The Editor Wars truly understand. I not too sure how many Vi or Emacs users are left.

Sorry for the dad joke at the end of this post, it really doesn't add much to answer your initial question.
  • tommylight
  • tommylight's Avatar
12 Sep 2025 22:22
Replied by tommylight on topic Save Post Reference to User List

Save Post Reference to User List

Category: Forum Questions

I believe that can implemented in a web browser via careful implementation of bookmarking.

+1
  • tnl1
  • tnl1
12 Sep 2025 22:22
Replied by tnl1 on topic AMSAMOTION IO module

AMSAMOTION IO module

Category: EtherCAT

Oh yeah, forgot to add, modules 1631 and probably 1632 have data values ​​output to port 2^16, so you'll need a bitslice conversion, not individual bit values ​​for input/output in your *.hal file
  • langdons
  • langdons's Avatar
12 Sep 2025 22:21
  • unknown
  • unknown
12 Sep 2025 22:15
Replied by unknown on topic Save Post Reference to User List

Save Post Reference to User List

Category: Forum Questions

I believe that can implemented in a web browser via careful implementation of bookmarking.

For the RPi I created a topic that has links to various solutions to issues with the RPi.

Or copying and pasting links to a local html file. One could even create a GitHub repo for this purpose, organising links of similar topics into folders.

Or even a simple database on one's home computer, which would give you the ability to search by keywords. Or you could get real fancy and use PHP to connect to the database and have a browser based solution GUI for searching and returning the results as a direct link.

Look the current version of the forum software has a barely usable editor, anyways this kind of feature would be best suggested to the authors of the forum software.
  • tnl1
  • tnl1
12 Sep 2025 22:01
Replied by tnl1 on topic AMSAMOTION IO module

AMSAMOTION IO module

Category: EtherCAT

Start with the configuration with the lpt port, then make changes to the *.hal file linuxcnc, if there is no physical lpt, then just comment out the lines using it... Attached is xml for 1631 and aq0810 from amsamotion
 
  • unknown
  • unknown
12 Sep 2025 22:01
Replied by unknown on topic The forum is really laggy recently.

The forum is really laggy recently.

Category: Forum Questions

My sincere apologies of course, the classic Networking implementation of the Turbo Encabulator.
  • scotta
  • scotta's Avatar
12 Sep 2025 21:57 - 12 Sep 2025 21:57

Remora - Rpi Software Stepping Using External Microcontroller via SPI

Category: Computers and Hardware

I've tried to run your config. Firstly corrected

BASE_PERIOD = 1000000
SERVO_PERIOD = 5000000

to

BASE_PERIOD = 0
SERVO_PERIOD = 1000000

You config also seems to be setup for imperial yet using mm?

I can jog with that above correction without following errors.

For your DRV8825 have you added the micro stepping jumpers? The DRV8825 wont enable without this, which I tried on my SKR3EZ. I unfortunately killed my normal SKR3 so cannot test with that board.
  • PCW
  • PCW's Avatar
12 Sep 2025 20:26

Probing routines changing mode from G90 to G91

Category: QtPyVCP

This may sound dumb as I am no gcode expert, but is there a way to "push" the current gcode settings
and restore them later?
  • Aciera
  • Aciera's Avatar
12 Sep 2025 19:46
Replied by Aciera on topic Re:ini. changes while EMC2 running?

Re:ini. changes while EMC2 running?

Category: General LinuxCNC Questions

ini values can be changed using the 'ini.*' hal pins. Changes can be made while a program is running but will only become active after a queue buster command (eg M66 E0 L0) which will restart the motion planner with the updated ini values.
  • scsmith1451
  • scsmith1451's Avatar
12 Sep 2025 19:21
Save Post Reference to User List was created by scsmith1451

Save Post Reference to User List

Category: Forum Questions

I have found that I often stumble across interesting topics while searching for info on the forum site that I would like to go back to at a future date.  It would be awesome if posts could be tagged and saved to a user's account list for easy retrieval in the future.  The list should be editable to remove old links that are no longer needed.

Kind Regard,
  • Unlogic
  • Unlogic
12 Sep 2025 19:04 - 12 Sep 2025 19:11

Probing routines changing mode from G90 to G91

Category: QtPyVCP

Big thanks Chris, that was a really quick fix from you!

Fixing the bug in the normal uses cases is what's most important as probing errors are not that common once you get used to the various probing functions.

The abort handling seems tricky to solve indeed. I went through the documentation in search for a solution. I was looking for a hook to detect when a program has been halted but I came up with nothing.

Maybe some of the more experienced LinuxCNC gurus here on the forum has some input on how this could be solved.
Displaying 1726 - 1740 out of 22606 results.
Time to create page: 0.216 seconds
Powered by Kunena Forum