Advanced Search

Search Results (Searched for: )

  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:39

Mesa 7i96s | Gmoccapy | Spindeldrehzahl regelt nicht

Category: Deutsch

You don't seem to have anything connecting spindle-speed out to the mesa card?

You have wired the spindle-enable to an SSR, but the analogue spindle speed value would normally go to a PWM.

net spindle-vel-cmd-rpm => hm2_7i96s.0.pwmgen.00.value

See this post for examples:
forum.linuxcnc.org/10-advanced-configura...7i96s-analog-spindle
  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:30

Please help GMOCCAPY CLOSE some time when I push matrixkey

Category: General LinuxCNC Questions

The "float division by zero" looks worrisome. Do you see that in a sim config too? Or is it a problem in your own handler code?
  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:27

Please help GMOCCAPY CLOSE some time when I push matrixkey

Category: General LinuxCNC Questions

Do you have any matrix keys mapped to keyboard events?

This may be worth raising as a bug on the bug tracker:
github.com/LinuxCNC/linuxcnc/issues
  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:19

RPi 4B - LC2.8.4 vs LC2.9.2 - Queue MDI Commands, Run From Here

Category: Basic Configuration

I am a bit confused about this, as we have bugs open saying that we allow MDI queuing, but shouldn't.
github.com/LinuxCNC/linuxcnc/issues/2956
(I think that we should allow it, it's useful)
  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:07
Replied by andypugh on topic Receiving GStat messages in GladeVCPs

Receiving GStat messages in GladeVCPs

Category: GladeVCP

This sounds like a question for Chris, and might do better on the dev mailing list.
  • chrisfairbrothern
  • chrisfairbrothern
28 Sep 2024 09:07
Replied by chrisfairbrothern on topic NGCGUI arc1 and arc2 are not adding a tool offset

NGCGUI arc1 and arc2 are not adding a tool offset

Category: Mill Library

Ok, point taken thank you. It s the opt block button in qtdragon.
 
  • andypugh
  • andypugh's Avatar
28 Sep 2024 09:04
Replied by andypugh on topic Custom Widget Trouble

Custom Widget Trouble

Category: GladeVCP

Having the files in both locations might be the cause of the problem, I don't know if that is normal. (I am on a train at the moment, and though I did bring a second laptop with LinuxCNC on it, that one doesn't have Glade)

But, I am fairly sure that the built-in LinuxCNC DRO widgets have a built-in display of homing state, in that they change colour.

I realise that neither of these paragraphs answer your actual question.
  • andypugh
  • andypugh's Avatar
28 Sep 2024 08:52
Replied by andypugh on topic Getting LinuxCNC as an option to RPi Imager

Getting LinuxCNC as an option to RPi Imager

Category: Installing LinuxCNC

Two things have changed in the interim:
1) LinuxCNC is now in Debian
2) preempt-rt is in mainline Linux.
  • andypugh
  • andypugh's Avatar
28 Sep 2024 08:50
Replied by andypugh on topic Getting LinuxCNC as an option to RPi Imager

Getting LinuxCNC as an option to RPi Imager

Category: Installing LinuxCNC

I asked the RPi foundation about this a few years ago, and they said that they were trying to reduce the number of special purpose installations, rather than increase them.
That policy might have changed in the meantime.

16th September 2020:

"Andy

Thank you for your interest in Raspberry Pi.

We're currently not adding many external OSes to the Imager, but please add your suggestion to the github issues and we'll decide what we do about third party OSes. github.com/raspberrypi/rpi-imager/issues

Regards"
  • FPM
  • FPM
28 Sep 2024 07:10
Replied by FPM on topic converting a tos/intos fngj 40

converting a tos/intos fngj 40

Category: Milling Machines

Are those encoder analog ones or digital ones?
I have attached photos of the servo drives, do they accept -+10v commands and do they need anything else ( except power of course )?
@ihavenofish: is there a reason for replacing the servos?
 
  • AJV
  • AJV's Avatar
28 Sep 2024 04:58

