Advanced Search

Search Results (Searched for: 7i76e)

  • spumco
  • spumco
26 May 2026 19:52

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

I had a problem with a Mesa board disconnecting a couple years ago.

Turned out it was a bad/weak DC-DC power supply.  Voltage would drop intermittently, causing the Mesa to reset and I'd get the 'error finishing read' nightmare.  Looked like a network issue, but @PCW helped me diagnose it as a power problem.

Maybe double-check whatever is powering the Mesa and see if it's dodgy.
  • tommylight
  • tommylight's Avatar
26 May 2026 03:06
  • RMJ fabrication
  • RMJ fabrication
26 May 2026 02:19

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

I did not try another LAN cable.
The machine and PC are grounded properly.
I dont have a DVM at the moment but as soon as I get one I will measure those.
I believe this is a software issue because even with qtplasmac not running I get the disconnected error every 45 seconds
 
  • tommylight
  • tommylight's Avatar
26 May 2026 01:58

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

Did you try another LAN cable?
Is the machine and the PC grounded properly?
Use a DVM and measure between Mesa 24V GND and machine case, in AC mode, while the machine is ON, post result.
  • PCW
  • PCW's Avatar
26 May 2026 01:38
  • PCW
  • PCW's Avatar
25 May 2026 23:04

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

What does:

sudo chrt 99 ping -i .001 -q -c 60000 [card_ip_address]

report? (it will run 1 minute then print statistics)

[card_ip_address] is either 10.10.10.10 or 192.168.1.121 depending on 7I76e jumpering
  • RMJ fabrication
  • RMJ fabrication
25 May 2026 21:46

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

I don’t think it is Plasma/EMI related. My plasma cutter was not connected or turned on.
  • PCW
  • PCW's Avatar
25 May 2026 21:40 - 25 May 2026 23:01

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

Is this possibly Plasma/EMI related?

That is, do you still get communication loss when the Plasma source is off?
  • RMJ fabrication
  • RMJ fabrication
25 May 2026 21:14

Ethernet connection to Mesa 7i76e disconnecting on its own after one minute

Category: Plasmac

  I ran pnconf wizard and made a configuration for my CNC plasma table. I am able to home and jog my machine for about a minute until I get this error. 
It seems like the ethernet connection is disconnecting on its own somehow. Any ideas on how I could get the ethernet to stay connected so I can use my machine.
  • peterdownunder
  • peterdownunder
25 May 2026 09:44
Replied by peterdownunder on topic Trying to get analog joystick to control jogging

Trying to get analog joystick to control jogging

Category: Basic Configuration

Here is the full file

loadrt mux2 names=mux2_x,mux2_y,mux2_z
addf mux2_x servo-thread
addf mux2_y servo-thread
addf mux2_z servo-thread

loadrt wcomp names=plus_x_trigger,minus_x_trigger,plus_y_trigger,minus_y_trigger,plus_z_trigger,minus_z_trigger
addf plus_x_trigger servo-thread
addf minus_x_trigger servo-thread
addf plus_y_trigger servo-thread
addf minus_y_trigger servo-thread
addf plus_z_trigger servo-thread
addf minus_z_trigger servo-thread

# this is the deadzone for each axis to stop drift, also can make bigger to stop x/y axis moves easier without one triggering the other
setp plus_x_trigger.max 0.15
setp minus_x_trigger.min -0.15
setp plus_y_trigger.max 0.15
setp minus_y_trigger.min -0.15
setp plus_z_trigger.max 0.15
setp minus_z_trigger.min -0.15

loadrt lut5 names=jog_x_enable,jog_y_enable,jog_z_enable
addf jog_x_enable servo-thread
setp jog_x_enable.function 0x80
addf jog_y_enable servo-thread
setp jog_y_enable.function 0x80
addf jog_z_enable servo-thread
setp jog_z_enable.function 0x80

loadrt or2 names=or-x-jog,or-y-jog,or-z-jog
addf or-x-jog servo-thread
addf or-y-jog servo-thread
addf or-z-jog servo-thread

loadrt scale names=scale.x,scale.y,scale.z
addf scale.x servo-thread
addf scale.y servo-thread
addf scale.z servo-thread

# mine were 0-4.8v. Assuming a range of -1 to +1. 2/4.8=.416 z was way off balance and cannot see how to adjust so do it in sw
setp scale.x.offset -1.00
setp scale.x.gain .416
setp scale.y.offset -1.00
setp scale.y.gain .416
setp scale.z.offset -0.80
setp scale.z.gain .416

net x-scale <= hm2_7i76e.0.7i76.0.0.analogin0 => scale.x.in
net y-scale <= hm2_7i76e.0.7i76.0.0.analogin1 => scale.y.in
net z-scale <= hm2_7i76e.0.7i76.0.0.analogin2 => scale.z.in

