Advanced Search

Search Results (Searched for: )

  • Red_D85
  • Red_D85
08 Oct 2025 11:42
Replied by Red_D85 on topic Config-Problem Ethercat

Config-Problem Ethercat

Category: Deutsch

Strang. minimal config works without problems.:
 

File Attachment:

File Name: ethercat-c...imal.xml
File Size:1 KB

 

File Attachment:

File Name: cia402_minimal.hal
File Size:2 KB



 full setup, sometimes it works, sometimes it doesn't 

 

File Attachment:

File Name: ethercat-c...0-08.xml
File Size:5 KB

 

File Attachment:

File Name: cia402_2025-10-08.hal
File Size:4 KB


is the problem because "dcconf"?
  • my1987toyota
  • my1987toyota's Avatar
08 Oct 2025 11:34 - 09 Oct 2025 09:52
Replied by my1987toyota on topic There Goes Arduino

There Goes Arduino

Category: Off Topic and Test Posts

Maybe. But not likely. Most of the generations past Millennials just want A.I. to do everything for them.
I have personally seen it with my own eye's. Me personally I don't trust A.I. more so because who 
controls it's usage, what info it collects, and how said info is utilized and or who it is sold to.  
  • unknown
  • unknown
08 Oct 2025 10:27
Replied by unknown on topic There Goes Arduino

There Goes Arduino

Category: Off Topic and Test Posts

The demise of the Arduino platform may not be too bad, people might start to learn basic electronics.
  • Hakan
  • Hakan
08 Oct 2025 09:25
Replied by Hakan on topic Important EtherCAT configuration option

Important EtherCAT configuration option

Category: EtherCAT

I didn't have that kernel version, so maybe that isn't the reason.
You got to have a well working system with no or at least very few "datagram UNMATCHED" in the syslog.
Check that first.
  • my1987toyota
  • my1987toyota's Avatar
08 Oct 2025 09:11 - 08 Oct 2025 09:32
Replied by my1987toyota on topic There Goes Arduino

There Goes Arduino

Category: Off Topic and Test Posts

It seems like every time economies go down hill these big companies start snatching up small ones and 
gouge people for the same products. Or like most recent trends they start introducing subscription based B.S.
It's aggravating how much the masses are told that competition is good and the norm until it comes to big
corporate then it's all about monopolies.  
  • aaron
  • aaron
08 Oct 2025 08:53
Errors installing new packages was created by aaron

Errors installing new packages

Category: General LinuxCNC Questions

Hi
I have a newly installed version of Debian Linuxcnc and I keep getting this error when I try upgrade or install packages:
dpkg: error processing package linux-image-rt-amd64 (--configure):
 dependency problems - leaving unconfigured
Processing triggers for initramfs-tools (0.142+deb12u3) ...
update-initramfs: Generating /boot/initrd.img-6.1.0-40-rt-amd64
raspi-firmware: missing /boot/firmware, did you forget to mount it?
run-parts: /etc/initramfs/post-update.d//z50-raspi-firmware exited with return code 1
dpkg: error processing package initramfs-tools (--configure):
 installed initramfs-tools package post-installation script subprocess returned error exit statu
s 1
Errors were encountered while processing:
 linux-image-6.1.0-40-rt-amd64
 linux-image-rt-amd64
 initramfs-tools
E: Sub-process /usr/bin/dpkg returned an error code (1)
Any help greatfuly recieved
  • heaven
  • heaven
08 Oct 2025 08:47
Replied by heaven on topic Important EtherCAT configuration option

Important EtherCAT configuration option

Category: EtherCAT

i 'm using 6.1.0-37-rt-amd64, which one should i update?
  • Roger S
  • Roger S
08 Oct 2025 08:43
Replied by Roger S on topic Probe Basic Screen missing axes

Probe Basic Screen missing axes

Category: QtPyVCP

Sorry, I wasn't online. Thanks for asking, I was able to fix the problem. As I said, RTFM
  • Hakan
  • Hakan
08 Oct 2025 08:32
Replied by Hakan on topic Config-Problem Ethercat

Config-Problem Ethercat

Category: Deutsch

Also check opmode-display and connect it to cia402
like here github.com/dbraun1981/hal-cia402/blob/ma...le/ethercat-conf.xml and here github.com/dbraun1981/hal-cia402/blob/main/example/cia402.hal

If it still doesn't work after that, you should do a factory reset of the erc60.
It means writing to a SDO with "ethercat download -p 5 0x2nnn m 1"
where you need to find the right index n and subindex m from the erc60 manual.
  • Red_D85
  • Red_D85