Interesting/Useful Ryzen CPU Latency Results on Non-Hyperthreaded Cpus

Category: Computers and Hardware

It's good to hear that you were able to get some good numbers out of the larger Ryzen CPUs. How did you disable the hyperthreading on your Ryzen 5 3500? I always assumed it was built into the architecture on a physical level in a way where it could not be disabled.

I have tried running the above-listed parameters on the 5500 and 5900x but wasn't able to extract the performance numbers of the non-hyperthreaded ryzens. I should probably get my hands on a G series Ryzen to see how much the latency is impacted by the onboard graphics processing at some point.
  • Unlogic
  • Unlogic
28 Sep 2024 04:33
Replied by Unlogic on topic Decent servo suppliers and recommendations

Decent servo suppliers and recommendations

Category: General LinuxCNC Questions

Delta is easily found for very cheap online and has a good reputation. Hard to beat for value from a top end supplier.

Lichuan makes some lower priced kits people are trying out (ethercat as well as step/dir). I have not seen any on an actual linuxcnc machine running yet though.
 

I can also recommend Delta, I'm using their servos for all axis and the spindle with very good results. Purchased them from AliExpress. All the documentation and utilities for them are available on the Delta website. The manual is over 1200 pages.
  • spumco
  • spumco
28 Sep 2024 03:42

Switch mode from Auto to Man after abort

Category: QtPyVCP

Starting new thread from here:
forum.linuxcnc.org/qtpyvcp/53922-probe-c...axes?start=10#310882

Topic:  Aborted probing routine leaves LCNC in auto mode.  Jogging, MDI, or other recovery actions not possible without the user manually switching modes.

@Lcette:
Yes, I think it's a chicken and egg problem.

@Aciera's response:
It's not possible to switch to manual from gcode but you could set an analog output in gcode to indicate to a python component that you want to switch to manual mode when the gcode finishes or aborts (ie the interpreter switches to IDLE):

Warning: Spoiler!


My idea - untested - is to do it through HAL using <on_abort.ngc>.  I think Aciera's suggestion would be more graceful, especially if there's a way to point the python script to an INI section to connect the appropriate motion pin and other settings.
%
o<on_abort> sub
...[i]normal abort codes[/i]...
[b]M64 Pn[/b]
o<on_abort> endsub
%

setp  timedelay.N.on-delay  2
setp  oneshot.N.width  1
net SIGNAL1  <= motion.digital-out-n
net SIGNAL1  => oneshot.N.in
net SIGNAL2  <= oneshot.N.out
net SIGNAL2  => timedelay.N.in
net SIGNAL3  <= timedelay.N.out
net SIGNAL3  => halui.mode.manual

I'll test out my HAL experiment this weekend and report back.
  • rajsekhar
  • rajsekhar
28 Sep 2024 03:21 - 28 Sep 2024 03:32
Replied by rajsekhar on topic Error while Running Linuxcnc

Error while Running Linuxcnc

Category: Driver Boards

I added all power management option for r8168/pcie to grub, reboot.

After that the histogram run for 10 minutes.

Histogram attached. File name having 613.png (CPU=1 interrupt) and 704.png (CPU=0 interrupt).

There is clear difference.

Note: with CPU=1 interrupt, system running now for 30 min, hm2 read.tmax=1904389.

So IRQ affinity is must.

 
  • pippin88
  • pippin88
28 Sep 2024 02:41
Replied by pippin88 on topic Decent servo suppliers and recommendations

Decent servo suppliers and recommendations

Category: General LinuxCNC Questions

Yaskawa will be $$$

Buy matched motor sets
Do not bother buying separate motor and driver and trying to match them

I am happy enough with Delta for the price point. They have decent manual however still easy enough to find bits that are not clear. Delta tuning software is OK.

Modern servos are very complex and configurable when you get into the nitty gritty.

Lichuan cheaper but documentation poor.
Displaying 20821 - 20835 out of 24471 results.
Time to create page: 0.477 seconds
Powered by Kunena Forum