Advanced Search

Search Results (Searched for: )

  • spumco
  • spumco
27 Aug 2024 01:12 - 27 Aug 2024 01:25
Replied by spumco on topic Is there an easy way to swap axes?

Is there an easy way to swap axes?

Category: General LinuxCNC Questions

Mark - you're running a LCNC version pre-joint/axis?

EDIT:

I'm not familiar with pre-joint/axis configs, but one thing I noticed in your HAL files is that it looks like there's a mismatch between the INI and HAL axis numbers.

Vertical:
INI - Y is axis_1
INI - Z is axis_2
HAL - Y is axis_1
HAL - Z is axis_2

Horizontal
INI - Z is axis_1
INI - Y is axis_2
HAL - Z is axis_2
HAL - Y is axis_1

Make sense?
  • phillc54
  • phillc54's Avatar
27 Aug 2024 01:02
Replied by phillc54 on topic Override set_default_blending

Override set_default_blending

Category: Plasmac

It is looking a bit ugly but it seems to do what you need:
Warning: Spoiler!
  • onceloved
  • onceloved's Avatar
27 Aug 2024 00:36
Replied by onceloved on topic EtherCAT IO设置

EtherCAT IO设置

Category: EtherCAT

加我QQ:304394405我远程给你配置
  • cmorley
  • cmorley
26 Aug 2024 23:38
Replied by cmorley on topic QTDragon spindle raise issues

QTDragon spindle raise issues

Category: Qtvcp

Do you have halui.pause or resume pin connected somewhere?
from the docs:

If using the Spindle lift option, HALUI can not be used to pause/resume the program. There is a pin, QtDragon.external-pause available to pause/resume from an external source. You must also enable external offsets. In the setting tab check use external offsets

also for qtdragon_hd line 41 should be un commented
  • phillc54
  • phillc54's Avatar
26 Aug 2024 23:30
Replied by phillc54 on topic Modify Preview Default

Modify Preview Default

Category: Advanced Configuration

The files real name is .axisrc (note the leading dot which makes it a hidden file) and it goes in the users home directory. If it does not exist then create it.
Both commands will work from ~/.axisrc and will be applied to every LinuxCNC config.
 
  • tbitello
  • tbitello
26 Aug 2024 23:03
Replied by tbitello on topic Modify Preview Default

Modify Preview Default

Category: Advanced Configuration

I understand, but I didn't identify any file called axisrc, just create it? Does it need to be in a specific folder? Will the root_windows command you mentioned be inside this file too?
  • RLA
  • RLA
26 Aug 2024 22:48
Replied by RLA on topic Add Axis

Add Axis

Category: HAL

What a relief!! So in terms of unreliable hardware...its me!!

Thanks again..glad to be able to move on...

Thanks again!

 
  • PCW
  • PCW's Avatar
26 Aug 2024 22:28
Replied by PCW on topic Add Axis

Add Axis

Category: HAL

Yes, you are missing the:

addf pid.u.do-pid-calcs servo-thread

so the "U" PID pins are there but they are  not functioning
  • RLA
  • RLA
26 Aug 2024 21:36
Replied by RLA on topic Add Axis

Add Axis

Category: HAL

I left shop for today but just noticed this in my hal...no reference to new axis (U)...would that cause the error?...thanks!addf hm2_7i96s.0.read servo-thread
addf motion-command-handler servo-thread
addf motion-controller servo-thread
addf pid.x.do-pid-calcs servo-thread
addf pid.y.do-pid-calcs servo-thread
addf pid.z.do-pid-calcs servo-thread
addf pid.a.do-pid-calcs servo-thread
addf pid.s.do-pid-calcs servo-thread
addf hm2_7i96s.0.write servo-thread
setp hm2_7i96s.0.dpll.01.timer-us -50
setp hm2_7i96s.0.stepgen.timer-number 1

# external output signals
  • gardenweazel
  • gardenweazel's Avatar
26 Aug 2024 21:21
QTDragon spindle raise issues was created by gardenweazel

QTDragon spindle raise issues

Category: Qtvcp

