Advanced Search

Search Results (Searched for: )

  • andypugh
  • andypugh's Avatar
26 Jul 2025 23:25
Replied by andypugh on topic Probe tripped during non-probe move deadlock

Probe tripped during non-probe move deadlock

Category: General LinuxCNC Questions

Incidentally, there are two INI settings related to this, but I don't think that they help here:

linuxcnc.org/docs/stable/html/config/ini...tml#sub:ini:sec:traj

NO_PROBE_JOG_ERROR = 0 - Allow to bypass probe tripped check when you jog manually.

NO_PROBE_HOME_ERROR = 0 - Allow to bypass probe tripped check when homing is in progress.

You could try making a fast probe-away move (G38.5) to clear the probe from the work. (fast so that it overshoots out of the probe dither region)
  • andypugh
  • andypugh's Avatar
26 Jul 2025 23:19
Replied by andypugh on topic Probe tripped during non-probe move deadlock

Probe tripped during non-probe move deadlock

Category: General LinuxCNC Questions

It is possible to set up the HAL so that the probe signal is only seen during a probe move.

It's not a particularly elegant fix, as you need to use motion.motion-type
linuxcnc.org/docs/stable/html/man/man9/m...9.html#MOTION%20PINS
and only send through the probe signal when motion.motion-type = 5.
Unfortunately I haven't found a single component that can compare a signed integer (like motion-type) and outut a logical.

So it might be better to use a custom HAL component:
linuxcnc.org/docs/stable/html/hal/comp.html
component probe-filter "Only pass-through probe when probing"
pin in signed motion-type;
pin in bit probe-in
pin out bit probe-out
;;
if (motion_type) == 5 {
    probe_out = probe_in;
} else {
    probe_out = 0;
}
  • Thayloreing
  • Thayloreing
26 Jul 2025 23:18
problem with num_extrajoint was created by Thayloreing

problem with num_extrajoint

Category: General LinuxCNC Questions

I'm using LinuxCNC 2.9.4 with trivkins and want to use an extra joint that doesn't go through the path planner. I've already configured it in the .ini file.

[KINS] KINEMATICS = trivkins coordinates=XY
Joint = 3

[EMCMOT] num_extrajoints = 1

Even so, it doesn't work correctly. LinuxCNC either won't load or gives a joint mapping error.

❓ Has anyone used num_extrajoints successfully? Is there any additional details beyond that?
The idea is to just have normal X and Y coordinates, and a free joint controllable via HAL, outside of the path planner.
  • AkkiSan
  • AkkiSan
26 Jul 2025 23:01
Replied by AkkiSan on topic Probe tripped during non-probe move deadlock

Probe tripped during non-probe move deadlock

Category: General LinuxCNC Questions

Okay; found a workaround.
Just in case someone is having the same issue:

I solved this with an additional AND gate and this
motion-digital-out-nn thingy, controlled via M64 and M65.

Example for a probe on a parport, here also with an additional
debug LED on parport pin 1 (strobe):
net probepin       parport.0.pin-11-in-not  => and2.3.in0
net probeenable    motion.digital-out-00    => and2.3.in1
net probefiltered  and2.3.out               => motion.probe-input  parport.0.pin-01-out


In the G-Code, just encapsulate the retraction move(s) with
M65 P0 and M64 P0:
  ...
  G38.2 Z#8
 
  M65 P0    (turn off touch probe for retraction)
  G0 Z#7
  M64 P0    (turn on touch probe again)
  ...

Cheers
AS
  • LoneWolfQuest
  • LoneWolfQuest
26 Jul 2025 22:44
Manual home to a specific location was created by LoneWolfQuest

Manual home to a specific location

Category: Basic Configuration

I would like to find out how to tell LinuxCNC in absolute terms that your position is x,y,z.
Not relative. I want to set the actual position of x,y.z.
I do not have limit switches to home.
I manually home to a custom jig at the center of the machine.
After I do this, I need to tell LinuxCNC "you are here".
Everything I've tried creates a corresponding negative relative offset.
Please help, and thanks in advance.
--LoneWolf.Quest
  • jmelson
  • jmelson
