Advanced Search

Search Results (Searched for: )

  • tommylight
  • tommylight's Avatar
06 May 2025 21:05
Replied by tommylight on topic G-code file loading at G53 instead of G54

G-code file loading at G53 instead of G54

Category: Qtvcp

Does the machine have home switches?
If yes, home the machine then touch off each axis/joint in G54.
There are active offsets in use, remove those first, see if that puts things where they should be.
  • tommylight
  • tommylight's Avatar
06 May 2025 21:02
Replied by tommylight on topic Need help with Linux 2.5 on a CNC lathe

Need help with Linux 2.5 on a CNC lathe

Category: General LinuxCNC Questions

Move the Z axis by hand towards the spindle a bit, then power on and try homing.
If that does not work, use a DVM to check the wiring from the Z axis switch to parallel port 0 (the built in parallel port in the motherboard, not the add on one)
  • pgf
  • pgf
06 May 2025 21:01
Replied by pgf on topic ISO: Mesa to router interface board

ISO: Mesa to router interface board

Category: Driver Boards

No, what I have is a 7i96. Somehow I found wiring directly to it very awkward with my DIY mill. It's possible that that was because of the poorly designed stepper driver board I was using -- it's connections were hard to manage.

I did find an Arduino shield that does what I want and has screw terminals for all connections. And I think I can probably use it almost as is, simply by not plugging it on to an Arduino. Still thinking about that.

When you say "standard" stepper drivers, can you show me an example, including how they're typically mounted? It's true my head is probably stuck in the CNC toy world. :-)

paul
  • Groovecooper1
  • Groovecooper1's Avatar
06 May 2025 20:58
Replied by Groovecooper1 on topic Need help with Linux 2.5 on a CNC lathe

Need help with Linux 2.5 on a CNC lathe

Category: General LinuxCNC Questions

This is getting to be a 911 issue as I’ve got to get this machine running. I can’t move forward without it. I need to Groove the baseball bat to get them to the MLB, we’re gonna be grooving dolls down to drumsticks, etc. Absolutely appreciate your assistance. How do you find a CNC tech in the Chicagoland area that knows Linux 2.5? So far nobody.
  • Spyderbreath
  • Spyderbreath's Avatar
06 May 2025 20:57
Replied by Spyderbreath on topic Remora - ethernet NVEM / EC300 / EC500 cnc board

Remora - ethernet NVEM / EC300 / EC500 cnc board

Category: Computers and Hardware

Thank you cake! That actually cleared things up more than a little. I managed to figured out what that .not was for on the end so maybe that's a plus.

Still have the Emergency Stop button on Axis freezing after a trigger and neither mouse or [F1] will reset it. I am thinking that I had read some posts back that someone else was experiencing the same thing and was thinking it was Axis related?

Not letting that stop me from moving forward and next comes the probe. If I were to take a SWAG at it, how close does this come?
net touchprobe          remora.input.05          =>   motion.probe-input 

Am I on the right track?
  • tommylight
  • tommylight's Avatar
06 May 2025 20:55
Replied by tommylight on topic Bridgeport VMC760 retrofit

Bridgeport VMC760 retrofit

Category: Milling Machines

50 hz is inferior to 60Hz b/c transformers, motors, etc. need to be bigger and more expensive.

Was this from chatGPT?
The only valid difference is the induction motors spin faster at 60Hz, everything else is pretty much irrelevant.
  • PCW
  • PCW's Avatar
06 May 2025 20:44

soft limit error after x homing, does not home y

Category: General LinuxCNC Questions

#*** AXIS_X *******************************
[AXIS_X]
MAX_VELOCITY = 0.5
MAX_ACCELERATION = 0.2
MIN_LIMIT = 4.8
MAX_LIMIT = -4.8

[JOINT_0]
TYPE = LINEAR
HOME = 0.0
MIN_LIMIT = 4.8
MAX_LIMIT = -4.8
MAX_VELOCITY = 0.5
MAX_ACCELERATION = 0.2
STEPGEN_MAXACCEL = 0.25
SCALE = 4000.0
FERROR = 0.05
MIN_FERROR = 0.01
HOME_OFFSET = -4.500000
HOME_SEARCH_VEL = 0.100000
HOME_LATCH_VEL = -0.100000
HOME_IGNORE_LIMITS = YES
HOME_SEQUENCE = 1
#******************************************
  • Micro2000
  • Micro2000
