Advanced Search

Search Results (Searched for: )

  • shasse
  • shasse
15 Jul 2024 14:23 - 15 Jul 2024 14:24

"error finishing read" with Mesa 7i92T on fresh install

Category: Driver Boards

I'm experiencing the following on a fresh install of LinuxCNC from the iso (2.9.3):
hm2/hm2_7i92.0: error finishing read!
iter=15426

this happens intermittently, but typically within a few seconds of jogging the machine around after enabling it. No motors are hooked up nor anything attached to the 7i92T other than +5V power. If I enable the machine but don't move any axes it will eventually happen after some number of minutes. I'm using a generic mini PC and have tried two identical PCs with a fresh LinuxCNC install and have the same problem on each. I've also switched ethernet cords with the same result.

I've read through this thread forum.linuxcnc.org/27-driver-boards/4691...error-finishing-read and nothing really conclusive came out of it. I do also get a real time error on LinuxCNC startup or shortly after, but doing latency tests in pncconf shows fairly good numbers. I don't have the specifics in front of me but I can get them.

 I have not tried switching the +5V supply but that is my next step.

Any thoughts on how I can further diagnose this?

Thanks!

Scott
  • Ritterchen
  • Ritterchen
15 Jul 2024 14:21
Replied by Ritterchen on topic Duplicate settings in Pref File

Duplicate settings in Pref File

Category: Gmoccapy

Have the same issue converting my config files from 2.8 to a 2.9 install.
I was guessing it might be from differences in the tool change files? But I can't really check about it -.-
  • EragonPower
  • EragonPower's Avatar
15 Jul 2024 14:16
Replied by EragonPower on topic Machine ways warpage compensation with probekins

Machine ways warpage compensation with probekins

Category: Advanced Configuration

If doing the same thing now, I think that I would bas it around external_offsets, not kinematics.

Taking a look inside external_offsets, i too think that i could be a better solution, but i'm now wandering if i can somehow program an external_offsets matrix that corresponds to the way's warpage like the correction .STL of ProbeKins
  • my1987toyota
  • my1987toyota's Avatar
15 Jul 2024 13:55
Replied by my1987toyota on topic Has Anyone used DeskProto

Has Anyone used DeskProto

Category: CAD CAM

This pretty much says it all. I just wish it had the animation.
  • tommylight
  • tommylight's Avatar
15 Jul 2024 13:42

Problem Installing LINUXCNC 2.9.2 (Faild to copy file from installation media)

Category: Installing LinuxCNC

That is a bit to old, but should be usable, so if you can install Debian BookWorm, open a terminal:
sudo apt update
sudo apt upgrade
sudo apt install linuxcnc-uspace
That will install everything needed.
  • tommylight
  • tommylight's Avatar
15 Jul 2024 13:38
Replied by tommylight on topic Has Anyone used DeskProto

Has Anyone used DeskProto

Category: CAD CAM

Regarding search engines, use google and duckduckgo, google could not find an stl using the exact file name, duck showed it as the first result. For some stuff it is the other way round.
In general, all are useless.
  • my1987toyota
  • my1987toyota's Avatar
15 Jul 2024 13:36
Replied by my1987toyota on topic Has Anyone used DeskProto

Has Anyone used DeskProto

Category: CAD CAM

ouch, that's quite a price tag rodw.

on another front I just found this for FreeCAD.
github.com/Shkolik/Foamcut
  • PCW
  • PCW's Avatar
15 Jul 2024 13:35
Replied by PCW on topic Mesa Configuration Tool

Mesa Configuration Tool

Category: Configuration Tools

Note that spindles can be run from PWM or step/dir outputs
in addition to analog outputs
  • tommylight
  • tommylight's Avatar
15 Jul 2024 13:29
  • JT
  • JT's Avatar
15 Jul 2024 13:22
Replied by JT on topic Mesa Configuration Tool

Mesa Configuration Tool

Category: Configuration Tools

I am trying to do a closed loop spindle configuration, but the spindle menu is locked not active. What should I do for +-10v sample configuration . Thanks!
 

Boards that don't have a spindle interface the spindle sections is not enabled. A sample spindle would depend on what board it is.

JT
  • Grotius
  • Grotius's Avatar
15 Jul 2024 10:58
Replied by Grotius on topic Trajectory Planner using Ruckig Lib

Trajectory Planner using Ruckig Lib

Category: General LinuxCNC Questions

Hi,

I found a paper that has the info to create a 3d clothoid 4 segment spline. Ideal to create 3d fillets for gcode.

Now is anyone able to help convert this paper into c or c++ code?

clothoid_3d_paper
  • besriworld
  • besriworld
15 Jul 2024 10:55
Replied by besriworld on topic Mesa Configuration Tool

Mesa Configuration Tool

Category: Configuration Tools

I am trying to do a closed loop spindle configuration, but the spindle menu is locked not active. What should I do for +-10v sample configuration . Thanks!
  • krakos
  • krakos
15 Jul 2024 10:46

Problem Installing LINUXCNC 2.9.2 (Faild to copy file from installation media)

Category: Installing LinuxCNC

ubuntu-10.04-linuxcnc3-i386.iso is instaling witout any problems

PC is DELL Optiplex 960 RS-232 LPT C2D E8600
  • JT
  • JT's Avatar
15 Jul 2024 10:19
Replied by JT on topic Mesa Configuration Tool

Mesa Configuration Tool

Category: Configuration Tools

Tool tip added, I don't know anything about plasmac so I would need a list of the i/o

JT
  • Aciera
  • Aciera's Avatar
15 Jul 2024 09:48
Replied by Aciera on topic Update Work Offsets with G Code

Update Work Offsets with G Code

Category: G&M Codes

I think this would require a custom Gcode using a remap. I made an example remap for a command 'G10.1 Xn Yn Zn'

Try this:

Add this to the [RS274NGC] section of your ini file:
          REMAP = G10.1  modalgroup=1   argspec=xyz  ngc=g10_increment

Create a new file with the Gcode below and save as 'g10_increment.ngc' to a folder in your
[RS274NGC] SUBROUTINE_PATH   
o<g10_increment>sub
M66 L0 E0                    ;force sync, stop read ahead    

o100 if [EXISTS [#<X>]]      ;check for X-word, set to zero if missing                       
o100 else
    #<X> = 0                                                  
o100 endif
o101 if [EXISTS [#<Y>]]     ;check for Y-word, set to zero if missing  
o101 else
    #<Y> = 0                                                  
o101 endif
o102 if [EXISTS [#<Z>]]     ;check for Z-word, set to zero if missing  
o102 else
    #<Z> = 0                                                  
o102 endif

; calculate which parameter contains the current X,Y,Z offset values
#<x_current> = [5201 + #5220 * 20]
#<y_current> = [5202 + #5220 * 20]
#<z_current> = [5203 + #5220 * 20]

; add the passed X,Y,Z words to the current offset values
G10 L2 P0 X[#[#<x_current>] + #<X>] Y[#[#<y_current>] + #<Y>] Z[#[#<z_current>] + #<Z>]

M66 L0 E0                   ;force sync, stop read ahead
o<g10_increment>endsub
m2

Note:
This will always apply to the currently active offset system.

You could use another unallocated  GCODE :
linuxcnc.org/docs/2.9/html/remap/remap.h...:unallocated-g-codes

You could extend this to query the state of G90/91 and/or add a  'P' word to pick an offset system other then the currently active one.
Displaying 25081 - 25095 out of 25488 results.
Time to create page: 0.403 seconds
Powered by Kunena Forum