26 Jul 2025 21:03
Replied by jmelson on topic Controlling existing motors with resolvers

Controlling existing motors with resolvers

Category: Driver Boards

Nope, Variable Reluctance resolvers require quite a bit more excitation drive, and not all resolver circuits can handle these. Tamagawa is a leading manufacturer of these, but they also make "brushless resolvers" which require MUCH less drive. In the data sheets, they sometimes state the excitation impedance as a complex number, something like 95 + 135j Ohms at some frequency. The higher these numbers, the less drive current the resolver requires. Common brands of brushless resolvers seen on older equipment are Singer-Kearfott and Harowe Controls.
Sin/Cos encoders are not magnetic devices, but often optical linear scales (can also be rotary) where the raw optical signal is brought out, either as a voltage or a current. The reason for this is interpolator boxes can be attached to increase the encoder resolution. Back in the "old days" linear scales often had native resolution of 100 lines per inch or so, so interpolation was required to get proper machine accuracy. Nowadays, high-resolution optical gratings can be made easily, so this stuff is rarely seen today.
Jon
  • TripleM
  • TripleM
26 Jul 2025 19:37

Gmoccapi Vollbild Modus + Lathe Macros macht Probleme

Category: Deutsch

Hi,
seit dem ich die LatheMacros zu Gmoccapi honzugefügt habe, habe ich Probleme mit dem Fenster.
Wenn ich im Vollbild-Modus bin und z.B. in der Werkzeugtabelle bin passt das Bild, sobald ich jedoch in den manuellen Betrieb wechsle, ist das Bild unten abgeschnitten.
Das Fenster lässt dich dann auch nicht mehr so einfach klein schieben.
Hatte wer schonmal so ein ähnliches Problem oder hat eine Idee an was das liegt?

Vielen Dank im voraus
  • jor
  • jor's Avatar
26 Jul 2025 18:45

How to install kernel patch? (Moschip 9900)

Category: Installing LinuxCNC

tommylight; I'm using a super cheapo amazon power supply, I will test with a better one when I am able. Do you think such noise could cause the parport to become disabled in linux?

pcw; with the parallel port unplugged from the driver, the exact same issue happens! so i guess it is software or maybe my PCIe parallel port? this is the one I have  www.amazon.com/dp/B01N6MG5TM?ref=ppx_yo2ov_dt_b_fed_asin_title  
 
  • RLA
  • RLA
26 Jul 2025 17:54
Replied by RLA on topic limit switch problem

limit switch problem

Category: General LinuxCNC Questions

ok...thanks...I will do on monday...in the meantime check out halshow


Thanks!!
  • PCW
  • PCW's Avatar
26 Jul 2025 16:58
Replied by PCW on topic limit switch problem

limit switch problem

Category: General LinuxCNC Questions

the actual path  of x home (in your hal file) should be:

net x-home-sw <= hm2_7i96s.0.gpio.000.in_not

net x-home-sw => joint.0.home-sw-in

So trace from hm2_7i96s.0.gpio.000.in_not to  x-home-sw to joint.0.home-sw-in
in halshow



 
  • PCW
  • PCW's Avatar
26 Jul 2025 16:46
Replied by PCW on topic PlasmaC Voltage Divider

PlasmaC Voltage Divider

Category: Plasmac

Much better.
 
  • Clive S
  • Clive S
26 Jul 2025 16:27
Replied by Clive S on topic PlasmaC Voltage Divider

PlasmaC Voltage Divider

Category: Plasmac

2 x 2watt is correct I believe
  • zzrzzr
  • zzrzzr
26 Jul 2025 15:59
Replied by zzrzzr on topic PlasmaC Voltage Divider

PlasmaC Voltage Divider

Category: Plasmac

  • RLA
  • RLA
26 Jul 2025 15:51
Replied by RLA on topic limit switch problem

limit switch problem

Category: General LinuxCNC Questions

Hi..Thanks for reply...I made change...same result...I made the change under the external input signals...is that right?....if so... I am not familiar with homing variables...anything that could be set wrong to make switch ignored?

Thanks again for your help..
Displaying 13741 - 13755 out of 14618 results.
Time to create page: 0.539 seconds
Powered by Kunena Forum