08 Oct 2025 04:33
Replied by Red_D85 on topic Config-Problem Ethercat

Config-Problem Ethercat

Category: Deutsch

here my screenshoots:

   

Thanks for your help
  • Gautham
  • Gautham
08 Oct 2025 01:45

Setting up kinematics for my Ballscrew articulated B-axis

Category: Basic Configuration

Hi sorry for the late reply, I was on holiday. Thank you, Aciera. I am new to this, so I will go through the link you sent and try to understand it. Is there any reason you would go the route of using the .comp format? Thanks for the input
  • thanks for the help
  • thanks for the help
08 Oct 2025 01:06
Replied by thanks for the help on topic Tool height setter M6 subroutine question

Tool height setter M6 subroutine question

Category: General LinuxCNC Questions

More progress, but I need an M1 option stop. Is there a reason that M1 option stop does not work within this m6 routine? I was able to populate my tooltable with this code.

When I have my option stop enabled on the axis gui my resume button is greyed out and I can't resume.
Here is my current toolchange code:
(MSG, Selected tool number = #<_selected_tool>)

#<safe_z> = -.005 ; safe Z height above tool setter
#<probe_z> = -4.0 ; how far down to probe
#<setter_z> = -3.0 ; Z height of the setter in machine coords

M5
M1

G49 ; cancel length offset

G53 G90 G01 F100. Z[#<safe_z>] ; move above setter z retract

G53 G90 G01 X1.10 F100. Z[#<safe_z>] ; move to tool height setter


G10 L20 P9 Z0
G59.3


; Begin probing
G38.2 Z[#<probe_z>] F30.0
(If probe failed, LinuxCNC will stop here)

G01 G91 Z.02 F10.

G90 G38.2 Z[#<probe_z>] F.15

#<measured_z> = #5063 ; captured machine Z from probe
(MSG, 5063 value = #5063)


; Compute tool length
(MSG, Compute tool length)
#<tool_length> = [#<measured_z> - #<setter_z>]

; Store to tool table
(--- Optional: print value to operator ---)
(MSG, Tool length = #<tool_length>)

G10 L1 P#<_selected_tool> Z#<tool_length>
G43 H#<_selected_tool>


G53 G01 G90 Z0. F150.


(MSG, Tool change complete)

O<toolchange> ENDSUB
M2
  • royka
  • royka
08 Oct 2025 00:31

Potential All-in-One Single Board Computers

Category: Computers and Hardware

Arduino/Qualcomm
store.arduino.cc/products/uno-q

Cheap all in one Quad-core Cortex A53 @2ghz
Microprocessor: Qualcomm® Dragonwing™ QRB2210
Microcontroller: Real-time, low-power STM32U585 MCU
RAM: 2GB LPDDR4
Storage: 16 GB eMMC built-in (no SD card required)
Connectivity: Dual-band Wi-Fi® 5 (2.4/5 GHz), Bluetooth® 5.1
High-speed headers: Power advanced peripherals – vision, audio, display
Classic UNO headers: Mount shields to add capabilities

Soon they'll also have a 4gb version. If someone is willing to make Remora work on it, you can put an Arduino cnc shield on it and you're ready.
  • MaHa
  • MaHa
07 Oct 2025 23:30
FlexGui - View setting error was created by MaHa

FlexGui - View setting error

Category: Flex GUI

Today, after update there is this error preventing start. When this entry is present in the .ini file
[DISPLAY]
VIEW = x

thats printed in terminal. If i comment that entry, the ui starts
  File "/usr/bin/flexgui", line 313, in <module>
    window = flexgui()
             ^^^^^^^^^
  File "/usr/bin/flexgui", line 229, in __init__
    startup.setup_jog(self)
  File "/usr/lib/python3/dist-packages/libflexgui/startup.py", line 1167, in setup_jog
    if parent.jog_increments:
       ^^^^^^^^^^^^^^^^^^^^^
AttributeError: 'flexgui' object has no attribute 'jog_increments'
Shutting down and cleaning up LinuxCNC...

A question about the plotter i was going to ask anyway: If a program is loaded, machine zero is in the center of the plot, and i have to search the preview. Is there a way to have the current coordinate system zero, centered in the plot, to see the preview directly.

Thanks for all the work done in this project. At the moment i am integrating the subroutines, and it's really nice how to control the index of tabs and stacked widget with a button connected to some python, then load the program with a push button. 
 
Displaying 2716 - 2730 out of 22461 results.
Time to create page: 0.275 seconds
Powered by Kunena Forum