Advanced Search

Search Results (Searched for: )

  • unknown
  • unknown
31 Mar 2025 12:11

Yet another LinuxCNC noob with a PCI card as Port1 issue.

Category: General LinuxCNC Questions

If you can use for all your card the following command
sudo lspci -vvnn > lspci.txt
sudo dmesg | grep parport > dmesg.txt
sudo ls /proc/ioports > ioports.txt

And as much it is a PITA copy the unedited txt files to a USB drive and attach them to your next post . Screenshots are difficult to work with.
  • Todd Zuercher
  • Todd Zuercher's Avatar
31 Mar 2025 12:09 - 31 Mar 2025 12:10
Replied by Todd Zuercher on topic whc-whb04b-6 button debounce

whc-whb04b-6 button debounce

Category: General LinuxCNC Questions

Have you looked at your input signals from the button inputs with halscope? It is entirely possible that the way the signals are processed and transmitted within the device's hardware makes adding debounce filtering of the button inputs unnecessary or redundant. If you find that the signals need to be debounced you will probably need to either do it with a hal debounce component or rewrite the whc-whb04b driver to add that feature your self.
  • stone_sleeper
  • stone_sleeper
31 Mar 2025 12:02
Replied by stone_sleeper on topic need help ethercat et linuxcnc

need help ethercat et linuxcnc

Category: EtherCAT

[KINS]
KINEMATICS = trivkins coordinates=XXYZ kinstype=BOTH
JOINTS = 4
  • unknown
  • unknown
31 Mar 2025 12:01

Raspi 5 touchscreen experience - recommendation

Category: Computers and Hardware

If I could ask a small favour, could you provide a link to the item, then I'll put the details of the screen in the big RPi thread for others that may be looking for a touchscreen.

Glad you've had success.

Cheers
Rob
  • stone_sleeper
  • stone_sleeper
31 Mar 2025 12:01
Replied by stone_sleeper on topic need help ethercat et linuxcnc

need help ethercat et linuxcnc

Category: EtherCAT

Solved!!!
  • tommylight
  • tommylight's Avatar
31 Mar 2025 11:56
  • B1gJ1mmy
  • B1gJ1mmy
31 Mar 2025 11:47
  • MennilTossFlykune
  • MennilTossFlykune
31 Mar 2025 11:31
Replied by MennilTossFlykune on topic tangential knife along multiple layer height

tangential knife along multiple layer height

Category: AXIS

You could look at how myCNC works:
https://www.youtube.com/watch?v=zcrRAU9BJ0E

docs.pv-automation.com/quickstart/mycnc-...ngential-knife-setup
It adds the rotations and retracts automatically without touching the G-code, like how you were thinking.

EdingCNC works the same way:

Tangential knife, you need to program only X.Y coordinates and the tangential knife follows, also in circles and lifts automatically up when needed.


 
  • StoneB
  • StoneB
31 Mar 2025 11:31 - 31 Mar 2025 12:55

Raspi 5 touchscreen experience - recommendation

Category: Computers and Hardware

Thank you for the guidance!

I got a super cheap 65eur 14" touchscreen off Amazon where the seller stated it is USB HID and it works just perfectly fine first try. Much easier indeed to use standard USB than trying to make drivers work for a dedicated solution. 

Couldn't be happier how it turned out - using the VESA mounts to attach the raspi on the back, and have a desk stand I will mount to the back of the mill stand to hold the screen in place. 
  • millikari
  • millikari
31 Mar 2025 11:14 - 31 Mar 2025 11:31

Couldn't get the WARNING icon in LcncDialog

Category: Qtvcp

Hi, I had a little trouble displaying the warning icon in a LcncDialog widget. I think it's caused by setting the default to INFO icon before checking WARNING and CRITICAL (dialog_widget.py in master 0fda49f):
# convert text descriptions to actual icons
if icon == 'QUESTION': icon = QMessageBox.Question
elif icon == 'INFO' or isinstance(icon,str): icon = QMessageBox.Information
elif icon == 'WARNING': icon = QMessageBox.Warning
elif icon == 'CRITICAL': icon = QMessageBox.Critical
self.setIcon(icon)