06 May 2025 20:32
Replied by Micro2000 on topic soft limit error after x homing, does not home y

soft limit error after x homing, does not home y

Category: General LinuxCNC Questions

Where would I need to go to change the scale
  • Hakan
  • Hakan
06 May 2025 19:59 - 06 May 2025 20:02
Replied by Hakan on topic General Questions about using ethercat

General Questions about using ethercat

Category: EtherCAT

That's what the cia402 component does. You have already set cia402.0.csp-mode to 1 in the hal file.
You can go into halshow and find the pin lcec.0.X.target-position and lcec.0.X.actual-position.
The difference between them is the following error and one always accepts some error but when it becomes too large lcnc stops.
You have the cia402.0.pos-scale to play with. The manual should say how many "steps" per revolution it uses, or how to found out. Calculate how many steps per axis unit (mm?) you have (thread pitch).

However I looked at your ethercat-conf.xml. You got to remove those pdos from syncmanager 0 and 1, actually remove sm0 and sm1 completely and only use those in sm2 and sm3.
Like this

<dcConf assignActivate="300" sync0Cycle="*1" sync0Shift="0"/>
<syncManager idx="2" dir="out">
<pdo idx="1600">
<pdoEntry idx="6040" subIdx="00" bitLen="16" halPin="controlword" halType="U32"/>
<pdoEntry idx="607a" subIdx="00" bitLen="32" halPin="target-position" halType="S32"/>
<pdoEntry idx="60ff" subIdx="00" bitLen="32" halPin="target-velocity" halType="S32"/>
<pdoEntry idx="6060" subIdx="00" bitLen="8" halPin="opmode" halType="S32"/>
</pdo>
</syncManager>
<syncManager idx="3" dir="in">
<pdo idx="1a00">
<pdoEntry idx="6041" subIdx="00" bitLen="16" halPin="statusword" halType="U32"/>
<pdoEntry idx="6064" subIdx="00" bitLen="32" halPin="actual-position" halType="S32"/>
<pdoEntry idx="606c" subIdx="00" bitLen="32" halPin="actual-velocity" halType="S32"/>
<pdoEntry idx="6061" subIdx="00" bitLen="8" halPin="opmode-display" halType="S32"/>
</pdo>
</syncManager>

Keep dccconf line and all other lines. If I made a type above I hope you can correct it.
  • cekaa
  • cekaa's Avatar
06 May 2025 19:43

Ls L7nh CİA402 servo Drive ethercat op and preop problems

Category: EtherCAT

Thank you very much for your interest.
Something like this happened to someone else and it was resolved as you said, but how can I close it?

Turn off eoe    ???????????????
  • cekaa
  • cekaa's Avatar
06 May 2025 19:39

Ls L7nh CİA402 servo Drive ethercat op and preop problems

Category: EtherCAT

Mr. Hakan, I followed your posts a lot and I have come a long way.

your first question  (  I tried to try the xml in this video but it gives an error )

main pc ==  (cadenceautomation.ca/wp-content/uploads/...l-pc-ds-gfa1985c.pdf)
slim model endustrial pc profesyonel

To be more descriptive

in the same pc with the same ethercat card 4 xinje ethercat servo motors in addition ek1100 el 2809 el2808 inputs and outputs work without any problems even with inductive sensors and homes etc.
ls l7nh one all connected then one only then two then three at once incredible