# the mux is used to select 0 or the current value and is implementing the deadband. Cannot let the analog value through otherwise in interferes with jogging from ui
net gate-x-scale <= scale.x.out => plus_x_trigger.in minus_x_trigger.in mux2_x.in1
net gate-y-scale <= scale.y.out => plus_y_trigger.in minus_y_trigger.in mux2_y.in1
net gate-z-scale <= scale.z.out => plus_z_trigger.in minus_z_trigger.in mux2_z.in1

# may not be needed anymore
net x-is-homed <= halui.joint.0.is-homed => jog_x_enable.in-1
net y-is-homed <= halui.joint.1.is-homed => jog_y_enable.in-1
net z-is-homed <= halui.joint.2.is-homed => jog_z_enable.in-1

# only allow jogging if in the jog menu linuxcnc/gmoccapy seemed to complain in any other state
net machine-is-injog <= halui.mode.is-manual => jog_x_enable.in-0 jog_y_enable.in-0 jog_z_enable.in-0

# fixed for all axis multiplied from .15 to 1 from scale above. Change scale is difference needed for each axis
setp halui.axis.jog-speed 600
setp halui.joint.jog-speed 600

# wcomp is used here as deadband. Controls relevant jog plus or minus
net enable-x-jog-plus <= plus_x_trigger.over => halui.axis.x.plus or-x-jog.in0
net enable-x-jog-minus <= minus_x_trigger.under => halui.axis.x.minus or-x-jog.in1
net enable-y-jog-plus <= plus_y_trigger.over => halui.axis.y.plus or-y-jog.in0
net enable-y-jog-minus <= minus_y_trigger.under => halui.axis.y.minus or-y-jog.in1
net enable-z-jog-plus <= plus_z_trigger.over => halui.axis.z.plus or-z-jog.in0
net enable-z-jog-minus <= minus_z_trigger.under => halui.axis.z.minus or-z-jog.in1

# if all 3 conditions are met i.e. not in deadband, is homed and is manual then select mux and route analog value to axis
net jog-x-either <= or-x-jog.out => jog_x_enable.in-2
net enable-x-mux <= jog_x_enable.out => mux2_x.sel
net jog-x-speed <= mux2_x.out => halui.axis.x.analog

net jog-y-either <= or-y-jog.out => jog_y_enable.in-2
net enable-y-mux <= jog_y_enable.out => mux2_y.sel
net jog-y-speed <= mux2_y.out => halui.axis.y.analog

net jog-z-either <= or-z-jog.out => jog_z_enable.in-2
net enable-z-mux <= jog_z_enable.out => mux2_z.sel
net jog-z-speed <= mux2_z.out => halui.axis.z.analog
  • northernstepper
  • northernstepper's Avatar
12 May 2026 02:44
Stepper Driver Enable Pin was created by northernstepper

Stepper Driver Enable Pin

Category: Basic Configuration

Hello all, I have a question about the enable pin on my stepper drivers, I have 4x DM542T stepper drivers from Stepper Online connected to my Mesa 7i76EU. Is it recommended to connect the enable pins to the Mesa, and if so where should they be connected to. Or should I leave them unconnected.
  • peterdownunder
  • peterdownunder
05 May 2026 01:42 - 07 May 2026 05:41
Trying to get analog joystick to control jogging was created by peterdownunder

Trying to get analog joystick to control jogging

Category: Basic Configuration

Trying to get analog jogging working on gmoccapy, linuxcnc 2.9.3 with mesa card.
Have followed a few separate threads and have com up with the following .starting with just the x-axis. The analog out from the mesa is approx 0 to 5v

 loadrt mux2 names=mux2_x,mux2_y,mux2_z
addf mux2_x servo-thread
addf mux2_y servo-thread
addf mux2_z servo-thread

loadrt and2 names=and-jog
addf and-jog servo-thread

loadrt deadzone names=deadzone-x
addf deadzone-x servo-thread

loadrt scale names=scale.x
addf scale.x servo-thread

setp scale.x.offset -1.00
setp scale.x.gain .416
net x-scale <= hm2_7i76e.0.7i76.0.0.analogin0 => scale.x.in
net gate-x-scale <= scale.x.out => mux2_x.in1 
net x-is-homed <= halui.joint.0.is-homed

net machine-is-on <= halui.machine.is-on => and-jog.in0
net x-is-homed => and-jog.in1 
net jog-allowed <= and-jog.out => mux2_x.sel

setp deadzone-x.threshold 0.1
net mux-x mux2_x.out => deadzone-x.in

net jog-x-analog deadzone-x.out => halui.joint.0.analog halui.axis.x.analog
setp halui.mode.manual 1
setp halui.joint.0.select 1

Am getting halui.joint.0.analog going from +1 to -1 ok and seems to be gated correctly if I unhome X.
Was getting
error: command [EMC_JOG_STOP] cannot be executed until the machine is out of E-Stop and turned on
when I didn't have the gating correct so it appears to be getting through to some extent 

I also seem to have a problem with deadzone as configured above. It is letting through values like .006 when threshold is .1. If I change it to .2 it seems to behave better.

But get no movement. Jogging using gmoccapy still works
Displaying 61 - 75 out of 523 results.
Time to create page: 1.616 seconds
Powered by Kunena Forum