Changing the sequence of the statements lets me choose also the WARNING icon.
# convert text descriptions to actual icons
if icon == 'QUESTION': icon = QMessageBox.Question
elif icon == 'WARNING': icon = QMessageBox.Warning
elif icon == 'CRITICAL': icon = QMessageBox.Critical
elif icon == 'INFO' or isinstance(icon,str):icon = QMessageBox.Information
self.setIcon(icon)

Sorry, have some problems formatting the code passage in my message
  • Grotius
  • Grotius's Avatar
31 Mar 2025 11:00
Replied by Grotius on topic tangential knife along multiple layer height

tangential knife along multiple layer height

Category: AXIS

@MennilTossFlykune,

Very nice contribution!
The planner could add these z motion steps too. And additional steps if needed.

Maybe someone is interested to write a paper how the tangential module should work within linuxcnc
in a nice TANGENTIAL.md file, that can be included with the source.

Then i can just read the paper and tranfer the workflow into code.
  • B1gJ1mmy
  • B1gJ1mmy
31 Mar 2025 10:32

Yet another LinuxCNC noob with a PCI card as Port1 issue.

Category: General LinuxCNC Questions

Thanks. I look forward to your response. 

I was able to get the SUN1888 working to the same extent as the Moschip.  With the same results no output. So I'm guessing not the card. 

The only other thing that may be causing issues is my initial setup was in stepconf wizard using the dual parport setting and then setting the addresses for the parallel ports in there.  This seems to create a valid output in the hal of loadrt hal_parport cfg=”0x378 out 0xe800 out“ (when testing with the moschip card) 

from my limited understanding of the hal file  stepconf seems to setup the hal correctly it definitely works on a single breakout card. 

I have attached the photos for the sun1888 card just for your reference.  

 
  • Grotius
  • Grotius's Avatar
31 Mar 2025 10:29
Replied by Grotius on topic LinuxCNC S-Curve Accelerations

LinuxCNC S-Curve Accelerations

Category: General LinuxCNC Questions

Hi,

Yesterday i was trying to install the new .iso but it failed. No kernel was found.
I noticed i made a mistake somewhere in the process. Brrrr.

Now after a while i noticed i had to copy some files inside the iso related to the rt kernel.
Then installed it again. This time the rt-kernel was found.

At the moment i added extra software and it's packing the filesystem. After that i will test the iso once again.
I am testing from 16gb usb to 16gb usb.
Then one usb contains the .iso. The other usb is working as hdd to install debian12rt on. This worked yesterday.
It's only a slow install process. It takes a long time.

We managed to borrow server space from our friends : QtPyVcp Team.

Here we can now host bigger iso files at : repository.qtpyvcp.com/linux-distro/
this link is now empty, but hopely later on this day, the first iso will appear.

Thanks to QtPyVcp Team.
  • D Jensen
  • D Jensen
31 Mar 2025 09:48
Replied by D Jensen on topic Retrofitting a 1986 Maho 400E

Retrofitting a 1986 Maho 400E

Category: Milling Machines

I agree. At the rate I'm going I'm liable to get kicked off!
You can contact me at:
This email address is being protected from spambots. You need JavaScript enabled to view it.
Or better on Skype at:
david.jensen11 although that is going off air next month and I will be migrated to Teams personal or Teams free it seems.
Skype is better for me as I'm slow and hopeless at typing. You might need to refine the Skype address to Sydney.
Cheers,
David
 
  • chris mcm
  • chris mcm
31 Mar 2025 09:32
Replied by chris mcm on topic Retrofitting a 1986 Maho 400E

Retrofitting a 1986 Maho 400E

Category: Milling Machines

Hello David
t seems we have been writing under Linux CNC forum and possibly a bit off topic.
If you are happy to continue our conversation please advise me on how best to contact you.
Thank you Cheers Chris McMullen
Displaying 1426 - 1440 out of 26711 results.
Time to create page: 0.251 seconds
Powered by Kunena Forum