cnc@debian:~$ uname -a
Linux debian 6.1.0-23-rt-amd64 #1 SMP PREEMPT_RT Debian 6.1.99-1 (2024-07-15) x86_64 GNU/Linux
cnc@debian:~$ lshw -C
bash: lshw: command not found
cnc@debian:~$ lshw -C network
bash: lshw: command not found
cnc@debian:~$ sudo lshw
[sudo] password for cnc:
sudo: lshw: command not found
cnc@debian:~$ sudo lshw -class network
sudo: lshw: command not found
cnc@debian:~$ lspci
00:00.0 Host bridge: Intel Corporation 3rd Gen Core processor DRAM Controller (rev 09)
00:01.0 PCI bridge: Intel Corporation Xeon E3-1200 v2/3rd Gen Core processor PCI Express Root Port (rev 09)
00:02.0 VGA compatible controller: Intel Corporation 3rd Gen Core processor Graphics Controller (rev 09)
00:14.0 USB controller: Intel Corporation 7 Series/C210 Series Chipset Family USB xHCI Host Controller (rev 04)
00:16.0 Communication controller: Intel Corporation 7 Series/C216 Chipset Family MEI Controller #1 (rev 04)
00:19.0 Ethernet controller: Intel Corporation 82579LM Gigabit Network Connection (Lewisville) (rev 04)
00:1a.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #2 (rev 04)
00:1c.0 PCI bridge: Intel Corporation 7 Series/C216 Chipset Family PCI Express Root Port 1 (rev c4)
00:1c.1 PCI bridge: Intel Corporation 7 Series/C210 Series Chipset Family PCI Express Root Port 2 (rev c4)
00:1d.0 USB controller: Intel Corporation 7 Series/C216 Chipset Family USB Enhanced Host Controller #1 (rev 04)
00:1f.0 ISA bridge: Intel Corporation QM77 Express Chipset LPC Controller (rev 04)
00:1f.2 SATA controller: Intel Corporation 7 Series Chipset Family 6-port SATA Controller [AHCI mode] (rev 04)
00:1f.3 SMBus: Intel Corporation 7 Series/C216 Chipset Family SMBus Controller (rev 04)
01:00.0 PCI bridge: Pericom Semiconductor PI7C9X20508GP PCI Express Switch 5Port-8Lane (rev 01)
02:01.0 PCI bridge: Pericom Semiconductor PI7C9X20508GP PCI Express Switch 5Port-8Lane (rev 01)
02:02.0 PCI bridge: Pericom Semiconductor PI7C9X20508GP PCI Express Switch 5Port-8Lane (rev 01)
02:03.0 PCI bridge: Pericom Semiconductor PI7C9X20508GP PCI Express Switch 5Port-8Lane (rev 01)
02:04.0 PCI bridge: Pericom Semiconductor PI7C9X20508GP PCI Express Switch 5Port-8Lane (rev 01)
03:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
04:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
05:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
06:00.0 Ethernet controller: Intel Corporation I210 Gigabit Network Connection (rev 03)
08:00.0 Serial controller: Pericom Semiconductor Device 7954
cnc@debian:~$
  • rbobey1989
  • rbobey1989's Avatar
06 May 2025 19:12
Replied by rbobey1989 on topic EL2502 and EL2535 PWM Ethercat BECKHOFF Modules

EL2502 and EL2535 PWM Ethercat BECKHOFF Modules

Category: EtherCAT

Hi Andy, I have machines with Axor MicroSpeed ​​MCS-60-10/20 and HDT Colibri CB060 10/20 servo drives, among others, that have analog and PWM interfaces. According to the datasheets, they explain that they have some solder jumpers that can be connected to switch between interfaces, since they have PWM and analog. I've actually tried everything but I can't change the interface.
These servo drives operate up to 60V VDC, and the VDC motor machines for this voltage also have power supplies based on transformers, rectifiers, and fairly expensive capacitors that I could use and wouldn't have to change.
If you have any information on how to change these interfaces on the driver itself, that would be great. The datasheets for both brands specify that there is a solder jumper (example: K# nomenclature) to make this change, but when you look at the PCB, you find all the jumpers except that K#. Hahaha, the components come without identification, for a change, etc. It's also always fun to write a driver for a new module, in case it doesn't exist of course, thanks for the ideas and greetings
  • aDm1N
  • aDm1N's Avatar
06 May 2025 19:02

Remora - ethernet NVEM / EC300 / EC500 cnc board

Category: Computers and Hardware

Yes, the eStop works as it should. By MPG, I mean a normal external handwheel with a selector switch for the axes, not the NV MPG.
  • DarkPhoinix
  • DarkPhoinix
06 May 2025 18:58 - 06 May 2025 20:54
Replied by DarkPhoinix on topic Remora - ethernet NVEM / EC300 / EC500 cnc board

Remora - ethernet NVEM / EC300 / EC500 cnc board

Category: Computers and Hardware

Ok great, so

DarkPheonix - good for now and stepping?
Warning: Spoiler!

 
 

There is only one problem when you use the directional buttons to move the axes, the movement is strange, not responsive, slow to start, and sometimes that movement remains in memory, after an estop, the car exiting the estop starts turning again by itself or makes strange movements.!! but gcode work fine! i need study the problem! I was able to get it working using a function generator and an osciloscope.
Displaying 4966 - 4980 out of 24339 results.
Time to create page: 0.646 seconds
Powered by Kunena Forum