I'm getting this feedback in my logs:
cut
[QTvcp.QTVCP.QT_MAKEPINS][DEBUG]  Calculating geometry of main window using natural placement: 0 0 1920 1080 (qt_makepins.py:200)
[QTvcp][INFO]  Postgui filename: ['qtdragon_hd_postgui.hal'] (qtvcp:431)
[QTvcp][INFO]  Postgui commands: None (qtvcp:443)
[QTvcp][DEBUG]  Calling handler file's before_loop__ function in qtvcp.qt_makegui.VCPWindow object at 0x7fcc7d590790 (qtvcp:414)
[QTvcp.QTDRAGON_HD_HANDLER][b][color=#e74c3c][WARNING]  not connected qtdragon.eoffset-is-active (qtdragon_hd_handler.py:574)[/color][/b]
[QTvcp.QTDRAGON_HD_HANDLER][b][color=#e74c3c][WARNING]  HALUI pause/resume pin(s) connected - spindle lift not available (qtdragon_hd_handler.py:581)[/color][/b]
[QTvcp][INFO]  Preference path: /home/andy/linuxcnc/configs/my_LinuxCNC_machine_QTDragon/qtdragon_hd.pref (qtvcp:420)

cut



Here's part of my qtdragon_hd.hal file:
Line numbers included for readability.
[b]Do I need both lines 41 and 46?[/b] I am using the pause_pin.py optional file.

  28 # connect signals to LinuxCNC's motion component
  29 ########################################################################
  30
  31 net eoffset-clear    axis.z.eoffset-clear
  32 net eoffset-counts   axis.z.eoffset-counts
  33 #setp axis.z.eoffset-scale .001
  34 #setp axis.z.eoffset-enable True
  35
  36 # external offsets for spindle PAUSE function
  37 ########################################################################
  38 net eoffset-clear              qtdragon.eoffset-clear
  39 net eoffset-spindle-count   <= qtdragon.eoffset-spindle-count
  40 net spindle-pause              qtdragon.spindle-inhibit        =>  spindle.0.inhibit
  41 #net eoffset-state              qtdragon.eoffset-is-active      <=  motion.eoffset-active
  42 net eoffset          qtdragon.eoffset-value <= axis.z.eoffset
  43
  44 # This is used in pause_pin.py
  45 net external-pause              qtdragon.spindle-inhibit        =>  spindle.0.inhibit
  46 net eoffset-state    qtdragon.external-eoffset-state <= motion.eoffset-active
  47 setp axis.z.eoffset-enable 1
  48 setp axis.z.eoffset-scale 1.0
  49
 
  • tommylight
  • tommylight's Avatar
26 Aug 2024 21:14
Replied by tommylight on topic z axis inverted in NC file

z axis inverted in NC file

Category: General LinuxCNC Questions

No file.
And the ini is not set properly for a mill, the Z=0 must be the top point on the machine and everything below must be negative value, or in your case it should be Z min -5.
Despite that, it can work as is if you use the touch off.
And the above "must" is what is normally used, not written in stone.
  • scotta
  • scotta's Avatar
26 Aug 2024 20:47

Remora - ethernet NVEM / EC300 / EC500 cnc board

Category: Computers and Hardware

I've also had no luck with an out of the box STLinkV2. But ColdTurkey has got it to work

pyocd.io/docs/debug_probes.html

"Recent STLink firmware versions will only allow access to STM32 targets. If you are using a target from a silicon vendor other than ST Micro, please use a different debug probe."

If you have a couple of probes you can always flash one with the following firmware.

github.com/scottalford75/Remora-RT1052/tree/main/CMSIS-DAP
  • PCW
  • PCW's Avatar
26 Aug 2024 20:26
Replied by PCW on topic Add Axis

Add Axis

Category: HAL

net u-pos-cmd <= joint.4.motor-pos-cmd
net u-pos-fb <= hm2_7i96s.0.stepgen.07.position-fb
  • PCW
  • PCW's Avatar
26 Aug 2024 20:22 - 26 Aug 2024 20:55

No motor control using 7i96A and DM542T drivers

Category: Installing LinuxCNC

Common issues are:

Too short step length (set step length to double the drives minimum)

Insufficient OPTO LED drive (use single ended wiring on OPTO inputs)

Also on later DM542Ts you must select 5V signal levels (via S2)
  • hirst689
  • hirst689
26 Aug 2024 20:19

No motor control using 7i96A and DM542T drivers

Category: Installing LinuxCNC

I have just finished my build of a CNC table. I am using a 7i96A controller driving three axes. I cannot get any of the motor to step.
I built a configuration using PnConf , I have a tandem Y axis. I can get nothing to move regardless of which axis I try.
When I power on the system all the motor lock, as I would expect.
I am driving the DM542T differentially and I have nothing connected to the enable inputs of any of the motor driver, which should mean that they are enabled.
I put a voltage meter across the direction input of the Y axis and jogged it forward and revere. I see the input flipping between -5.95 and +4.95 so I think the direction is working but I seem not the be getting stepper pulses.
Can someone suggest the next course of action. I am a bit lost and disappointed that I spend a good deal of time and money on this project.
Anyway, I am looking for suggestions

thanks

Hirst689
Displaying 22411 - 22425 out of 24887 results.
Time to create page: 0.476 seconds
Powered by Kunena Forum